how do I create a procedure that load a program into memory

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
Rodrigo_BRAZIL

how do I create a procedure that load a program into memory

Post by Rodrigo_BRAZIL »

please ! could anybody help-me I´m just a learner! I don´t speak much english!
Chase

RE:how do I create a procedure that load a program into memo

Post 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
Post Reply