mirror of
https://github.com/wfjm/w11.git
synced 2026-04-30 05:36:08 +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
28 lines
881 B
Plaintext
28 lines
881 B
Plaintext
; $Id: test_0050_iword.mac 502 2013-04-02 19:29:30Z mueller $
|
|
;
|
|
; test implicit .word
|
|
; when a statement does not start with pst symbol (opcode or directive)
|
|
; assume an implicit .word
|
|
;
|
|
.asect
|
|
.blkw 400
|
|
|
|
100 ;;!! 000100
|
|
200 ;;!! 000200
|
|
110,120 ;;!! 000110 000120
|
|
100, ;;!! 000100 000000
|
|
,200 ;;!! 000000 000200
|
|
, ;;!! 000000 000000
|
|
|
|
w1: 1000 ;;!! 001000
|
|
w2: 2000,2001,2002 ;;!! 002000 002001 002002
|
|
|
|
const = 10 ;;!! 000010
|
|
const ;;!! 000010
|
|
<const> ;;!! 000010
|
|
2*const ;;!! 000020
|
|
<3*const> ;;!! 000030
|
|
|
|
.even
|
|
.end
|