├── 0x00000.bin ├── 0x40000.bin ├── Makefile ├── README.md ├── driver └── uart.c ├── include ├── driver │ ├── uart.h │ └── uart_register.h └── user_config.h └── user ├── 754lib.h ├── dumbconfig.h ├── dumbcraft.c ├── dumbcraft.h ├── dumbgame.c ├── dumbutils.c ├── dumbutils.h ├── mystuff.c ├── mystuff.h ├── user_main.c ├── user_main.c.minimal.txt ├── util10.c └── util10.h /0x00000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/0x00000.bin -------------------------------------------------------------------------------- /0x40000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/0x40000.bin -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/README.md -------------------------------------------------------------------------------- /driver/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/driver/uart.c -------------------------------------------------------------------------------- /include/driver/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/include/driver/uart.h -------------------------------------------------------------------------------- /include/driver/uart_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/include/driver/uart_register.h -------------------------------------------------------------------------------- /include/user_config.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /user/754lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/754lib.h -------------------------------------------------------------------------------- /user/dumbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/dumbconfig.h -------------------------------------------------------------------------------- /user/dumbcraft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/dumbcraft.c -------------------------------------------------------------------------------- /user/dumbcraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/dumbcraft.h -------------------------------------------------------------------------------- /user/dumbgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/dumbgame.c -------------------------------------------------------------------------------- /user/dumbutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/dumbutils.c -------------------------------------------------------------------------------- /user/dumbutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/dumbutils.h -------------------------------------------------------------------------------- /user/mystuff.c: -------------------------------------------------------------------------------- 1 | #include "mystuff.h" 2 | 3 | char generic_print_buffer[384]; 4 | -------------------------------------------------------------------------------- /user/mystuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/mystuff.h -------------------------------------------------------------------------------- /user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/user_main.c -------------------------------------------------------------------------------- /user/user_main.c.minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/user_main.c.minimal.txt -------------------------------------------------------------------------------- /user/util10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/util10.c -------------------------------------------------------------------------------- /user/util10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/dumbcraft8266/HEAD/user/util10.h --------------------------------------------------------------------------------