mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
23 lines
212 B
Text
23 lines
212 B
Text
push 5
|
|
:thread_create
|
|
exec foo
|
|
dec
|
|
dup
|
|
branch_not_zero thread_create
|
|
push finished
|
|
output
|
|
halt
|
|
:foo
|
|
push thread_created
|
|
output
|
|
call inner
|
|
halt
|
|
:inner
|
|
var b
|
|
call inner2
|
|
push 2
|
|
return
|
|
:inner2
|
|
var c
|
|
push 3
|
|
return
|