HOW TO COMPILE nucleOS
======================

You need to compile "our" FreePascal compiler (we adjusted it to make it compile 
nucleOS coreect) to compile nucleOS. We use version 1.0.10 of FPC.

    a.) You need a working copy of the official FreePascal compiler. Make sure
        to include the path to the win32-binaries in your PATH variable (this
	step is described at the end of the installation of FPC)

    b.) Extract [nucleOS path]\fpc\compiler.zip

    b.) Go to the new created folder and type "mppc386". Now you have got 
        the changed version of FPC

    c.) Copy the ppc386.exe over the official ppc386.exe (in 
        [fpc path]\bin\win32)

    d.) Delete all files in [fpc path]\units\win32\rtl

    e.) Copy all files from [nucleOS path]\fpc\win32 to 
        [fpc path]\units\win32\rtl

    f.) Open the file [nucleOS path]\Makefile and adjust the 3rd line

    g.) Now go to [nucleOS path]\ and type "make all"

    h.) You have got a bochs-disc-image in [nucleOS path]\src
   


MrSaint