lea-nop.asm 314 B

1234567891011121314151617
  1. global _start
  2. %include "header.inc"
  3. ; nops
  4. lea edx, [edx]
  5. db 8Dh, 40h, 00h
  6. db 8Dh, 0B6h, 00h, 00h, 00h, 00h
  7. db 8Dh, 0BCh, 27h, 00h, 00h, 00h, 00h
  8. ; non-nops, but similar encodings
  9. lea eax, [bx+si]
  10. lea cx, [bx+di]
  11. lea edx, [edx+42]
  12. lea ebp, [ebp*2]
  13. %include "footer.inc"