12 lines
159 B
C++
12 lines
159 B
C++
|
#include <stdio.h>
|
||
|
extern "C"
|
||
|
{
|
||
|
void asmFunc(void);
|
||
|
};
|
||
|
|
||
|
int main(void){
|
||
|
printf("Calling asmFunc: \n");
|
||
|
asmFunc();
|
||
|
printf("Returned from asmFunc\n");
|
||
|
}
|