1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include "common.h" #ifdef USE_ASM INCLUDE_ASM("tests/data", Add); #else int Add(int a, int b) { // actually a subtract return a - b; } #endif int Init(void) { return Add(1, 2); }