Files
2018-12-20 23:13:23 +00:00

9 lines
182 B
C++

#include "libsys.h"
void initialize_libsys() {
CPU_Instance = new CPU();
Memory_Instance = new Memory();
GPU_Instance = new GPU();
System_Instance = new System();
}