mirror of
https://github.com/wfjm/w11.git
synced 2026-05-05 07:34:43 +00:00
- 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
19 lines
575 B
Plaintext
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
|