ishanthilina / USB-FAT32-Bootloader

A simple FAT32 bootloader written in assembly to boot from USB drives.
http://blog.ishans.info/2012/01/19/a-simple-fat32-bootloader-written-in-assembly-to-boot-from-usb-drives/
74 stars 23 forks source link

Labels without Colons #5

Open adminy opened 5 years ago

adminy commented 5 years ago
bootloader/boot.asm:145: warning: label alone on a line without a colon might be in error [-w+orphan-labels]
bootloader/boot.asm:147: warning: label alone on a line without a colon might be in error [-w+orphan-labels]
bootloader/boot.asm:168: warning: label alone on a line without a colon might be in error [-w+orphan-labels]

Is this right? Or there should be colons?

LoZack19 commented 1 year ago

That's not an error. Those are local labels and NASM doesn't need the colons.