本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
說明
登入
ben
/
crater
镜像来自
https://github.com/earwig/crater
關注
1
收藏
1
複製
0
程式碼
版本發佈
0
活動
瀏覽代碼
Fix some broken timing.
master
Ben Kurtovic
8 年之前
父節點
10a37ff3bd
當前提交
42b09e5b93
共有
1 個檔案被更改
,包括
2 行新增
和
2 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
src/z80_ops.inc.c
+ 2
- 2
src/z80_ops.inc.c
查看文件
@@ -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…
取消
儲存