mirror of
https://github.com/wfjm/w11.git
synced 2026-03-07 03:46:43 +00:00
- tools - bin/asm-11: BUGFIX: fix directly nested .if behavior - bin/ip_delete_tap: added - asm-11/tests: add zbug_0007.mac, test_0460_if_nest.mac - oskit/test/os/211bsd/211bsd_eth.tcl: use 'ip' command
26 lines
486 B
Plaintext
26 lines
486 B
Plaintext
; $Id: test_0600_mcall.mac 1373 2023-02-16 11:21:26Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; test .mcall basics
|
|
;
|
|
.asect
|
|
. = 1000
|
|
;
|
|
.if df,...top ; asm-11 only
|
|
|
|
; list macro expansion
|
|
.list me,cnd
|
|
;
|
|
.mcall push,pop
|
|
;
|
|
push #100
|
|
push #200
|
|
pop r0
|
|
;
|
|
.mdelete push
|
|
pop r1
|
|
;
|
|
.endc
|
|
.end
|