trezor-core/emu_stick.sh

9 lines
251 B
Bash
Raw Normal View History

2016-05-02 07:50:03 -07:00
#!/bin/bash
cd `dirname $0`/src
if [ "$1" == -d ]; then
shift
gdb --args ../vendor/micropython/unix/micropython $* -O0 -X heapsize=100000 main_stick.py
else
../vendor/micropython/unix/micropython $* -O0 -X heapsize=100000 main_stick.py
fi