diff options
author | Marvin Borner | 2019-11-24 23:34:32 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-24 23:34:32 +0100 |
commit | bb57b124d1bb385d41747f50be7dd4f3625539c1 (patch) | |
tree | fe461afad63df40571784565e8d435cba8c8e59c /src/bootloader/cd.asm | |
parent | f9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (diff) |
Major coding style reformatting -> Kernighan & Ritchie
This project now (hopefully) uses the same style recommended by Kernighan and Ritchie and used in the Linux Kernel
Diffstat (limited to 'src/bootloader/cd.asm')
-rw-r--r-- | src/bootloader/cd.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootloader/cd.asm b/src/bootloader/cd.asm index 1e83a3a..ec9fc9d 100644 --- a/src/bootloader/cd.asm +++ b/src/bootloader/cd.asm @@ -159,7 +159,7 @@ checkA20: ret welcome db "Melvix", 0x0A, 0x0D, 0x00 -nolba db "BIOS lacks support for LBA addressing.", 0x00 +nolba db "BIOS lacks support for lba addressing.", 0x00 noboot db "Boot directory could not be found.", 0x00 noa20 db "A20 could not be enabled.", 0 loading db "Loading kernel...", 0x0A, 0x0D, 0x00 @@ -169,7 +169,7 @@ nomem db "BIOS does not support memory detection!", 0 memno20 db "BIOS returns memory detection with 24 bytes. This has never been seen!", 0 start: - ; Check if LBA is supported by the BIOS. + ; Check if lba is supported by the BIOS. mov ah, 0x41 mov bx, 0x55AA int 0x13 |