nxu/femto

10 lines
138 B
Bash
Executable File

#!/bin/sh
TTY=`stty -g`
uxnasm femto.tal femto.rom
if [ $? -eq 0 ]; then
stty raw -echo
uxncli femto.rom "$@"
stty "$TTY"
fi