我想同时在我的操作系统中运行应用程序和内核。
但是当内核跳转加载的应用程序内核做他们的后台操作(例如:看CD-DVD Rom)
例子:
bits 16
org 32768;<--------
;start of kernel
start:
...
;Process
Load:
....
jmp 65535;I want to Kernel Do This operations in the back
....
; - - - - - - - - - - - -应用程序 - - - - - - - - - - - ;
bits 16 ;16 bit
org 65535;<-----------
start:
...some process...
jmp 32768 ;Cont. the kernel
请帮助 www.afcos.comuf.com