├── .editorconfig ├── .gitignore ├── README.md ├── dis68k.c └── makefile /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomHarte/dis68k/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Intermediate products 2 | *.o 3 | dis68k 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomHarte/dis68k/HEAD/README.md -------------------------------------------------------------------------------- /dis68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomHarte/dis68k/HEAD/dis68k.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomHarte/dis68k/HEAD/makefile --------------------------------------------------------------------------------