• C calling to Assembly routine
    Hi, I'm trying to call an assembly (.a51) function from a C file. I had it working, but then now it refuses to work. I get an error *** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY...
  • Interrupt Service Routine is not called in LPC2148
    Sir,I have written a this code below to run a VGA from LPC2148 but interupt service routine is not called can u suggest a solution I have also edited startup file but it wont work #include <lpc214x...
  • calling assembly routine from C in UV2
    Hi, below is the code snippet I am using to try out calling as asm func from a C module. What happens is the asmtest func occupies memory location 0000h and C startup code is unable to execute correctly...
  • about "a C program calling an assembly routine"problem
    The C code is: #pragma SRC #include<Reg936.h> #define uchar unsigned char #define uint unsigned int extern uchar AA1; extern uchar a_func(uchar) void main() { unsigned char ab,acd; AA1=0xff; ...
  • Calling asm routines from C source
    Hi, I've got a project containing a c source file and an a51 assembler file. I need to be able to call some of the asm routines from the C file. I'm after a tutorial describing what you need to do to...