mirror of
https://github.com/wfjm/w11.git
synced 2026-04-25 20:01:57 +00:00
- tools/bin
- asm-11
- add minimal .list,.nlist (cnd,me,meb) directive support
- add -(n)list options
- tools/asm-11
- tests(-err): some tuneups
- mlib: some macros added, some tuneups
- tools/tcode/cpu_(details|mmu).mac: use rt?jmp, hta??? macros
32 lines
819 B
Plaintext
32 lines
819 B
Plaintext
; $Id: testerr_0310_Oerror_mdel.mac 1359 2023-01-27 20:58:50Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; test O error code (opcode error)
|
|
; case: mdelete (skipped in RT11 MACRO-11 because .mdelete not available)
|
|
;
|
|
.asect
|
|
. = 1000
|
|
;
|
|
.list cnd
|
|
;
|
|
.if df,...top ; asm-11 only
|
|
;
|
|
; .mdelete: single non-existing macro
|
|
.mdelete mbad ;;!! O
|
|
;
|
|
; .mdelete: delete list with one non-existing macro
|
|
.macro mok1
|
|
.endm
|
|
.macro mok2
|
|
.endm
|
|
.macro mok3
|
|
.endm
|
|
.mdelete mok1 ; is OK
|
|
.mdelete mok2,bad,mok3 ;;!! O
|
|
.mdelete mok2 ;;!! O
|
|
.mdelete mok3 ;;!! O
|
|
;
|
|
.endc
|
|
.end
|