Copy JKernel (#126)

* start JSystem

* JKRAram and JUTGamePad

* started heap and thread

* more JKernel

* mostly finished JKernel

* delete unused asm

* JKRFileFinder

* delete unused asm and match findNextFile

* format

* fix mtx_vec
This commit is contained in:
lepelog
2021-05-03 02:03:24 +02:00
committed by GitHub
parent 913bb08f51
commit 0b8db42226
360 changed files with 6646 additions and 12699 deletions
+1
View File
@@ -2,6 +2,7 @@
#define C_LIB_H_
#include "SSystem/SComponent/c_xyz.h"
#include "dolphin/mtx/mtx.h"
#include "dolphin/types.h"
void cLib_memCpy(void* dst, const void* src, unsigned long size);
+1 -1
View File
@@ -2,8 +2,8 @@
#define C_M3D_G_LIN_H
#include "SSystem/SComponent/c_xyz.h"
#include "dolphin/mtx/vec.h"
#include "dolphin/types.h"
#include "mtx_vec.h"
// Line
class cM3dGLin {
+1 -1
View File
@@ -1,8 +1,8 @@
#ifndef C_XYZ_H
#define C_XYZ_H
#include "dolphin/mtx/vec.h"
#include "global.h"
#include "mtx_vec.h"
struct cXyz : Vec {
static const cXyz Zero;