Add assembly explanation

This commit is contained in:
lucky-vers 2023-11-03 16:03:53 +05:30
parent 451c056089
commit f0171c52d5

View file

@ -169,6 +169,8 @@ Searching for the main function `main:`, we get
113f: 90 nop
```
Here, the instruction `mov $0x86342,%eax` is of interest to us here. In simple terms, it means the hexadecimal number `0x86342` is being set (`mov`) as the value for the register `eax`.
The value finally in `eax` is therefore 0x86342 in hexadecimal, or `549698` in decimal.
# ARMssembly 0