tw1122.pp 151 B

12345678910111213
  1. {$mode objfpc}
  2. uses sysutils;
  3. {$asmmode intel}
  4. begin
  5. try
  6. asm
  7. db 0fh,0fh,0fh,0fh
  8. end;
  9. except
  10. halt(0);
  11. end;
  12. halt(1);
  13. end.