cpu/decoder - Implement STOP n8

This commit is contained in:
madmaurice 2023-08-29 23:47:18 +02:00
parent 2ab37c6468
commit c90788d330

View file

@ -459,6 +459,10 @@ void Cpu::executeInstruction()
case 0x76: // HALT
halted = true;
break;
case 0x10: // STOP n8
(void)readPC8();
stopped = true;
break;
case 0xE8: // ADD SP, e8
{