mirror of
https://github.com/pnx/m16vm
synced 2026-06-27 10:53:41 +02:00
src/vm.c: in print_regs() registers are signed 16 bits.
This commit is contained in:
parent
dbd32efbc5
commit
47a6922d50
1 changed files with 1 additions and 1 deletions
2
src/vm.c
2
src/vm.c
|
|
@ -39,7 +39,7 @@ void print_memory() {
|
||||||
#endif /* ! M16_DEBUG_MEM */
|
#endif /* ! M16_DEBUG_MEM */
|
||||||
|
|
||||||
#ifdef M16_DEBUG_REG
|
#ifdef M16_DEBUG_REG
|
||||||
void print_regs(uint16_t *regs) {
|
void print_regs(int16_t *regs) {
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue