1.0.4 • Published 5 years ago
lmos-source v1.0.4
LMOS Source
What is LMOS Source?
LMOS Source is the source code for my OS, LMOS.
Installation
Run the command
npm i lmos-source
to install LMOS Source.
Usage
First, cd
into the build folder.
cd node_modules/lmos-source
Next, edit the Makefile
NASM = your-nasm
NDISASM = your-ndisasm
QEMU = your-qemu-system-i386
DISK = /dev/your-disk
Then run
make
or
make os.bin
to compile the OS.
Or run
make flash
to flash the OS image to a disk (Using dd
).
Or run
make run
to run the OS in QEmu.
Or run
make debug
to disassemble the OS into NASM assembly.
Or run
make clean
to remove the OS image itself.