main.c10 lines Β· 179 chars
1
2
3
4
5
6
7
8
9
10
int main(int argc, char **argv) { int i; printf("argc = %d\n", argc); i = 0; while (i < argc) { printf("argv[%d] = %s\n", i, argv[i]); i = i + 1; } return 0; }
console
β
VM inspector
pcβ
spβ
bpβ
Aβ
opβ
cycβ
disassembly
compile to view bytecode
stack (top β)
run or step to view
symbols
β