├── .gitignore ├── LICENSE ├── b2c.fth ├── embed.1 ├── embed.c ├── embed.fth ├── embed.h ├── f2md.fth ├── image.c ├── main.c ├── makefile ├── readme.md ├── t ├── call.c ├── convert ├── mmu.c ├── ref.c ├── rom.c ├── unit.fth ├── unix.c └── win.c ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/LICENSE -------------------------------------------------------------------------------- /b2c.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/b2c.fth -------------------------------------------------------------------------------- /embed.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/embed.1 -------------------------------------------------------------------------------- /embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/embed.c -------------------------------------------------------------------------------- /embed.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/embed.fth -------------------------------------------------------------------------------- /embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/embed.h -------------------------------------------------------------------------------- /f2md.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/f2md.fth -------------------------------------------------------------------------------- /image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/image.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/makefile -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/readme.md -------------------------------------------------------------------------------- /t/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/call.c -------------------------------------------------------------------------------- /t/convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/convert -------------------------------------------------------------------------------- /t/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/mmu.c -------------------------------------------------------------------------------- /t/ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/ref.c -------------------------------------------------------------------------------- /t/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/rom.c -------------------------------------------------------------------------------- /t/unit.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/unit.fth -------------------------------------------------------------------------------- /t/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/unix.c -------------------------------------------------------------------------------- /t/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/t/win.c -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/embed/HEAD/util.h --------------------------------------------------------------------------------