You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
175 B

# check the MULT insn.
# mach: example
.include "testutils.inc"
start
JMP 3
HALT
MULT r0, 3, 2
EQ r1, r0, 6
JF r1, 2
MULT r0, r0, 8
EQ r1, r0, 48
JF r1, 2
pass