Assembly language programs can call functions written in either C or assembly language.
From within assembly language instructions, you can call C functions. For example, if the C function definition is:
void foot( void ) {
/* Do something */
}
Your assembly language calling statement is:
jsr Ffoot
From within assembly language instructions, you can call assembly language functions. For example, if
pmemwrite is an assembly language function, the assembly language calling
statement is: