• What's wrong with my struct *
    I'm using 80c390 in 24-bit mode (a TINI board). If I define the following: struct rtc { unsigned char seconds; unsigned char minutes; unsigned char hours; } struct rtc *p_time; I have a...
  • WHAT IS WRONG
    I HAVE THIS CODE AND NEED TO SAY WHAT IS WRONG HELP ME PLZ LD R0,#>RAMSAVE LD R1,#<RAMSAVE LDE R2,@RR0 LD SV0_RAM,R2 INCW RR0 LDE R2,@RR0 LD SV1_RAM,R2 INCW RR0 LDE R2,@RR0 LD TX_RAM,R2 JP LL9...
  • Define struct on external EEPROM
    Hello all, I'm facing a little understanding problem. At my design I use the AT89C51RD2 micro and also two external memory devices – SRAM and parallel EEPROM. At my code I have several structs that...
  • struct & union definations
    I am using struct in my code. with LPC1317. Now if I write: typedef struct { uint32_t f; union { uint32_t ADR[3]; struct { uint32_t ADR1; uint32_t ADR2; uint32_t ADR3; }; // warning...
  • Typedef __xxx struct? Defines?
    Hi guys, I have a piece of code that I copied from another source but I don't understand what it means and the Keil compiler doesn't either. The code looks like that: #if _MSC_VER >= 1000...