Small cleanup
This commit is contained in:
parent
1427b8ac01
commit
b6aa941715
|
@ -98,9 +98,6 @@ write:
|
||||||
mov qword [VGA_X], 0
|
mov qword [VGA_X], 0
|
||||||
pop rax
|
pop rax
|
||||||
jmp .pLoop
|
jmp .pLoop
|
||||||
.scroll:
|
|
||||||
; XXX I don't think I'll implement this, but never know...;
|
|
||||||
jmp .pLoop
|
|
||||||
|
|
||||||
dump:
|
dump:
|
||||||
;-----------------------------------------------------------------------;
|
;-----------------------------------------------------------------------;
|
||||||
|
|
|
@ -124,7 +124,6 @@ CheckA20:
|
||||||
; ;
|
; ;
|
||||||
; Not a function because it wipes the stack ;) ;
|
; Not a function because it wipes the stack ;) ;
|
||||||
; ---------------------------------------------------------------------------- ;
|
; ---------------------------------------------------------------------------- ;
|
||||||
; XXX : MAKE A PAGE GUARD FOR THE STACK
|
|
||||||
InitStack:
|
InitStack:
|
||||||
xor rax, rax ; "Fill pattern"
|
xor rax, rax ; "Fill pattern"
|
||||||
push rcx
|
push rcx
|
||||||
|
|
|
@ -56,7 +56,7 @@ Bootdrv db 0
|
||||||
IoReadATA:
|
IoReadATA:
|
||||||
;-----------------------------------------------------------------------;
|
;-----------------------------------------------------------------------;
|
||||||
; x64/LM ATA Reading function ;
|
; x64/LM ATA Reading function ;
|
||||||
; rsi : number of sectors to read XXX ;
|
; rsi : number of sectors to read XXX seems to be buggy ;
|
||||||
; rdx : the first sector to read ;
|
; rdx : the first sector to read ;
|
||||||
;-----------------------------------------------------------------------;
|
;-----------------------------------------------------------------------;
|
||||||
|
|
||||||
|
|
|
@ -110,7 +110,7 @@ settingUp:
|
||||||
//
|
//
|
||||||
void KeSetupIDT(void)
|
void KeSetupIDT(void)
|
||||||
{
|
{
|
||||||
// XXX detect the APIC with cpuid !
|
// XXX detect the APIC with cpuid and, perhaps, use it !
|
||||||
EnablePIC();
|
EnablePIC();
|
||||||
|
|
||||||
ushort codeSeg = (ushort)(ulong)BtLoaderInfo.codeSegment;
|
ushort codeSeg = (ushort)(ulong)BtLoaderInfo.codeSegment;
|
||||||
|
|
|
@ -333,7 +333,6 @@ error_t vbprintf(Buffer_t *buf, const char *fmt, va_list ap)
|
||||||
// We use s to iterate convbuf
|
// We use s to iterate convbuf
|
||||||
s = convbuf;
|
s = convbuf;
|
||||||
|
|
||||||
// FIXME: this works, but is ugly as hell
|
|
||||||
#define bdoconvrt(pref, type, vtype) \
|
#define bdoconvrt(pref, type, vtype) \
|
||||||
do { \
|
do { \
|
||||||
type i_##type = (type)va_arg(ap, vtype); \
|
type i_##type = (type)va_arg(ap, vtype); \
|
||||||
|
|
Loading…
Reference in New Issue