NESEmulator/NES Emulator/main.c

10 lines
98 B
C
Raw Normal View History

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