Page 1 of 1
how do I create a procedure that load a program into memory
Posted: Sat Jul 12, 2003 11:00 pm
by Rodrigo_BRAZIL
please ! could anybody help-me I´m just a learner! I don´t speak much english!
RE:how do I create a procedure that load a program into memo
Posted: Sun Jul 13, 2003 11:00 pm
by Chase
There isn't any one thing you do, you have to do a lot to run a program from a disk drive.
You have to have code to read from disk to memory.
You have setup the code you've read as a process. You might want to take a look at unix implementations of the fork() and exec() system calls.
You have to have a working task manager and interrupt handler that cycles between processes.
-Chase