Forum Discussion
Altera_Forum
Honored Contributor
13 years agoHow to access a NIOS II ALU instruction from an application code?
Hello, This question might sound trivial, however since I am a beginner I am forced to ask this as well. How to call the NIOS II ALU ADD instruction from an application code in C which runs o...
Altera_Forum
Honored Contributor
13 years agoJust use the "+" operator naturally in C.
int add(int a, int b) { return a+b; }