Working on apu

This commit is contained in:
2025-02-17 21:22:13 -07:00
parent 4823aeae93
commit 020feb2a6f
7 changed files with 100 additions and 31 deletions

View File

@ -7,6 +7,7 @@ typedef struct {
bool running;
bool die;
u64 ticks;
const char *app_path;
} emu_context;
int emu_run(int, char**);

View File

@ -80,6 +80,8 @@ typedef struct {
bool rendering_window;
u32 target_frame_time;
bool paused;
bool frame;
} ppu_context;
void ppu_init();