feat: added cpu.h, memory.h and zboy.h

This commit is contained in:
Zoëy Noort 2025-05-11 19:54:10 +02:00
parent 16b355f92b
commit 32a2eab015
3 changed files with 54 additions and 0 deletions

11
hdrs/zboy.h Normal file
View file

@ -0,0 +1,11 @@
#include "cpu.h"
#include "memory.h"
typedef struct zboy
{
t_cpu cpu;
t_memory memory;
};
void zboy_init();