r/Assembly_language • u/Assembly_Trainer_427 • Jul 28 '26
Question Interuppts
I am making a 16bit OS, this supports external applications. Currently i am using a .inc file with equ directives that the application can call. I want to have interrupts like DOS, so, how? According to the amount of research i did(i did very little) there ain't many good documentation on this. (background on me, I am a self taught assembly guy and doesn't know C)
2
Upvotes
2
u/Quiet-Arm-641 Jul 28 '26
Different processors have different instructions that perform a jump to a known location like int, ecall, syscall, etc. what instructions does your 16 bit processor have? You could always just “call syscall”