aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorMarvin Borner2019-09-15 00:16:39 +0200
committerMarvin Borner2019-09-15 00:16:39 +0200
commitd107ae24ca5b9e495fe48067556c76a495a846ec (patch)
tree7eb15ac277a60194c94e706144c57ade4b027db5 /build.sh
parent47fc6fe8bef017d120e6a88f75628003b72b9fe7 (diff)
Switched from GAS to NASM language
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index ab562f1..82d98ce 100755
--- a/build.sh
+++ b/build.sh
@@ -9,7 +9,7 @@ rm -rf ./build/ ./iso/
mkdir ./build/
# Make source files
-i686-elf-as ./src/boot.s -o ./build/boot.o
+nasm -f elf ./src/boot.asm -o ./build/boot.o
files=""
find ./src -name \*.c >./build/tmp