* src/SDCCsymt.c (initCSupport): change return type of divschar to
[fw/sdcc] / device / lib / serial.c
index 4508282e9bba0246eafd0a67642a2391c05c9ccc..bb48557edb74b24a271e9a2d9f1cc3adef14cac8 100644 (file)
@@ -8,7 +8,8 @@
 //Last modified 6 Apr 97
 //----------------------------------------------------------------------------
 
-#include "reg51.h"//This module contains definition of I8051 registers
+//This module contains definition of I8051 registers
+#include "8052.h"
 
 
 static unsigned char xdata stx_index_in, srx_index_in, stx_index_out, srx_index_out;
@@ -43,6 +44,13 @@ void serial_init(void)
 void serial_interrupt_handler(void) interrupt 4 using 1
 {
     ES=0;
+    if ( RI )
+       {
+           RI = 0;
+           srx_buffer[srx_index_in++]=SBUF;
+           work_flag_byte_arrived = 1;
+           rx_serial_buffer_empty = 0;
+       }
     if ( TI )
        {
            TI = 0;
@@ -53,13 +61,6 @@ void serial_interrupt_handler(void) interrupt 4 using 1
                }
            else SBUF = stx_buffer[stx_index_out++];
        }
-    if ( RI )
-       {
-           RI = 0;
-           srx_buffer[srx_index_in++]=SBUF;
-           work_flag_byte_arrived = 1;
-           rx_serial_buffer_empty = 0;
-       }
     ES=1;
 }