1
0
mirror of https://github.com/wfjm/w11.git synced 2026-04-28 21:08:35 +00:00
Files
wfjm.w11/tools/asm-11/tests/test_0040_asci.mac
Walter F.J. Mueller 4732555297 - interim release w11a_V0.581 (untagged)
- new reference system
  - switched from ISE 13.3 to 14.7.
  - map/par behaviour changed, unfortunately unfavorably for w11a. 
    On Nexys3 no timing closure anymore for 80 MHz, only 72 MHz can 
    be achieved now.
- new man pages (in doc/man/man1/)
- support for Spartan-6 CMTs in PLL and DCM mode
2014-05-29 21:30:01 +00:00

27 lines
622 B
Plaintext

; $Id: test_0040_asci.mac 548 2014-01-12 09:48:47Z mueller $
;
; 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