/Operating-System

Based on Nick Blundell tutorial Online

Primary LanguageAssembly

# CONVERT ASM TO BIN 
nasm /../file.asm -f bin -o /../file.bin

# GHEX 

# RUN FILE USING qemu
qemu-system-x86_64 /../file.bin



# RUNNING ON VIRTUAL BOX.... 
	
	truncate file.bin -s 1200k
		or truncate file.bin -s 2880

	mkisofs -o file.iso -b file.bin ../FOLDER


gcc -ffreestanding -c kernal_1.c -o kernal_1.o -m32


objdump -M intel -d kernal_1.o


ld -o kernal_1.bin -Ttext 0x7e00 kernal_1.o -m elf_i386 --oformat binary