• calling C-function from within assembler?
    I want to call a C-function from an assembler-file. for example: void asc0_SendInt(void) interrupt S0TINT using rbank_s0 { ...my code } My Assemblerroutine looks like: $MOD167 $SEGMENTED...
  • calling C from Assembly
    I am trying to learn to call some C floating point routines from Assembly. I am quite proficient in writing Assembly programs which | have done commercially for many years. I have read the < http:...
  • Calling assembly from c
    Hello, I have a problem with calling assembly from c. typedef unsigned char digit; // apn is a pointer to array of digits. Functions: add(apn number1,apn number2,apn result) subtract...
  • call function from a ISR
    Hello, At the moment, I'm working with the ethernet MAC interface and I'm now able to get a interrupt, when I receive a new frame from the PHY. But I'm not totally sure, how I have to configure the...
  • calling subroutines from ISR
    Hi, I'm a newbie. I've got some legacy code where I need to add some features. From the ISR routines I need to call some C functions. ISR is made up with assembly macros, the caller routine that...