The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# *** MODIFIED TEST FROM ORIGINAL MONKEYNES
# *** Now properly checks negative branching
clear
power on
regs

# Branch instructions cannot be tested using the op
# command, and are loaded into memory directly and
# setup to execute with the step command.

# Branch not taken --------------------------------
regset v 0
regset pc 9040

# Load op: BVS $40
memset 9040 70
memset 9041 40

step

# Should be: PC=9042, cycles=2
test pc = 9042

# Positive Branch taken to same page --------------
regset v 1
regset pc 9040

# Load op: BVS $40
memset 9040 70
memset 9041 40

step

# Should be: PC=9082, cycles=3
test pc = 9082

# Negative Branch taken to same page --------------
regset v 1
regset pc 9040

# Load op: BVS $A0
memset 9040 70
memset 9041 A0

step

# Should be: PC=8FE2, cycles=3
test pc = 8FE2

# Positive Branch taken to different page ---------
regset v 1
regset pc 90b0

# Load op: BVS $7F
memset 90b0 70
memset 90b1 7f

step

# Should be: PC=9131, cycles=4
test pc = 9131

# Negative Branch taken to different page ---------
regset v 1
regset pc 9040

# Load op: BVS $F7
memset 9040 70
memset 9041 F7

step

# Should be: PC=9039, cycles=4
test pc = 9039

save verify_70.txt