mirror of
https://github.com/wfjm/w11.git
synced 2026-04-27 12:39:59 +00:00
29 lines
731 B
Plaintext
29 lines
731 B
Plaintext
; $Id: test_0040_asci.mac 1184 2019-07-10 20:39:44Z mueller $
|
|
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright 2014- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
;
|
|
; test .ascii/.asciz
|
|
;
|
|
CR = 015
|
|
LF = 012
|
|
;
|
|
.asect
|
|
.blkw 400
|
|
|
|
.ascii /foobar/ ;;!! 001000:
|
|
.asciz /fooba/ ;;!! 001006:
|
|
|
|
a0: .ascii /test/ ;;!! 001014:
|
|
a1: .asciz /test1/ ;;!! 001020:
|
|
|
|
a2: .ascii <CR><LF>/test/ ;;!! 001026:
|
|
a3: .asciz /test/<CR><LF> ;;!! 001034:
|
|
|
|
a4: .asciz <CR><LF>/retro/<CR><LF>|computing|
|
|
a5: .ascii /Hello World!/
|
|
a6: .asciz *Hello World!*<CR><LF>
|
|
a7: .asciz <040><041><042>
|
|
|
|
.even
|
|
.end
|