-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathramdisc03.zx.fs
executable file
·16 lines (9 loc) · 1.01 KB
/
ramdisc03.zx.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
( -- INPUT RUTINER -- )
FORTH DEFINITIONS DECIMAL
: INPUT ( --- N ) PAD 1+ 64
EXPECT .0 PAD (NUMBER)
DROP DROP ;
: INPUT. ( --- D ) PAD 1+ 64
EXPECT .0 PAD (NUMBER)
DROP ;
;S