mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-24 23:56:49 +03:00
10 lines
278 B
Bash
10 lines
278 B
Bash
|
#!/bin/bash
|
||
|
# This is a simplified script to compile Kolibri-A kernel
|
||
|
# please place *fasm program to the topmost KOS directory
|
||
|
# and create an empty /bin folder there before run this script
|
||
|
|
||
|
../../../../../fasm -m 65536 kernel.asm ../../../../../bin/kernel.mnt
|
||
|
exit 0
|
||
|
|
||
|
|