├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.ia16 ├── Makefile.z80 ├── README.md ├── tests.c ├── tokenizer.c ├── tokenizer.h ├── ubasic.c ├── ubasic.h ├── ubx.c └── use-ubasic.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.map 3 | *.o 4 | *~ 5 | tests 6 | ubx 7 | use-ubasic 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.ia16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/Makefile.ia16 -------------------------------------------------------------------------------- /Makefile.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/Makefile.z80 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/README.md -------------------------------------------------------------------------------- /tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/tests.c -------------------------------------------------------------------------------- /tokenizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/tokenizer.c -------------------------------------------------------------------------------- /tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/tokenizer.h -------------------------------------------------------------------------------- /ubasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/ubasic.c -------------------------------------------------------------------------------- /ubasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/ubasic.h -------------------------------------------------------------------------------- /ubx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/ubx.c -------------------------------------------------------------------------------- /use-ubasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/ubasic/HEAD/use-ubasic.c --------------------------------------------------------------------------------