- First Commit

This commit is contained in:
2024-03-12 13:59:22 +01:00
commit 284c1f2521
5 changed files with 280 additions and 0 deletions

9
z80.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <stdint.h>
namespace z80
{
void reset(uint8_t* mem);
void step();
}