使用 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 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+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
;
}
/*
撰写
预览
正在加载...
取消
保存