diff options
| author | Jake Mannens <jakem_5@hotmail.com> | 2020-03-18 14:01:12 +1100 |
|---|---|---|
| committer | Jake Mannens <jakem_5@hotmail.com> | 2020-03-18 14:01:12 +1100 |
| commit | 4d6fe1c317f0a541922f4cf945365fd31e608e10 (patch) | |
| tree | b78f721d50924094d4926ee90131a98ba12eb95e /kernel/timer.s | |
| parent | eda36531e8daedd045fb02c9c590cdf4dddd957f (diff) | |
Added decimal and octal conversion specifiers ('%d' and '%o') to
vsprintf().
Coverted all printk()/printf() functions to capatalised hex for
readability.
Tidied up some code.
Diffstat (limited to 'kernel/timer.s')
| -rw-r--r-- | kernel/timer.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/timer.s b/kernel/timer.s index e6da428..7d54c38 100644 --- a/kernel/timer.s +++ b/kernel/timer.s @@ -26,7 +26,7 @@ tick_handler: inc dword [ticks] mov al, 0x20 out 0x20, al - ; check that the user isn't executing in kernel space + ; check that the task isn't executing in kernel space mov eax, [esp+38] test eax, 0x03 jz .end |
