tasm25gs1.pp 128 B

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