Remove unused start()
args
This commit is contained in:
parent
e3bdce6065
commit
1db789889c
@ -31,18 +31,9 @@ stage3.entry:
|
|||||||
; stage3 stack at 448 KiB (512KiB minus 64KiB disk buffer)
|
; stage3 stack at 448 KiB (512KiB minus 64KiB disk buffer)
|
||||||
mov esp, 0x70000
|
mov esp, 0x70000
|
||||||
|
|
||||||
; push arguments
|
; push arguments to `start()`
|
||||||
mov eax, thunk.int16
|
|
||||||
push eax
|
|
||||||
mov eax, thunk.int15
|
|
||||||
push eax
|
|
||||||
mov eax, thunk.int13
|
|
||||||
push eax
|
|
||||||
mov eax, thunk.int10
|
mov eax, thunk.int10
|
||||||
push eax
|
push eax
|
||||||
xor eax, eax
|
|
||||||
mov al, [disk]
|
|
||||||
push eax
|
|
||||||
mov eax, [stage3 + 0x18]
|
mov eax, [stage3 + 0x18]
|
||||||
call eax
|
call eax
|
||||||
|
|
||||||
|
@ -6,18 +6,6 @@ thunk:
|
|||||||
mov dword [.func], .int10_real
|
mov dword [.func], .int10_real
|
||||||
jmp .enter
|
jmp .enter
|
||||||
|
|
||||||
.int13:
|
|
||||||
mov dword [.func], .int13_real
|
|
||||||
jmp .enter
|
|
||||||
|
|
||||||
.int15:
|
|
||||||
mov dword [.func], .int15_real
|
|
||||||
jmp .enter
|
|
||||||
|
|
||||||
.int16:
|
|
||||||
mov dword [.func], .int16_real
|
|
||||||
jmp .enter
|
|
||||||
|
|
||||||
.func: dd 0
|
.func: dd 0
|
||||||
.esp: dd 0
|
.esp: dd 0
|
||||||
.cr0: dd 0
|
.cr0: dd 0
|
||||||
@ -65,18 +53,6 @@ USE16
|
|||||||
int 0x10
|
int 0x10
|
||||||
ret
|
ret
|
||||||
|
|
||||||
.int13_real:
|
|
||||||
int 0x13
|
|
||||||
ret
|
|
||||||
|
|
||||||
.int15_real:
|
|
||||||
int 0x15
|
|
||||||
ret
|
|
||||||
|
|
||||||
.int16_real:
|
|
||||||
int 0x16
|
|
||||||
ret
|
|
||||||
|
|
||||||
.pm16:
|
.pm16:
|
||||||
; set segment selectors to protected mode 16-bit
|
; set segment selectors to protected mode 16-bit
|
||||||
mov eax, gdt.pm16_data
|
mov eax, gdt.pm16_data
|
||||||
|
@ -123,13 +123,7 @@ extern "x86-interrupt" fn double_fault_handler(
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub unsafe extern "C" fn start(
|
pub unsafe extern "C" fn start(thunk10: extern "C" fn()) -> ! {
|
||||||
_boot_disk: usize,
|
|
||||||
thunk10: extern "C" fn(),
|
|
||||||
_thunk13: extern "C" fn(),
|
|
||||||
_thunk15: extern "C" fn(),
|
|
||||||
_thunk16: extern "C" fn(),
|
|
||||||
) -> ! {
|
|
||||||
println!("Entered Rust, serial ready.");
|
println!("Entered Rust, serial ready.");
|
||||||
|
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user