*** empty log message ***

This commit is contained in:
florian 1998-04-06 21:53:35 +00:00
parent 81349e4e6d
commit d6e74e2082
2 changed files with 14 additions and 0 deletions

13
bugs/bug0125.pp Normal file
View File

@ -0,0 +1,13 @@
uses
crt;
var
i:integer;
begin
clrscr;
textcolor(blue);
writeln('ole');
textcolor(red);
readln(i);
writeln('rasmussen');
writeln(i);
end.

View File

@ -170,3 +170,4 @@ bug0121.pp cardinal -> byte conversion not work (and crashes)
bug0122.pp exit() gives a warning that the result is not set
bug0123.pp problem with intel assembler (shrd)
bug0124.pp problem with -Rintel switch and indexing (whatever the order)
bug0125.pp wrong colors with DOS CRT unit