summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/om65c02.lst
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502/om65c02.lst')
-rw-r--r--src/devices/cpu/m6502/om65c02.lst4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m6502/om65c02.lst b/src/devices/cpu/m6502/om65c02.lst
index 61fadeebf93..25d8fc7ef07 100644
--- a/src/devices/cpu/m6502/om65c02.lst
+++ b/src/devices/cpu/m6502/om65c02.lst
@@ -161,7 +161,7 @@ bbr_zpb
TMP = read_pc();
TMP2 = read(TMP);
read(TMP);
- read_pc_noinc();
+ TMP = read_pc();
if(!(TMP2 & (1 << ((inst_state >> 4) & 7)))) {
PC += int8_t(TMP);
}
@@ -171,7 +171,7 @@ bbs_zpb
TMP = read_pc();
TMP2 = read(TMP);
read(TMP);
- read_pc_noinc();
+ TMP = read_pc();
if(TMP2 & (1 << ((inst_state >> 4) & 7))) {
PC += int8_t(TMP);
}