~rabbits/orca-toy

ba17f59d392524773297f32448502be7e23e1349 — neauoire 1 year, 8 months ago 5d48002
Implemented J/Y operators
1 files changed, 9 insertions(+), 2 deletions(-)

M orca.tal
M orca.tal => orca.tal +9 -2
@@ 372,8 372,12 @@ RTN

@op-j ( x y char -- )

	POP POP2
	
	POP ( TODO: Wiring )
	( get value ) DUP2 #01 - GET-PORT-RIGHT-RAW STH
	( incr y ) #01 + 
	STHr SET-PORT-OUTPUT

RTN

@op-k ( x y char -- )


@@ 506,7 510,10 @@ RTN

@op-y ( x y char -- )

	POP POP2
	POP ( TODO: Wiring )
	( get value ) DUP2 DECR GET-PORT-RIGHT-RAW STH
	( incr y ) INCR
	STHr SET-PORT-OUTPUT
	
RTN