forked from KolibriOS/kolibrios
8b2f78bb3c
(oldest MGB - Menuet Graphics Benchmark 0.3) 1) select path with OpenDialog, 2) use of Box_Lib and Proc_Lib, 3) support start with path for *.mgb file 4) optimization code and size of use memory git-svn-id: svn://kolibrios.org@1621 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
224 B
Bash
Executable File
14 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
# This script does for linux the same as build.bat for DOS,
|
|
# it compiles the KoOS kernel, hopefully ;-)
|
|
|
|
echo "lang fix en"
|
|
echo "lang fix en" > lang.inc
|
|
fasm -m 16384 mgb.asm mgb
|
|
rm -f lang.inc
|
|
exit 0
|
|
|
|
|
|
|
|
|