Vanhair Posted August 14, 2023 Posted August 14, 2023 I have question : Is there a way to edit this value even smaller?
huanggua Posted August 14, 2023 Posted August 14, 2023 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.
THETWINSOFFICIAL Posted August 16, 2023 Posted August 16, 2023 On 8/14/2023 at 5:20 PM, Vanhair said: I have question : Is there a way to edit this value even smaller? ~A8 mov w0, wzr
kiynox Posted August 16, 2023 Posted August 16, 2023 [ @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 ---
Question
Vanhair
I have question : Is there a way to edit this value even smaller?
3 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.