flat assembler
Message board for the users of flat assembler.
![]() |
Author |
|
Roman 24 Mar 2021, 13:47
I know about nop(hex op code 90).
But what this mean ? nop WORD PTR [rax+rax*1+0x0] hex op code: 66 0f 1f 44 00 00 |
|||
![]() |
|
Roman 24 Mar 2021, 14:24
Its like rept for nop ?
I am right ? |
|||
![]() |
|
revolution 24 Mar 2021, 14:33
It is different. You can't arbitrarily enter the instruction at any point. You still have to begin at the proper place.
Code: my_padding_1: times 6 nop ;... my_padding_2: nop WORD PTR [rax+rax*1+0x0] ;... jmp my_padding_1 + 0 ; okay jmp my_padding_2 + 0 ; okay jmp my_padding_1 + 2 ; okay jmp my_padding_2 + 2 ; FAIL |
|||
![]() |
|
< Last Thread | Next Thread > |
Forum Rules:
|
Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.
Website powered by rwasa.