Re: A86: questions numbering 3


[Prev][Next][Index][Thread]

Re: A86: questions numbering 3




In a message dated 2/10/00 9:09:47 PM Eastern Standard Time, 
walkingmantis@hotmail.com writes:

>    1. How do you delete a program from another program, eg. the delete 
>  feature on some os's.

 ld hl,varname-1
 rst 20h  ;copy to op1
 rst 10h ;findsym
 call nc,_delvar  ;delete if it exists


varname:
 .db 7,"varname"  ;size byte and filename


>  
>     2. Is there any way to make it so that the [sqrt]KEY is invisible in 
>  Ashell so that it can't be deleted?

Use a better shell :-)

>  
>     3. How do you run a program from another program eg. kind of how the 
>  bomer program loads the bloke string(except i am trying to run a program)
>  

 ld hl,varname-1
 rst 20h  ;copy to op1
 rst 10h ;findsym
 call nc,_exec_assembly  ;execute


varname:
 .db 6,"module"   ;module name


----
Jonah Cohen
<ComAsYuAre@aol.com>
http://linux.hypnotic.org/~jonah/


Follow-Ups: