• Declare 16-bit pointer compiletime
    To support a legacy structure I need a 16-bit pointer. This to create a linked-list sort of structure. I need this to be declared compile-time, not runtime. Previously, we did this in assembly using...
  • How to declare bit global in header file
    Hello all, I'm having problem declaring bit as global in header file to avoid including extern bit xxx in other files. I've followed Keil instruction from this link: http://www.keil.com/support...
  • How do I declare bit variables as extern?
    Guys, How can I declare a bit variable defined in a file as "extern" when that variable is defined in another file? Although in the page 99 (C51, uVision2, V2.38) describes that I should be able...
  • Single bit getting of a user declared variable
    Can individual bits of a user declare variable be accessed just like using SBIT for Ports?.
  • Generalized approach for getting bits of varaibles declared As BDATA
    Hello all, I have been pondering upon getting each bit of a variable (e.g. declared as char) using a for loop char bdata Char1; bit y; for(x=0; x<7; x++) y = Char1^x; My question is ...