mirror of
https://github.com/wfjm/w11.git
synced 2026-02-28 09:37:47 +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
10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
; $Id: pop.mac 1359 2023-01-27 20:58:50Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2022- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; pop a word of the stack
|
|
;
|
|
.macro pop,dst
|
|
mov (sp)+,dst
|
|
.endm
|