mirror of
https://github.com/wfjm/w11.git
synced 2026-05-05 15:44:35 +00:00
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
; $Id: test_0130_op_n.mac 1184 2019-07-10 20:39:44Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; test opcodes with no or numeric operands
|
|
;
|
|
.asect
|
|
.blkw 400
|
|
|
|
; no operands
|
|
p1:
|
|
halt ;;!! 000000
|
|
wait ;;!! 000001
|
|
rti ;;!! 000002
|
|
bpt ;;!! 000003
|
|
iot ;;!! 000004
|
|
reset ;;!! 000005
|
|
rtt ;;!! 000006
|
|
mfpt ;;!! 000007
|
|
nop ;;!! 000240
|
|
clc ;;!! 000241
|
|
clv ;;!! 000242
|
|
clz ;;!! 000244
|
|
cln ;;!! 000250
|
|
sec ;;!! 000261
|
|
sev ;;!! 000262
|
|
sez ;;!! 000264
|
|
sen ;;!! 000270
|
|
scc ;;!! 000277
|
|
|
|
; numeric operands
|
|
p2:
|
|
spl 5 ;;!! 000235
|
|
mark 13 ;;!! 006413
|
|
emt 170 ;;!! 104170
|
|
trap 77 ;;!! 104477
|
|
|
|
.end
|