cleanup apu and spc

This commit is contained in:
scawful
2024-04-25 00:23:14 -04:00
parent 268a7f2a0e
commit b4f2fdc57e
4 changed files with 0 additions and 13 deletions

View File

@@ -85,12 +85,6 @@ uint8_t Spc700::dp() {
return ReadOpcode() | (PSW.P << 8);
}
uint8_t Spc700::get_dp_addr() {
PC++;
uint8_t offset = read(PC);
return (PSW.P << 8) + offset;
}
// Direct page indexed by X
uint8_t Spc700::dp_plus_x() {
PC++;