From b152260d89503d2d8c4c5d67115ccf92cc4b1364 Mon Sep 17 00:00:00 2001 From: iddu01 <157660303+iddu0@users.noreply.github.com> Date: Mon, 10 Nov 2025 18:09:35 -0500 Subject: [PATCH] fix -f bin typo -fbin technically does work, but making it -f bin helps for readability and understanding --- 02-bootsector-print/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-bootsector-print/README.md b/02-bootsector-print/README.md index 0331c42..a4b4795 100644 --- a/02-bootsector-print/README.md +++ b/02-bootsector-print/README.md @@ -46,7 +46,7 @@ You can examine the binary data with `xxd file.bin` Anyway, you know the drill: -`nasm -fbin boot_sect_hello.asm -o boot_sect_hello.bin` +`nasm -f bin boot_sect_hello.asm -o boot_sect_hello.bin` `qemu boot_sect_hello.bin`