├── .gitignore ├── Makefile ├── README.md ├── camel80.asm.m4 ├── camel80.ihx ├── camel80d.asm.m4 ├── camel80h.asm.m4 ├── copying ├── glosshi.txt ├── glosslo.txt ├── go ├── og ├── camel80.azm ├── camel80d.azm ├── camel80h.azm └── cameltst.azm ├── readme.z80 ├── scmload.py └── test └── test.asm.m4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/README.md -------------------------------------------------------------------------------- /camel80.asm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/camel80.asm.m4 -------------------------------------------------------------------------------- /camel80.ihx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/camel80.ihx -------------------------------------------------------------------------------- /camel80d.asm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/camel80d.asm.m4 -------------------------------------------------------------------------------- /camel80h.asm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/camel80h.asm.m4 -------------------------------------------------------------------------------- /copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/copying -------------------------------------------------------------------------------- /glosshi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/glosshi.txt -------------------------------------------------------------------------------- /glosslo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/glosslo.txt -------------------------------------------------------------------------------- /go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/go -------------------------------------------------------------------------------- /og/camel80.azm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/og/camel80.azm -------------------------------------------------------------------------------- /og/camel80d.azm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/og/camel80d.azm -------------------------------------------------------------------------------- /og/camel80h.azm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/og/camel80h.azm -------------------------------------------------------------------------------- /og/cameltst.azm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/og/cameltst.azm -------------------------------------------------------------------------------- /readme.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/readme.z80 -------------------------------------------------------------------------------- /scmload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/scmload.py -------------------------------------------------------------------------------- /test/test.asm.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbowman/camelforth-z80/HEAD/test/test.asm.m4 --------------------------------------------------------------------------------