• A51 help!
    Hi, I need to be able to call a c function from within the STARTUP.A51 file (actually, any *.a51 file), so that the code listing has the startup code, then the call of this new function, then the LJMP...
  • A51 help!
    Hi, I need to be able to call a c function from within the STARTUP.A51 file (actually, any *.a51 file), so that the code listing has the startup code, then the call of this new function, then the LJMP...
  • Help On A51 EXTRN Directive
    I create a C51 project and write just one A51 subroutine(for speed).I define some SFR in the header file just like sbit FLASH_CS = P1^1; sbit A19 = P3^5; sbit A18 = P3^4; sbit A17 = P3^3; sbit A16...
  • Help On A51 EXTRN Directive
    I create a C51 project and write just one A51 subroutine(for speed).I define some SFR in the header file just like sbit FLASH_CS = P1^1; sbit A19 = P3^5; sbit A18 = P3^4; sbit A17 = P3^3; sbit A16...
  • A51 only allows 16 bit arithmetic - Help!!
    Hi, I have the following code #define FT_RESOLUTION_NS 240 #define US_2_FT_TICKS(x) (((x) * 1000)/FT_RESOLUTION_NS) values calculated with US_2_FT_TICKS where the x * 1000 bit overflows 16...