Nios/invert
From ASMBits
nios/return123Previous
Nextnios/odd
Write a function that returns the bitwise inversion of its parameter.
int invert (int n);
Expected solution length: Around 2 lines.
Sample Input
1
Sample Output
0xfffffffe
nios/return123Previous
Nextnios/odd