• XRAM not cleared, variables not assigned
    im using a phillips 89c668 uC with 64k on chip ROM and 8k on chip XRAM. keil has been setup to use the on chip XRAM. AUXR is set to 0. startup.a51 has been modified to include the foll XDATASTART EQU...
  • how to assign a C function to a pointed address?
    hi,all Is there anyway for my to assign a C function pointer to a pointed address? for example,I want to set my function :A be assigned to 0xA0000000 when compile and link. i use LPC2478 and uision...
  • Get assigned DHCP address
    How can my application know at run time what IP address was assigned to it by the DHCP server? Thanks.
  • Assign a global variable to a register
    Hello, in my application I use often a global variable. Since this variable is use in lots of functions, I'd like to assign it to a specific register (like DR28). It is possible? If yes, how can I...
  • assigning struct to variable
    Hi All,, Whats wrong with following ?? unsigned char myvar; struct mystruct{ unsigned char aaa:3; unsigned char bbb:3; unsigned char ccc:2; }mystruct = {1,2,3}; myvar = mystruct; Why...