• generic jmp and call to ljmp and lcall
    Is there a way to import old code that assembled with Intel's assembler (by apparently defaulting the generic jmp and call to 3 byte ljmp and lcall)? Is there a assemble directive or some other way to...
  • Helper routines for LCALL statement
    What is the syntax for helper routines of LCALL statement? I have got the syntax for Load & Store operations here - http://www.keil.com/support/docs/1964.htm. But I couldn't find the similar syntax...
  • USING LCALL from another asm file.
    Q) Which Register should be PUSHed into the stack, when calling a Functin in another asm file using LCALL?
  • How to force comipler generate LCALL and LJMP for all funciton call?
    I am writing a library for 8051 mcu. this library call some outside functions, i mean some routine defined by user, I am not sure how far those codes will be seperated from my library in code space, to...
  • CALLING C LIBRARY FUNCTION FROM ASSEMBLY
    Hi: I wish to call function "pow" (which is standard function in library) from my assembly code. How can I do it? Thanks!