mirror of
https://github.com/wfjm/w11.git
synced 2026-05-05 15:44:35 +00:00
- C++ and Tcl based backend server: many support classes for interfacing to w11 system designs, and the associated Tcl bindings. - add 'asm-11', a simple, Macro-11 syntax subset combatible, assembler. - use now doxygen 1.8.3.1, generate c++,tcl, and vhdl source docs
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
; $Id: test_0130_op_n.mac 501 2013-03-30 13:53:39Z mueller $
|
|
;
|
|
; 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
|