uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit c70ba4238a7a313be264d0bdf6fda18d79f9172c
parent 07f9785fabd001ac6fa0b60c45eae32bb6128cfe
Author: Devine Lu Linvega <aliceffekt@gmail.com>
Date:   Sat, 15 Apr 2023 20:06:34 -0700

(system.tal) Made example dynamic

Diffstat:
Mprojects/examples/devices/system.tal | 34+++++++++++++++++++++++++---------
1 file changed, 25 insertions(+), 9 deletions(-)

diff --git a/projects/examples/devices/system.tal b/projects/examples/devices/system.tal @@ -1,25 +1,38 @@ |00 @System &vector $2 &wst $1 &rst $1 &pad $4 &r $2 &g $2 &b $2 &debug $1 &halt $1 +|10 @Console &vector $2 &read $1 &pad $5 &write $1 |0100 ;on-halt .System/vector DEO2 + ;on-console .Console/vector DEO2 + ;dict/instruction pstr - ( divzero ) #02 #00 DIV - ( underflow ) POP - ( overflow ) #00 &l #ffff ROT INC DUP ?&l POP - - #80 .System/halt DEO +BRK + +@on-console ( -> ) + + [ LIT2 &id =tests ] INC2k INC2 ,&id STR2 LDA2 JSR2 BRK +@tests + =try-divzero + =try-underflow + =try-overflow + =exit + +@try-divzero ( -- ) #02 #00 DIV JMP2r +@try-underflow ( -- ) POP JMP2r +@try-overflow ( -- ) #00 &l #ffff ROT INC DUP ?&l POP JMP2r +@exit ( -- ) #0000 .Console/vector DEO2 #800f DEO BRK + @on-halt ( addr* inst code -> ) #00 SWP DUP ADD ;err ADD2 LDA2 pstr ;dict/error pstr print-opcode ;dict/at pstr - phex LIT2 0a ". #18 DEO #18 DEO - #01 .System/halt DEO + phex LIT ". #18 DEO BRK @@ -51,10 +64,12 @@ JMP2r JMP2r @pstr ( str* -- ) + &w LDAk #18 DEO - INC2 LDAk ,&w JCN + INC2 LDAk ?&w POP2 + JMP2r @err @@ -64,12 +79,13 @@ JMP2r =dict/divzero @dict - &error "Error, 20 "during 20 $1 + &error "error, 20 "during 20 $1 &unknown "Unkown 20 $1 &underflow "Underflow 20 $1 &overflow "Overflow 20 $1 &divzero "Division 20 "by 20 "zero 20 $1 &at ", 20 "at 20 "# $1 + &instruction "Press 20 "enter 20 "to 20 "test 20 "each 20 "error. 0a $1 @opcodes "LIT $1 "INC $1 "POP $1 "NIP $1 "SWP $1 "ROT $1 "DUP $1 "OVR $1