- 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
6502.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include <stdint.h>
namespace cpu6502
{
void reset();
void interrupt(uint8_t type);
uint32_t step();
}