tw22490.pp 159 B

1234567891011
  1. { %cpu=i386 }
  2. {$mode objfpc}{$ASMMODE INTEL}
  3. function Test():byte;assembler;nostackframe;
  4. asm
  5. mov result,1
  6. end;
  7. begin
  8. if Test()<>1 then
  9. halt(1);
  10. end.