tasm25es3.pp 127 B

12345678910111213
  1. { %CPU=x86_64 }
  2. { %OPT=-Sew }
  3. { %FAIL }
  4. program tasm25es3;
  5. {$asmmode att}
  6. begin
  7. asm
  8. mov %es:5(%rdi), %rax
  9. end;
  10. end.