NESEmulator/NES Emulator/main.c

16 lines
129 B
C
Raw Normal View History

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