-7

...What does MOV AL, 0FH mean?

  • 6
    Moving `0x0F` (15) into `AL`. I'm pretty sure the documentation mentions this. – xxbbcc Jun 04 '18 at 23:25
  • 1
    https://stackoverflow.com/tags/x86/info ... lot of resources.. maybe start with http://www.cs.virginia.edu/~evans/cs216/guides/x86.html – Ped7g Jun 05 '18 at 00:46

1 Answers1

1

Moves hex value 0F into the AL register.

StackUser
  • 142
  • 8