Skip to content

Commit fa2ed38

Browse files
committed
Implement retz and retnz instruction
1 parent bf1361c commit fa2ed38

File tree

4 files changed

+708
-692
lines changed

4 files changed

+708
-692
lines changed

class.doc

+8
Original file line numberDiff line numberDiff line change
@@ -1917,6 +1917,14 @@ ret ( -- )
19171917
at the end of a code block.) For a user defined function call, or a
19181918
subroutine call, these restrictions are not applicable.
19191919

1920+
retnz ( z -- ? )
1921+
If true, then works like ret (the value is kept); but if false, then the
1922+
value is discarded and then it continues from here instead.
1923+
1924+
retz ( z -- ? )
1925+
If false, then works like ret (the value is kept); but if true, then the
1926+
value is discarded and then it continues from here instead.
1927+
19201928
rot ( x y z -- y z x )
19211929

19221930
-rot ( x y z -- z x y )

exec.c

+2
Original file line numberDiff line numberDiff line change
@@ -3251,6 +3251,8 @@ static void execute_program(Uint16*code,int ptr,Uint32 obj) {
32513251
case OP_REPLACE: NoIgnore(); StackReq(5,1); t5=Pop(); t4=Pop(); t3=Pop(); t2=Pop(); t1=Pop(); Push(v_replace(obj,t1,t2,t3,t4,t5)); break;
32523252
case OP_REPLACE_D: NoIgnore(); StackReq(5,0); t5=Pop(); t4=Pop(); t3=Pop(); t2=Pop(); t1=Pop(); v_replace(obj,t1,t2,t3,t4,t5); break;
32533253
case OP_RET: return;
3254+
case OP_RETNZ: StackReq(1,1); t1=Pop(); if(v_bool(t1)) { Push(t1); return; } break;
3255+
case OP_RETZ: StackReq(1,1); t1=Pop(); if(!v_bool(t1)) { Push(t1); return; } break;
32543256
case OP_ROT: StackReq(3,3); t3=Pop(); t2=Pop(); t1=Pop(); Push(t2); Push(t3); Push(t1); break;
32553257
case OP_ROTBACK: StackReq(3,3); t3=Pop(); t2=Pop(); t1=Pop(); Push(t3); Push(t1); Push(t2); break;
32563258
case OP_RSH: StackReq(2,1); t2=Pop(); Numeric(t2); t1=Pop(); Numeric(t1); Push(NVALUE(t2.u&~31?0:t1.u>>t2.u)); break;

instruc

+2
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ over
9191
*goto
9292
*CallSub
9393
ret
94+
retnz
95+
retz
9496
-case
9597
-or
9698
-and

0 commit comments

Comments
 (0)