tasm25es1.pp 127 B

12345678910111213
  1. { %CPU=x86_64 }
  2. { %OPT=-Sew }
  3. { %FAIL }
  4. program tasm25es1;
  5. {$asmmode intel}
  6. begin
  7. asm
  8. mov rax, es:[rdi+5]
  9. end;
  10. end.