#!/bin/sh # # see femto.tal for source code # # see femto.txt for documentation TTY=`stty -g` if [ "$1" = "-b" ]; then shift uxnasm femto.tal femto.rom fi if [ $? -eq 0 ]; then stty raw -echo uxncli femto.rom "$@" stty "$TTY" fi