1
0
mirror of https://github.com/wfjm/w11.git synced 2026-05-05 07:34:43 +00:00
Files
wfjm.w11/tools/asm-11/tests-err/testerr_0700_Serror.mac
wfjm 65ed443ffc asm-11 asm-11 BUGFIXes; cpu_mmu.mac fix
- tools/bin
  - asm-11
- tools/tcode/cpu_(details|mmu).mac: use rt?jmp, hta??? macros
    - BUGFIX expressions: allow uop after bop operator
    - BUGFIX proper sign handling for '/','*' and .if ge,gt,le,lt
    - add 'S' error when code size too large
  - tcode/cpu_mmu.mac: remove <../100> expressions for 6 bit right shift
2023-01-29 14:50:14 +01:00

19 lines
575 B
Plaintext

; $Id: testerr_0700_Serror.mac 1360 2023-01-29 11:51:48Z mueller $
; SPDX-License-Identifier: GPL-3.0-or-later
; Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
;
; test S error code (size error, asm-11 specific)
;
.asect
. = 1000
;
.if df,...top ; asm-11 only
.nlist meb ; disable listing, only error lines printed
.rept 010000
.word 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ;;!!S
.endr
.word 0 ;;!! 000000: ; should not be reached
.endc
;
.end