9 lines
182 B
C++
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();
|
|
}
|