;program to test JMP instruction
;when the first instruction is executed the CI will be set to 4
;when the CI increments on the next fetch-execute loop, the STP function
;will be executed and the program will halt

00 NUM 0            ;load 0 with nothing
01 JMP 3            ;place numer stored at line 3 in CI
02 NUM 654321
03 NUM 4            ;numer to be stored in CI is 4
04 NUM 123456
05 STP              ;when CI increments on next fetch execute
                    ;the STP function is executed