started opcodes

This commit is contained in:
Lauchmelder 2021-10-21 19:24:53 +02:00
parent 4b22287ad0
commit 458500bd59
8 changed files with 240 additions and 5 deletions

View file

@ -3,6 +3,12 @@
int main()
{
struct Bus* bus = createBus();
for (;;)
{
tick(bus);
}
destroyBus(bus);
return 0;