Re: A86: new shell idea


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

Re: A86: new shell idea




In a message dated 5/12/99 14:40:31 Eastern Daylight Time, Bigskank9@aol.com 
writes:

> On a side note what happens to asm_exec_ram after a prog is ran? Say i run 
a 
>  large prog that fills the area, then i run a small prog (say only 100 
bytes) 
> 
>  what would be in the area of (asm_exec_ram+200)??  Would it be some random 
>  number or would it be empty

After an asm program is run, _asm_exec_ram still contains the program.  That 
way, if it's executed twice in a row, the ti-86 will just call _asm_exec_ram 
straight up rather than recopying the program.  Thus a small program (say 
just a nop) would just run right back into the asm program that was run 
previously.