mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
21 lines
142 B
NASM
21 lines
142 B
NASM
|
|
.ALTERNATE
|
|
|
|
alloc MACRO val1,val2
|
|
DB val1
|
|
DB val2
|
|
ENDM
|
|
|
|
alloc "that's" 'show biz'
|
|
alloc 0,1
|
|
alloc 0 1
|
|
alloc 0 1
|
|
alloc ,1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|