This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
OS_Project/Part2/A4/01_gdb/boot/kernel_entry.asm

5 lines
192 B
NASM
Executable File

[bits 32]
[extern _start] ; Define calling point. Must have same name as kernel.c '_start' function
call _start ; Calls the C function. The linker will know where it is placed in memory
jmp $