I need to map the IRQ 7 of parallel port to its interrupt routine.I am doing this in C#.Can any body suggest how do i define the ISR in this language?
eg. in C we use
#pragma interrupt before the ISR.
what do we do in C#?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Jan 13, 2015, 10:38 AM
If I were you, I'd stick to C for stuff like that and, if you're trying to build a GUI 'front end' to your program using C#, just put the C functions in a dll and P/Invoke them from C#.