Initial commit

This commit is contained in:
Lauchmelder 2021-10-20 22:39:29 +02:00
commit 5aa8a64871
11 changed files with 243 additions and 0 deletions

9
NES Emulator/main.c Normal file
View file

@ -0,0 +1,9 @@
#include "bus.h"
int main()
{
struct Bus* bus = createBus();
destroyBus(bus);
return 0;
}