tasm14d.pp 126 B

123456789101112
  1. { %CPU=i8086 }
  2. { %NORUN }
  3. { Pop CS should produce a warning on i8086 }
  4. {$asmmode att}
  5. begin
  6. asm
  7. popw %cs
  8. end;
  9. end.