nxu/femto

10 lines
133 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
uxncli femto.rom
stty "$TTY"
fi