NESEmulator/NES Emulator/main.c

16 lines
129 B
C
Raw Normal View History

2021-10-20 20:39:29 +00:00
#include "bus.h"
int main()
{
struct Bus* bus = createBus();
2021-10-21 17:24:53 +00:00
for (;;)
{
tick(bus);
}
2021-10-20 20:39:29 +00:00
destroyBus(bus);
return 0;
}