aboutsummaryrefslogtreecommitdiff
path: root/src/bootloader/hdd2.asm
diff options
context:
space:
mode:
authorMarvin Borner2019-11-24 23:34:32 +0100
committerMarvin Borner2019-11-24 23:34:32 +0100
commitbb57b124d1bb385d41747f50be7dd4f3625539c1 (patch)
treefe461afad63df40571784565e8d435cba8c8e59c /src/bootloader/hdd2.asm
parentf9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (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/hdd2.asm')
-rw-r--r--src/bootloader/hdd2.asm18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/bootloader/hdd2.asm b/src/bootloader/hdd2.asm
index e289c39..3330c96 100644
--- a/src/bootloader/hdd2.asm
+++ b/src/bootloader/hdd2.asm
@@ -48,17 +48,17 @@ checkA20:
popf
ret
-last_maxlevel db 0
+last_max_level db 0
getrecursive:
push edi
push esi
push ecx
mov eax, edi
- cmp al, byte [last_maxlevel]
- jna .last_maxlevel_updated
- mov byte [last_maxlevel], al
- .last_maxlevel_updated:
+ cmp al, byte [last_max_level]
+ jna .last_max_level_updated
+ mov byte [last_max_level], al
+ .last_max_level_updated:
mov eax, esi
call 0x7c26
@@ -66,19 +66,19 @@ getrecursive:
mov eax, dword [esp]
sub eax, 10
- cmp byte [last_maxlevel], 1
+ cmp byte [last_max_level], 1
jna .check1
mov ebx, 1
shl ebx, 7
sub eax, ebx
.check1:
- cmp byte [last_maxlevel], 2
+ cmp byte [last_max_level], 2
jna .check2
mov ebx, 1
shl ebx, 14
sub eax, ebx
.check2:
- cmp byte [last_maxlevel], 3
+ cmp byte [last_max_level], 3
jna .check3
mov ebx, 1
shl ebx, 21
@@ -102,7 +102,7 @@ getrecursive:
mov ecx, [esp]
call getrecursive
.finish_recursion:
- mov byte [last_maxlevel], 0
+ mov byte [last_max_level], 0
pop ecx
pop esi