forked from KolibriOS/kolibrios
6cb25c9e01
git-svn-id: svn://kolibrios.org@1678 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
278 B
Bash
Executable File
10 lines
278 B
Bash
Executable File
#!/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
|
|
|
|
|