Hi, I've written an OS out of nasm, called Casnix (
http://casnix.sourceforge.net/).
This is my first build of the OS at a finished test version, I just need to see if there's any errors, all the code is written.
I'm using cygwin, and I can compile the boot loader, but when I try to compile the kernel...
Kernel source tree:
kernel.asm
features/
cli.asm
basic.asm
math.asm
... (lots of files)
Before I completed the test version, I could compile the kernel, but now:
$ nasm -w+orphan-labels -f bin -o kernel/kernel.bin kernel/kernel.asm
kernel/kernel.asm:360: fatal: unable to open include file 'features/cli.asm'
The file cli.asm does exist in the path that it is included to, and I can't find any code error that would cause this. What's happening?
-Matthew Caswell