• Sharing #defines and EQU statements
    Does anyone know if there is a way to make a #define in 'C' visible to A51 code (or visa-versa)? I know how to make a header file in Hi-Tech C51 that will let 'C' and 'A51 definitions coexist, but can...
  • EQU DIRECTIVE ISSUE
    Dear all, I am using Keil evaluation version 4 for ARM, on target device LPC2119.I am programming using assembly language.Below are the details of my keil evaluation version. IDE-Version: µVision...
  • Coding standards: EQU vs DS
    (1) Is there a coding standard for 8051 assembler regarding use of: foo equ 80h ; some idata and foo: ds 1 ? (2) What is your opinion?
  • #define located on stack / in flash
    Hi, is it true that #define directives are located on the stack (or in the flash)? #define TEST "ein text" Or is it much better to use static unsigned char[] = "ein text"; variables...
  • SPECIFY EXACT LOCATION FOR C51 USER DEFINED FUNCTIONS
    HELLO all, Can we Sepecify exact location to our own defined functions. for example void function() _at_ c:0x5000; void main() { ... ... } void function() { ... ... }