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/34_alloc.test
2022-12-16 13:01:48 +01:00

7 lines
96 B
Text

void main () {
int *a = alloc(8);
*a = 4;
puti(a);
puts(" - ");
puti(*a);
}