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
27 lines
498 B
Plaintext
27 lines
498 B
Plaintext
; $Id: testerr_0010_undef_label.mac 501 2013-03-30 13:53:39Z mueller $
|
|
;
|
|
; test undefined label response
|
|
;
|
|
.asect
|
|
|
|
; for normal labels
|
|
|
|
zero: .word zero
|
|
.word one ;;!! U
|
|
.word two ;;!! U
|
|
|
|
; for local labels (in scope)
|
|
|
|
blk1: .word 0
|
|
1$: .word blk1
|
|
.word 1$
|
|
.word 2$ ;;!! U
|
|
|
|
; for local labels (out-of-scope)
|
|
|
|
blk2: .word 0
|
|
2$: .word 1$ ;;!! U
|
|
.word 2$
|
|
|
|
.end
|