[fpc-pascal] "Hello world" syscalls
Marco van de Voort
fpc at pascalprogramming.org
Tue Jan 7 14:47:09 CET 2020
Op 2020-01-07 om 02:28 schreef Vojtěch Čihák via fpc-pascal:
>
> I found this article: https://drewdevault.com/2020/01/04/Slow.html
>
> but FPC is missing, so Iwrote simple:
>
> program Project1;
>
> begin
>
> writeln('Hello world!');
>
> end.
>
> $ fpc -O3 -XX Project1.pas
>
Add -Xm and look at the generated map file to see what symbols are
included in the binary.
Most is code that is used in RTL initialization
More information about the fpc-pascal
mailing list