• Bit declare
    How can I declare a bit variable? THanks Nguyen The Son
  • Bit declare
    How can I declare a bit variable? THanks Nguyen The Son
  • Declare a pointer table in HCONST space
    Declaring the Pointer Table in CODE Space Hello, I would like to declare the following array of functions in HCONST space: code void (code *ArrayOfFunctions[])(void) = { MyFunct_1, MyFunct_2...
  • Declare a pointer table in HCONST space
    Declaring the Pointer Table in CODE Space Hello, I would like to declare the following array of functions in HCONST space: code void (code *ArrayOfFunctions[])(void) = { MyFunct_1, MyFunct_2...
  • howto declare const memory-specific pointer to const var?
    How can I declare a const memory-specific pointer to a const variable? 1) const char far *idata *const c3; This compiles, but I suspect this is a double pointer. 2) const char far *idata const...