mirror of
https://github.com/wfjm/w11.git
synced 2026-05-03 06:39:50 +00:00
- tools/bin
- asm-11
- add .if, .if(f|t|tf), .endc, .rept, .endr, .mexit directives
- add .error, .print, .mcall, .mdelete directives
- add .narg, .nchr, .ntype directives
- rewrite macro definition and call argument parsing & handling
- add -L option (to set .mcall pathlist)
- add auto-generated ...top label
- add flag (MRmrd) column in output format
- asm-11_expect
- add simple substitution mechanism (for macro testing)
- handle new flag column in output format
- tools/asm-11
- tests(-err): many tests added
- tests(-err)/Makefile: distclean target added
- mlib: macro library, accessed by .mcall
21 lines
414 B
Plaintext
21 lines
414 B
Plaintext
; $Id: testerr_0511_end_macro_open.mac 1354 2023-01-24 16:29:10Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; test .end
|
|
; case: missing .endm causes to E error
|
|
;
|
|
.asect
|
|
. = 1000
|
|
;
|
|
.list me
|
|
;
|
|
.macro mopen
|
|
.word 1001 ;;!! 001001
|
|
; missing .endm
|
|
;
|
|
mopen
|
|
;
|
|
.end
|
|
;;!! E
|