This commit is contained in:
nub31
2025-08-30 20:39:59 +02:00
parent f7342ff6e4
commit bd3137067d
12 changed files with 144 additions and 254 deletions

View File

@@ -2,16 +2,29 @@
## Dependencies
### Building the kernel
- `make`
- `grub`
- `mtools`
- `x86_64-elf-gcc`
- `x86_64-elf-ld`
### Creating a disk image
- `grub`
## Building
### Kernel
```sh
make
make kernel
```
### Disk image
```sh
make iso
```
## Running
@@ -19,5 +32,5 @@ make
After building, run the following:
```sh
qemu-system-x86_64 -cdrom .build/nub-os.iso
qemu-system-i386 -kernel .build/kernel
```