<<< Data segment declarations | Index | Reserving space >>> |
Long strings can be split into multiple lines like this:
label: .ascii "blah blah blah" .ascii "blah blah" .asciiz "blah blah blah blah blah blah.\n"
An Initializing an array of data can be specified as
fibs: .word 0, 1, 1, 2, 3, 5, 8, 13, 21, 35, 55, 89, 144
<<< Data segment declarations | Index | Reserving space >>> |