// ***************** prog.c ****************************************** // Dsp program sample : simple op // // (c) multicore.ru // // ******************************************************************* int main() { int a, b,c; a = 10; b = 20; c = a - b; return c; }