|
#how to write numbers Number notationyou can write numbers in decimal notation set r0 12 hexadecimal notation (append 0x to the begining of the number) set r0 0xff0000 octal notation (append 0o to the begining of the number) set r0 0o777 binary notation (append 0b to the begining of the number) set r0 0b00100010
|