mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-04 15:44:10 +00:00
18 lines
327 B
Plaintext
18 lines
327 B
Plaintext
;;;;;
|
|
;
|
|
; Tests the addressing modes for JMP.
|
|
; JMP Rx is not allowed, all other modes are.
|
|
;
|
|
|
|
start: jmp end
|
|
jmp r1 ; must fail
|
|
jmp (r1)
|
|
jmp (r1)+
|
|
jmp @(r1)+
|
|
jmp -(r1)
|
|
jmp @-(r1)
|
|
jmp 1234(r1)
|
|
jmp @1234(r1)
|
|
|
|
end:
|