merge
This commit is contained in:
commit
3afc7071ff
8
femto
8
femto
|
@ -5,11 +5,15 @@
|
|||
# see femto.txt for documentation
|
||||
|
||||
TTY=`stty -g`
|
||||
BASE="$HOME/w/nxu"
|
||||
|
||||
uxnasm femto.tal femto.rom
|
||||
if [ $1 = "-r" ]; then
|
||||
shift
|
||||
uxnasm "$BASE/femto.tal" "$BASE/femto.rom"
|
||||
fi
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
stty raw -echo
|
||||
uxncli femto.rom "$@"
|
||||
uxncli "$BASE/femto.rom" "$@"
|
||||
stty "$TTY"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue