mirror of
https://github.com/wfjm/w11.git
synced 2026-03-03 10:23:40 +00:00
- tools - asm-11/mlib: add pushm,popm,callp and helpers - tcl/rw11/shell_egd.tcl: add ODX format option for .e command - tcode/cpu_(details|mmu).mac: use pushm,popm
16 lines
407 B
Plaintext
16 lines
407 B
Plaintext
; $Id: popm.mac 1374 2023-02-18 10:30:46Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; pop multiple words from the stack (pops last first)
|
|
;
|
|
.macro popm,v0,v1,v2,v3,v4,v5
|
|
.mcall popnb
|
|
popnb v5
|
|
popnb v4
|
|
popnb v3
|
|
popnb v2
|
|
popnb v1
|
|
popnb v0
|
|
.endm
|