about summary refs log tree commit diff stats
path: root/original_jonesforth/test_assembler.f
blob: 8edba7c23a118cc79442143f0df1d3a23d81d9e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
( -*- text -*- )

: 2DROP INLINE DROP INLINE DROP ;CODE

: C@++ INLINE DUP INLINE 1+ INLINE SWAP INLINE C@ ;CODE

: TEST
	." 2DROP: "	1 2 3 4 2DROP . . CR

	S" testing" DROP
	C@++ EMIT CR
	C@++ EMIT CR
	C@++ EMIT CR
	C@++ EMIT CR
	C@++ EMIT CR
	C@++ EMIT CR
	C@++ EMIT CR
	DROP
;