This website works better with JavaScript.
Home
Help
Sign In
ben
/
crater
mirror of
https://github.com/earwig/crater
Watch
1
Star
1
Fork
0
Code
Releases
0
Activity
Browse Source
Fix some broken timing.
master
Ben Kurtovic
8 years ago
parent
10a37ff3bd
commit
42b09e5b93
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
src/z80_ops.inc.c
+ 2
- 2
src/z80_ops.inc.c
View File
@@ -1349,7 +1349,7 @@ static uint8_t z80_inst_inc_xy(Z80 *z80, uint8_t opcode)
(void) opcode;
(*z80->regs.ixy)++;
z80->regs.pc++;
return
6
;
return
10
;
}
/*
@@ -1372,7 +1372,7 @@ static uint8_t z80_inst_dec_xy(Z80 *z80, uint8_t opcode)
(void) opcode;
(*z80->regs.ixy)--;
z80->regs.pc++;
return
6
;
return
10
;
}
/*
Write
Preview
Loading…
Cancel
Save