Started implementing some opcodes

This commit is contained in:
2017-01-24 13:36:52 +01:00
parent b49c1e543f
commit 1bd5b0a6da
4 changed files with 68 additions and 3 deletions

View File

@@ -3,6 +3,8 @@
int main(int argc, char** argv) {
int i = 10;
int x = i++ + (i++ + 1);
// aci, i == 12 ; x == 21
return 0;
}