-
Notifications
You must be signed in to change notification settings - Fork 1
/
ramdisc08.zx.fs
executable file
·16 lines (5 loc) · 1.01 KB
/
ramdisc08.zx.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
( STACKMANEUVERS COMMAND: REVERSE )
: 2* DUP + ;
: REVERSE ( STACK N -- REVERSED STACK N )
>R R 0 DO PAD I 2* + ! LOOP
R 0 DO PAD I 2* + @ LOOP R> ;