- First commit, working on the cpu

This commit is contained in:
2025-01-31 14:04:44 +01:00
commit 033acb7124
6 changed files with 258 additions and 0 deletions

10
debug.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include <stdint.h>
namespace debug
{
void stop();
const bool isbreak(uint16_t address, uint8_t type = 1);
void setmemmodified(uint16_t address);
}