Skip to content

Latest commit

 

History

History
22 lines (10 loc) · 295 Bytes

File metadata and controls

22 lines (10 loc) · 295 Bytes

Question 44

rax = 0x1122334455667788. We have performed push rax. What will be the contents of byte at address [rsp+3] ?

Answer

Because of little endian:

  • rsp + 0 - 0x88
  • rsp + 1 - 0x77
  • rsp + 2 - 0x66
  • rsp + 2 - 0x55

prev +++ next