Go to the first, previous, next, last section, table of contents.
.asciz "string"
...
.asciz
is just like .ascii
, but each string is followed by
a zero byte. The "z" in `.asciz' stands for "zero".
Go to the first, previous, next, last section, table of contents.