MIPS understand binary representation

后端 未结 1 740
-上瘾入骨i
-上瘾入骨i 2021-01-19 03:17

On the process of learning Assembly i got one question

If i do the following:

la  $a1, 0x3f 

The number 63 is \"putted\" on a1.

1条回答
  •  盖世英雄少女心
    2021-01-19 03:27

    Binary literal constants are not typically supported. What assembler are you using? If it supports C style preprocessing, there are several options available.

    Here is one example.

    0 讨论(0)
提交回复
热议问题