1
0
mirror of https://github.com/wfjm/w11.git synced 2026-04-25 20:01:57 +00:00
Files
wfjm.w11/tools/asm-11/tests/zbug_0001.mac
Walter F.J. Mueller 99de9893cb - interim release w11a_V0.562 (untagged)
- 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
2013-04-13 17:13:15 +00:00

24 lines
623 B
Plaintext

; $Id: zbug_0001.mac 501 2013-03-30 13:53:39Z mueller $
;
; ISSUE: .ascii without label failed with Q
;
; REASON: .ascii requests next token with a different mask. The label handling
; in state 'start' looks ahead with default mask and does a pushback.
; --> That clashed !!
;
; FIX: look to directive names in 'start' and branch to 'oper' immediately in
; this case.
;
; SIDES: prevents also creation of labels with the name of a directive.
;
.asect
.blkw 400
.word 0
a1: .ascii /test/
.ascii /test/ ; failed with Q
a2: .ascii /test/
.end