mirror of
https://github.com/wfjm/w11.git
synced 2026-02-28 09:37:47 +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
14 lines
366 B
Plaintext
14 lines
366 B
Plaintext
; $Id: rtijmp.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>
|
|
;
|
|
; macro for JMP via RTI with new PS,PC
|
|
; usage: rtijmp #cp.cmu+cp.t,#5100$
|
|
;
|
|
.macro rtijmp,newps,newpc
|
|
.mcall push2
|
|
push2 newps,newpc
|
|
rti
|
|
halt
|
|
.endm
|