• Trying to call assembly routines from C
    Greetings, I'm attempting to call a routine written in assembly from C. I use uVison with the windows IDE. THe problem I have is that the linker does not seem to include the assembly file. Whe I...
  • 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...
  • Trying to call assembly routines from C
    Greetings, I'm attempting to call a routine written in assembly from C. I use uVison with the windows IDE. THe problem I have is that the linker does not seem to include the assembly file. Whe I...
  • 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; ...