1
0
mirror of https://github.com/wfjm/w11.git synced 2026-04-20 10:36:11 +00:00
Files
wfjm.w11/tools/asm-11/tests-err/testerr_0110_Nerror.mac
wfjm 3b033ebfa8 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
2023-01-26 16:13:36 +01:00

35 lines
853 B
Plaintext

; $Id: testerr_0110_Nerror.mac 1353 2023-01-23 18:13:53Z mueller $
; SPDX-License-Identifier: GPL-3.0-or-later
; Copyright 2013-2023 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
;
; test N error code (Number error)
;
.asect
. = 1000
; octal, implicit
.word 7
.word 8 ;;!! N
.word 9 ;;!! N
; octal, explicit ^o
.word ^o7
.word ^o8 ;;!! N
.word ^o9 ;;!! N
; binary via ^b
.word ^b101
.word ^b2 ;;!! N
.word ^b3 ;;!! N
.word ^b4 ;;!! N
.word ^b5 ;;!! N
.word ^b6 ;;!! N
.word ^b7 ;;!! N
.word ^b8 ;;!! N
.word ^b9 ;;!! N
.end