View previous topic :: View next topic |
Author |
Message |
KevinD Cheater
Reputation: 0
Joined: 15 Apr 2020 Posts: 39
|
Posted: Mon Apr 27, 2020 5:23 am Post subject: How to retrieve a variable that is not in the list ? |
|
|
Hello, I would like to retrieve the variable al.
But in the list below it does not appear how to do ?
Description: |
|
Filesize: |
382.48 KB |
Viewed: |
1316 Time(s) |

|
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3325
|
Posted: Mon Apr 27, 2020 5:46 am Post subject: |
|
|
Love it when people try to do stuff without even learning the basics...
Anyway, looks like a static address, so add that address to the table as a BYTE value.
|
|
Back to top |
|
 |
KevinD Cheater
Reputation: 0
Joined: 15 Apr 2020 Posts: 39
|
Posted: Mon Apr 27, 2020 6:51 am Post subject: |
|
|
Even by putting it in byte value I have the same result.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25796 Location: The netherlands
|
Posted: Mon Apr 27, 2020 6:59 am Post subject: |
|
|
AL is the first 8 bits of the AX register
AX is the first 16 bits of the EAX register
EAX is the first 32 bits of the RAX register
So, AL is the first 8 bits of the RAX registers as well
hexadecimal values are build up using nibbles, each nibble is 4 bit
hexadecimal values have the last significant value on the right side, so the first 2 hexadecimal digits of the RAX register from the right side is the AL register
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
KevinD Cheater
Reputation: 0
Joined: 15 Apr 2020 Posts: 39
|
Posted: Mon Apr 27, 2020 8:22 am Post subject: |
|
|
Ok so al = 08
|
|
Back to top |
|
 |
|