14 lines
259 B
C++
14 lines
259 B
C++
#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;
|
|
}
|