Skip to content

Commit c183314

Browse files
committed
Fix build instructions in readme
1 parent 88af668 commit c183314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

real_mode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If the code does not fit into 512 bytes, the linker will throw the following err
2121
The output of `cargo xbuild` is an ELF binary, which can't be loaded directly by the BIOS. To boot our project, we must therefore convert it into a flat binary first. This works with the following `objcopy` command:
2222

2323
```
24-
objcopy -I elf32-i386 -O binary target/x86_64-bootloader-real-mode/release/real_mode image.bin
24+
objcopy -I elf32-i386 -O binary target/x86-32bit/release/bootloader image.bin
2525
```
2626

2727
This creates a file named `image.bin` in the root folder of the project, which is a bootable disk image.

0 commit comments

Comments
 (0)