Initial Project Setup

This commit is contained in:
2025-01-30 14:30:19 -07:00
parent a47ca7dcbf
commit 7e0b305d17
50 changed files with 3227 additions and 0 deletions

12
include/emu.h Normal file
View File

@ -0,0 +1,12 @@
#pragma once
#include <common.h>
typedef struct {
bool paused;
bool running;
u64 ticks;
} emu_context;
int emu_run(int, char**);
emu_context *emu_get_context();