stdlib: use DEL instead of BS

This commit is contained in:
slederer 2024-09-19 13:49:49 +02:00
parent 3c6c119254
commit 7edd74ad70
3 changed files with 5 additions and 9183 deletions

View file

@ -2337,7 +2337,7 @@ begin
if f.raw then if f.raw then
writechannel(f, aChar) writechannel(f, aChar)
else else
if (aChar <> #8) and (aChar <> #9) and (aChar <> #4) then if (aChar <> #8) and (aChar <> #127) and (aChar <> #4) then
begin begin
writechannel(f,aChar); writechannel(f,aChar);
if aChar = #13 then if aChar = #13 then

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,14 @@
del *.s del *.s
del ..\lib\*.lib
del ..\lib\stdlib.s
fpc -Mobjfpc -gl pcomp.pas fpc -Mobjfpc -gl pcomp.pas
fpc -gl sasm.pas fpc -gl sasm.pas
fpc -gl lsymgen.pas fpc -gl lsymgen.pas
sasm ..\lib\coreloader.s sasm ..\lib\coreloader.s
lsymgen ..\lib\coreloader.sym lsymgen ..\lib\coreloader.sym
py pcomp.py -n stdlib.pas py pcomp.py -n ..\lib\stdlib.pas
libgen ..\lib\stdlib.s libgen ..\lib\stdlib.s
libgen ..\lib\runtime.s libgen ..\lib\runtime.s
libgen ..\lib\float32.s libgen ..\lib\float32.s