increase/fix warnings

This commit is contained in:
andromeda
2026-03-12 14:12:33 +01:00
parent c003e63d62
commit 9e68a6bb6e
2 changed files with 10 additions and 3 deletions

View File

@@ -10,7 +10,11 @@ stdenv.mkDerivation {
version = "0.1.0";
src = ./.;
buildPhase = ''
${nasm}/bin/nasm asm/main.asm -o out.bin
${nasm}/bin/nasm \
asm/main.asm \
-o out.bin \
-w+all \
-w-reloc-abs
'';
installPhase = ''
dd if=/dev/zero of=disk bs=512 count=2880