Add build script
This commit adds a build script for the loader partition. Currently, it is very simplistic, but it works for assembling the entry.asm, which in turn includes all other files.
This commit is contained in:
parent
5180348c39
commit
3a2518ca8f
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
INVOCATION_PATH=$(pwd)
|
||||||
|
cd $(dirname $0)
|
||||||
|
SCRIPT_PATH=$(pwd)
|
||||||
|
|
||||||
|
# Assemble the loader
|
||||||
|
nasm -fbin -o $SCRIPT_PATH/loader.bin -I $SCRIPT_PATH/src-asm \
|
||||||
|
$SCRIPT_PATH/src-asm/entry.asm
|
Loading…
Reference in New Issue