1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/dsf/org.eclipse.cdt.examples.dsf.pda/samples/arrays.pda
2012-10-30 11:43:00 -07:00

14 lines
117 B
Text

var a[10000]
var i
push 10000
pop $i
:start
push $i
dec
pop $i
push $i
pop $a[i]
push $i
branch_not_zero start
halt