Jump to content
  • 0

Help me!!


Vanhair

Question

3 answers to this question

Recommended Posts

Posted

Go to a decimal to hexadecimal conversion website, for example, the hexadecimal representation of -1 is 0xFFFFFFFF, so you can use it like this ~A8 MOV W0, #0xFFFFFFFF.

Posted

[ @Vanhair ]

MOV W0, #0x0
RET

Means that the value is integer (DWORD), although it can be float but not likely in this case. You can use: Float Converter to convert decimal into hex form
---
[ @AMIYA ]

Quote

~A8 mov w0, wzr

WZR & XZR is Zero-point register, meaning the register will always have the values of 0, or it is still equals to:

Quote

~A8 mov w0, #0x0

---

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.