- [NEW] load binary to memory from inside or as arguments to exe

- Trying berserk
This commit is contained in:
2024-04-25 06:41:35 +02:00
parent b05ce14a95
commit 7eb5df248f
7 changed files with 65 additions and 6 deletions

View File

@@ -684,7 +684,7 @@ namespace z80
if (exit_from_halt) {
exit_from_halt = false;
} else {
printf("HALT\n");
//printf("HALT\n");
rPC--;
}
}
@@ -2697,4 +2697,5 @@ namespace z80
uint16_t getPC() { return rPC; }
void setPC(const uint16_t addr) { rPC = addr; }
}