We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I try to debug simple code
static void com_isr (void) interrupt 4 using 1 { unsigned char data c; /*- Received data interrupt. -*/ if (RI) { c = SBUF; RI = 0; ... ... } }