Initial Project Setup
This commit is contained in:
12
include/emu.h
Normal file
12
include/emu.h
Normal 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();
|
Reference in New Issue
Block a user