What is the meaning of :

Array1 :    .word 0:20
link|improve this question

75% accept rate
I am not familiar with mips assembly. Does 0:20 indicate a bit field? – jacknad Aug 24 '10 at 12:38
I myself could not get this statement....and therefore I posted this question! – kamalbhai Aug 24 '10 at 16:57
feedback

1 Answer

up vote 2 down vote accepted

Array1 : is a label (the space is optional).

For MIPS, a :<n> suffix to an expression in directives such as .word, .byte etc. is a repeat count.

So Array1 : .word 0:20 creates a block of 20 words (i.e. 80 bytes) of 0, with the label Array1 pointing to the start of it.

(Footnote: The GNU assembler, gas, tends to try to follow the "traditional" assembler syntax for each platform; a brief glance suggests that this syntax is not that common on other platforms - only MIPS and Alpha obviously support it.)

link|improve this answer
Thanks Mathew.... – kamalbhai Aug 24 '10 at 21:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.