9 lines
175 B
Text
9 lines
175 B
Text
int add (int a, int b) {
|
|
# Alors que "add" est le nom d'une instruction
|
|
# MIPS, ça ne pose aucun problème
|
|
return a + b;
|
|
}
|
|
|
|
void main () {
|
|
puti(add(1, 3));
|
|
}
|