1
0
mirror of https://github.com/wfjm/w11.git synced 2026-05-05 07:34:43 +00:00

major asm-11 update

- 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
This commit is contained in:
wfjm
2023-01-26 16:13:36 +01:00
parent 4b0a1feb2a
commit 3b033ebfa8
75 changed files with 2320 additions and 299 deletions

View File

@@ -1,11 +1,11 @@
; $Id: test_0030_alloc.mac 1184 2019-07-10 20:39:44Z mueller $
; $Id: test_0030_alloc.mac 1353 2023-01-23 18:13:53Z mueller $
; SPDX-License-Identifier: GPL-3.0-or-later
; Copyright 2013- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
; Copyright 2013-2023 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
;
; test .word/.byte with expressions ect
;
.asect
.blkw 400
. = 1000
w0: .word 101 ;;!! 001000: 000101
w1: .word 102 ;;!! 001002: 000102