tebe6502 / Mad-Pascal

Mad Pascal Compiler for 6502 (Atari XE/XL, C64, C4Plus, Neo6502)
122 stars 19 forks source link

Compiler directives $info $warning $error not working as expected #114

Closed willyvmm closed 1 year ago

willyvmm commented 1 year ago

In every case compilation stop with the directive name info in the output stream.

program HelloWorld;

uses crt;

begin
  writeln('Hello World');
  {$info Some info}
  {$warning Some warning}
  {$error Some error}
  readkey;
end.

output of the mp:

Mad Pascal Compiler version 1.6.6 [2023/02/18] for 6502
Compiling /home/willy/atari/WUDSN/Workspace/HelloWorld/hw.pas
info