Re: A86: Terms


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

Re: A86: Terms




thats what i was saying, well almost saying, the interupts have to be
manually located and you gotta find out where they stop and then go back a
byte for the ret (wont work on multiple ret interupts) then write interupt B
starting over the ret of interupt A

>Why can't there be more than one user interrupt installed at a time?  On
>the pc when you install an interrupt, you just read in the vector of the
>int you want, set it to the start of your ISR (interrupt service routine),
>then call the old ISR at the end of yours.   So if program A is running
>when you install your program B, program B reads in A's address, sets the
>vector (the address the cpu calls when that interrupt is run) to it's
>address (program B's address), then calls program A's address when it's
done.