• 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...
  • 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...
  • 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...
  • 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...
  • 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; ...