Hello,
I want to replace the default console CTRL-C handler and, before my program exits, replace the original. I know there is a routine the C/C++ libraries that will do this. However, I am writing this in Assembly language.
My thoughts are: put the new handler address in the process structure at location tc_ExceptCode and put $00001000 at location tc_SigWait. Is this correct?
Thank you.