tb0071.pp 357 B

12345678910111213141516171819
  1. { Old file: tbs0078.pp }
  2. { Shows problems with longint constant in intel asm OK 0.99.1 (CEC) }
  3. { shows error with asm_size_mismatch }
  4. Begin
  5. {$ifdef CPUI386}
  6. {$asmmode intel }
  7. asm
  8. mov eax, 2147483647
  9. mov eax, 2000000000
  10. end;
  11. {$endif CPUI386}
  12. {$ifdef CPU68K}
  13. asm
  14. move.l #2147483647,d0
  15. move.l #2000000000,d1
  16. end;
  17. {$endif CPU68K}
  18. end.