2015-09-18 12:27:50 -04:00
|
|
|
function $test() {
|
2015-09-14 18:06:29 -04:00
|
|
|
@start
|
2015-08-01 18:17:06 -04:00
|
|
|
%x =w copy 1
|
2015-09-14 18:06:29 -04:00
|
|
|
@loop
|
2015-08-07 16:01:07 -04:00
|
|
|
jnz %x, @noz, @isz
|
2015-09-14 18:06:29 -04:00
|
|
|
@noz
|
2015-08-01 18:17:06 -04:00
|
|
|
%x =w copy 0
|
2015-07-15 16:44:59 -04:00
|
|
|
jmp @end
|
2015-09-14 18:06:29 -04:00
|
|
|
@isz
|
2015-08-01 18:17:06 -04:00
|
|
|
%x =w copy 1
|
2015-07-15 16:44:59 -04:00
|
|
|
jmp @loop
|
2015-09-14 18:06:29 -04:00
|
|
|
@end
|
2015-08-01 18:17:06 -04:00
|
|
|
%z =w add 10, %x
|
2015-07-15 16:44:59 -04:00
|
|
|
ret
|
2015-09-07 22:11:43 -04:00
|
|
|
}
|