Change message labels naming convention
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 31s
Builds / ExectOS (i686, release) (push) Successful in 29s
Builds / ExectOS (i686, debug) (push) Successful in 1m39s
Builds / ExectOS (amd64, debug) (push) Successful in 1m40s

This commit is contained in:
2025-10-17 08:58:41 +02:00
parent c206b443ed
commit ca8a539c0e

View File

@@ -41,7 +41,7 @@ RealStart:
movw %ax, %ss movw %ax, %ss
/* Print welcome message */ /* Print welcome message */
leaw msgXtosBoot, %si leaw .MsgXtosBoot, %si
call Print call Print
/* Get BIOS boot drive and partition table offset */ /* Get BIOS boot drive and partition table offset */
@@ -90,19 +90,19 @@ PartitionFound:
InvalidSignature: InvalidSignature:
/* Invalid signature error */ /* Invalid signature error */
leaw msgInvalidSignature, %si leaw .MsgInvalidSignature, %si
call Print call Print
jmp HaltSystem jmp HaltSystem
PartitionNotFound: PartitionNotFound:
/* Active partition not found error */ /* Active partition not found error */
leaw msgPartitionNotFound, %si leaw .MsgPartitionNotFound, %si
call Print call Print
jmp HaltSystem jmp HaltSystem
VbrReadFail: VbrReadFail:
/* VBR read failed error */ /* VBR read failed error */
leaw msgVbrReadFail, %si leaw .MsgVbrReadFail, %si
call Print call Print
jmp HaltSystem jmp HaltSystem
@@ -136,16 +136,16 @@ DonePrint:
/* Storage for the LBA start */ /* Storage for the LBA start */
.long 0 .long 0
msgInvalidSignature: .MsgInvalidSignature:
.asciz "Invalid partition signature!" .asciz "Invalid partition signature!"
msgPartitionNotFound: .MsgPartitionNotFound:
.asciz "Bootable partition not found!" .asciz "Bootable partition not found!"
msgVbrReadFail: .MsgVbrReadFail:
.asciz "VBR read failed!" .asciz "VBR read failed!"
msgXtosBoot: .MsgXtosBoot:
.asciz "Starting XTOS boot loader...\r\n" .asciz "Starting XTOS boot loader...\r\n"
/* Fill the rest of the MBR with zeros and add MBR signature at the end */ /* Fill the rest of the MBR with zeros and add MBR signature at the end */