test.c (bare metal)
#include int add1(int a, int b) { int c; c = a + b; return c; } int main() { int x, y, z; x = 3; y = 4; z = add1(x,y); print