diff --git a/emu.sh b/emu.sh new file mode 100755 index 000000000..014cf0fe3 --- /dev/null +++ b/emu.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +cd `dirname $0`/src + +../vendor/micropython/unix/micropython main.py diff --git a/src/boot.py b/src/boot.py new file mode 100644 index 000000000..e69de29bb diff --git a/src/main.py b/src/main.py new file mode 100644 index 000000000..8b1a046bd --- /dev/null +++ b/src/main.py @@ -0,0 +1,7 @@ +print("cus") + +from TrezorUi import Display + +d = Display() +d.bar(0, 0, 240, 240, 0) +while True: pass