Thanks for your quickly response.
I used chip name is coldfire 52259.
I got a file that note some steps for add ISR into a project.It doesn't say about ProcessExpert.
Here are steps:
1.write a ISR function
__declspec(interrupt)
void my_isr(void)
{
//doing somethins
}
2.modifiy exceptions.c and add custom name of ISR
extern __declspec(interrupt) void my_isr(void);
....
my_isr ,/* 82(0x148) */
I follow these steps doing somethings.Though my_isr() doesn't run.I didn't know this method is right.I can try your method.
Thanks
Kevin Chen