Executing Programs from a micro-kernel

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
kaigoh

Executing Programs from a micro-kernel

Post by kaigoh »

Hey all - I know this is most likely a newbie question for most, but it is the forst thing I have got stuck on so far :P What I need to know is: How can I run executables (Mainly just plain bin files) from my kernel? A simple(ish) set of instructions would be cool ;D Thanks,
Kaigoh
FSQUID

Re:Executing Programs from a micro-kernel

Post by FSQUID »

Files? Then is a file system like FAT12 required.
The simplest way is to load raw sectors form disk (int 13h) then make a call to the location loaded to like a sub-procedure. The program can be terminated with 'ret' to return to the point called from.
Post Reply