Hello,
I am following this tutorial, I downloaded the 6th tutorial, and copied it some here, some there etc.
Can anyone help me on how to actually build it and create the KRNL32.EXE file
PS: in the entry file, how does it know from which file to load the main from? in extern main
Is it all right if I only made the entry file
Building the kernel
Moderator:Moderators
Help Me!!
SOS!!
SOS!!
What is the problem that you are having? The series real kernel and how to build it is described in <a href="http://www.brokenthorn.com/Resources/OS ... ml">Kernel Setup: MSVC++ 2005</a> Tutorial 6 does not describe this.Can anyone help me on how to actually build it and create the KRNL32.EXE file
The compiler doesnt. That is for the linker. The linker will look through the object files to find where main() is located to link it. As long as main() is defined within a translation unit (A compiled source file) built in the project, it should work fine.PS: in the entry file, how does it know from which file to load the main from? in extern main
Of courseIs it all right if I only made the entry file
