Quote Originally Posted by Mugelpower View Post
...
is it possible to integrate DTs instant interrupts into PBP?

or a subroutine in PBP that automatically inserts cool superfast ASM routines for interrupts?

I´m on the run....
I agree with SKI for your first answer.

For the second question, I will offer this:
If you are using basic commands that compile into short asm code, the fastest interrupt is the built in software interrupts. This is because you don't have to save any variables.

If you are using basic commands that consume a lot of code, and take a lot of time to run, then you may add some code to provide a "Reduced-Delay" asm routine for interrupts. I said it this way because there is no way to get a "superfast" interrupt in Basic, unless you exercise great care and knowledge with the code--but certainly not as a plugin.