8 lines
96 B
Plaintext
8 lines
96 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
TTY=`stty -g`
|
||
|
uxnasm femto.tal femto.rom
|
||
|
stty raw -echo
|
||
|
uxncli femto.rom
|
||
|
stty "$TTY"
|