- Comence a escriure la versió amb microcodi del 6502

This commit is contained in:
2025-02-05 13:59:56 +01:00
parent 3971c37a53
commit fbe874b3e7
3 changed files with 211 additions and 2 deletions

9
6502m.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <stdint.h>
namespace m6502
{
void reset();
void interrupt(uint8_t type);
void tick();
}