├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── main.c ├── opkg ├── LiberationMono-Regular.ttf ├── calc.retrofw.desktop └── icon.png └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/README.md -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/main.c -------------------------------------------------------------------------------- /opkg/LiberationMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/opkg/LiberationMono-Regular.ttf -------------------------------------------------------------------------------- /opkg/calc.retrofw.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/opkg/calc.retrofw.desktop -------------------------------------------------------------------------------- /opkg/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/opkg/icon.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szymor/bittboy-calc/HEAD/screenshot.png --------------------------------------------------------------------------------