This repository has been archived on 2022-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
compilateurMIPS/tests/11_def.test
Mylloon 828a780f9c
WIP Function implementation
* Add basic support of function
* move debug function to test file
* add a test who need to pass to end the implementation
2022-12-10 01:55:15 +01:00

8 lines
125 B
Text

int cops_calculator () {
int res = 13 * 100 + 20 - 8;
return res * 2 / 2;
}
void main () {
cops_calculator();
}