My problem is that I have to reprogram interrupts without using system libraries like dos.h, so I can't use functions like getvect or setvect. I have made working program in C (with asm inserts) but it's using DOS functions. How to make it without dos.h and use asm instead?
I thought about writing program into fixed place in memory and then change adres in interrupt vector table but I have no idea how to do this - especially that program is mostly in C.
I have to reprogram system clock interrupt and LPT interrupt. Timer of the system clock has been speeded up so every few times I have to generate original system clock interrupt.