Registers a function to be called when an interrupt occurs
Interrupt_register(INT_NMI, &nmiISR);
Question: Does map file clearly show the relationship between this INT_NMI with its handler?
Due to in the project some where may register the INT_NMI with another handler. Such as
Interrupt_register(INT_NMI, &TestISR);
I want to confirm which one is actually handler for the INT_NMI.


