nxu/femto

10 lines
138 B
Plaintext
Raw Normal View History

2022-02-07 23:00:15 -05:00
#!/bin/sh
TTY=`stty -g`
uxnasm femto.tal femto.rom
2022-02-08 22:22:08 -05:00
if [ $? -eq 0 ]; then
stty raw -echo
2022-02-09 02:35:46 -05:00
uxncli femto.rom "$@"
2022-02-08 22:22:08 -05:00
stty "$TTY"
fi