From 05b733b296452a888d2eb50bb306eb65435b0283 Mon Sep 17 00:00:00 2001 From: Paul Mathieu Date: Mon, 6 Oct 2025 22:40:28 +0200 Subject: [PATCH] bootsect: minor tweak --- src/bootsect.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bootsect.S b/src/bootsect.S index 233e7f2..6be86ca 100644 --- a/src/bootsect.S +++ b/src/bootsect.S @@ -5,7 +5,7 @@ .global _start _start: #ifndef NOBPB - jmp l0 + jmp 0f nop .ascii "IBM 3.1" @@ -18,7 +18,7 @@ bpb_localsectors: .word 720 bpb_mediadescr: .byte 0xfd bpb_sectsperfat: .word 2 -l0: +0: #endif // NOBPB cli xor %ax, %ax