Pascal
Re: Pascal
hmm
pascal is really a simple programing laguage, i used it to learn programing, but i really don't think u can write a "GOOD" Os using it, personally i prefer C.
anyway, it is still possible to develop ur OS in pascal (under linux i donno about woindows),
just use GPC (GCC variant for pascal), to output flat binary object files, then u can link them to construct ur kernel
to download GPC go here http://www.gnu-pascal.de/binary/
more information here http://directory.fsf.org/GNU/GNUPascal.html
also use google u can get a lot o help with
pascal is really a simple programing laguage, i used it to learn programing, but i really don't think u can write a "GOOD" Os using it, personally i prefer C.
anyway, it is still possible to develop ur OS in pascal (under linux i donno about woindows),
just use GPC (GCC variant for pascal), to output flat binary object files, then u can link them to construct ur kernel
to download GPC go here http://www.gnu-pascal.de/binary/
more information here http://directory.fsf.org/GNU/GNUPascal.html
also use google u can get a lot o help with
-----------------------
There are 10 types of people in this world... those that understand binary, and those that don't.
There are 10 types of people in this world... those that understand binary, and those that don't.
Re: Pascal
The first Mac OS classic was made in Pascal.
Re: Pascal
yeah and the last one is a BSDkrillzip wrote:The first Mac OS classic was made in Pascal.
-----------------------
There are 10 types of people in this world... those that understand binary, and those that don't.
There are 10 types of people in this world... those that understand binary, and those that don't.
Re: Pascal
there is no problem with developing a os with pascal. i use freepascal for my os.
c is closer to the system-level, but as soon you made the first steps, you'll be glad to use "var param:array of integer" instead of creating a pointer-ghetto.
only one problem: first of all you have to download parts of the source-code of freepascal (rtl) and change it to your needs.
a good starting point is http://ybx.narod.ru/files/misc/cust_target.tar.bz2
c is closer to the system-level, but as soon you made the first steps, you'll be glad to use "var param:array of integer" instead of creating a pointer-ghetto.
only one problem: first of all you have to download parts of the source-code of freepascal (rtl) and change it to your needs.
a good starting point is http://ybx.narod.ru/files/misc/cust_target.tar.bz2
Re: Pascal
I'm writing my OS in FPC.