blob: f1e3b6bd34c8b56277fb9ff0e9b79688d563de7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;; Miguel's FoolOS Helper Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; this will be compiled to an object file and linked with the kernel
; to simplify the entrance!
;
;
[bits 32]
[extern kernel_main]
call kernel_main ; jumps in the world of C
|