beginning ppu

This commit is contained in:
2025-02-01 00:48:49 -07:00
parent 5206c3871e
commit f4cbfd09c8
25 changed files with 683 additions and 43 deletions

View File

@ -18,7 +18,7 @@ instruction instructions[0x100] = {
[0x0C] = {IN_INC, AM_R, RT_C},
[0x0D] = {IN_DEC, AM_R, RT_C},
[0x0E] = {IN_LD, AM_R_D8, RT_C},
[0x0F] = {IN_RRA},
[0x0F] = {IN_RRCA},
//0x1X
[0x10] = {IN_STOP},
[0x11] = {IN_LD, AM_R_D16, RT_DE},
@ -258,7 +258,7 @@ instruction instructions[0x100] = {
[0xF6] = {IN_OR, AM_R_D8, RT_A},
[0xF7] = {IN_RST, AM_IMP, RT_NONE, RT_NONE, CT_NONE, 0x30},
[0xF8] = {IN_LD, AM_HL_SPR, RT_HL, RT_SP},
[0xF9] = {IN_LD, AM_R_R, RT_HL, RT_SP},
[0xF9] = {IN_LD, AM_R_R, RT_SP, RT_HL},
[0xFA] = {IN_LD, AM_R_A16, RT_A},
[0xFB] = {IN_EI},
[0xFE] = {IN_CP, AM_R_D8, RT_A},