(BROKEN) lol
This commit is contained in:
@@ -1,13 +1,8 @@
|
||||
#include "libsys.h"
|
||||
|
||||
void initialize_libsys() {
|
||||
__cpu = new CPU();
|
||||
__mem = new Memory();
|
||||
__gpu = new GPU();
|
||||
__sys = new System();
|
||||
|
||||
CPU_Instance = __cpu;
|
||||
Memory_Instance = __mem;
|
||||
GPU_Instance = __gpu;
|
||||
System_Instance = __sys;
|
||||
CPU_Instance = new CPU();
|
||||
Memory_Instance = new Memory();
|
||||
GPU_Instance = new GPU();
|
||||
System_Instance = new System();
|
||||
}
|
||||
|
||||
@@ -5,8 +5,3 @@
|
||||
#include "temp.h"
|
||||
|
||||
void initialize_libsys();
|
||||
|
||||
static CPU* __cpu;
|
||||
static Memory* __mem;
|
||||
static GPU* __gpu;
|
||||
static System* __sys;
|
||||
|
||||
Reference in New Issue
Block a user