tb0192.pp 253 B

12345678910111213
  1. { %CPU=i386 }
  2. { Old file: tbs0226.pp }
  3. { Asm, offset of var is not allowed as constant OK 0.99.11 (PFV) }
  4. {$ifdef fpc}{$asmmode intel}{$endif}
  5. var
  6. test : longint;
  7. begin
  8. exit; { don't run this code below !! }
  9. asm
  10. dd test
  11. end;
  12. end.