Added missing colon after messages

This commit is contained in:
Neo8 2021-04-02 17:20:36 +02:00 committed by GitHub
parent 7aff64740e
commit fd9c0778ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,8 @@ BEGIN_PM: ; after the switch we will get here
call print_string_pm ; Note that this will be written at the top left corner call print_string_pm ; Note that this will be written at the top left corner
jmp $ jmp $
MSG_REAL_MODE db "Started in 16-bit real mode", 0 MSG_REAL_MODE: db "Started in 16-bit real mode", 0
MSG_PROT_MODE db "Loaded 32-bit protected mode", 0 MSG_PROT_MODE: db "Loaded 32-bit protected mode", 0
; bootsector ; bootsector
times 510-($-$$) db 0 times 510-($-$$) db 0