[patinho] improve log message for the unimplmemented SAI instruction (display the ACC value)

This commit is contained in:
Felipe Corrêa da Silva Sanches 2015-12-06 01:31:59 -02:00
parent 6c5bf9b91a
commit c0a2483edb

View File

@ -497,7 +497,7 @@ void patinho_feio_cpu_device::execute_instruction()
printf("Unimplemented ENTR /%X0 instruction\n", channel); printf("Unimplemented ENTR /%X0 instruction\n", channel);
break; break;
case 0x80: case 0x80:
printf("Unimplemented SAI /%X0 instruction\n", channel); printf("Unimplemented SAI /%X0 instruction (ACC = 0x%02X '%c')\n", channel, ACC, ACC);
break; break;
} }
return; return;