Add all 65816 instruction tests

Separate CPU class into instructions and addressing files
This commit is contained in:
scawful
2023-12-03 05:13:25 -05:00
parent b4820d1d32
commit a0019ab7fb
14 changed files with 4538 additions and 1277 deletions

View File

@@ -1,8 +1,6 @@
#ifndef YAZE_APP_EMU_SNES_H
#define YAZE_APP_EMU_SNES_H
#include <SDL_mixer.h>
#include <cstdint>
#include <memory>
#include <string>
@@ -48,7 +46,8 @@ class SNES : public DMA {
void VBlankRoutine();
// Boot the APU with the IPL ROM
void BootAPUWithIPL();
void BootApuWithIPL();
void StartApuDataTransfer();
// Controller input handling
void HandleInput();