From 2af08722265a406e29eb94717246cd1a9f99e169 Mon Sep 17 00:00:00 2001 From: Leonard Melnik Date: Fri, 17 Dec 2021 16:24:54 -0500 Subject: [PATCH] nasm -fbin -> nasm -f bin Not really a big deal but some individuals might get errors --- 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`