Minor changes

This commit is contained in:
Loïc Guégan 2023-12-25 19:34:14 +01:00
parent 048b41e20a
commit 309e9921f8
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ int main(int argc, char *argv[])
ScreenInit(800,400);
VCPUInit();
//MemDump();
// MemDump();
int i=0;
while (!WindowShouldClose()){

View file

@ -227,7 +227,7 @@ void VCPUExecute(){
break;
case 0x29:
State.I=ADDR_FONT+State.V[State.X];
State.I=ADDR_FONT+5*(State.V[State.X]&0x0F);
break;
case 0x33: