├── .gitignore ├── LICENCE ├── Makefile ├── README.md ├── cbin.c ├── cbin.h ├── cbin_load.c ├── cbin_load.h ├── centurion.c ├── centurion.h ├── console.c ├── console.h ├── console_win32.c ├── cpu6.c ├── cpu6.h ├── disassemble.c ├── disassemble.h ├── dma.h ├── dsk.c ├── dsk.h ├── hawk.c ├── hawk.h ├── math128.c ├── math128.h ├── mux.c ├── mux.h ├── scheduler.c ├── scheduler.h └── trace.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/README.md -------------------------------------------------------------------------------- /cbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/cbin.c -------------------------------------------------------------------------------- /cbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/cbin.h -------------------------------------------------------------------------------- /cbin_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/cbin_load.c -------------------------------------------------------------------------------- /cbin_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/cbin_load.h -------------------------------------------------------------------------------- /centurion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/centurion.c -------------------------------------------------------------------------------- /centurion.h: -------------------------------------------------------------------------------- 1 | extern volatile unsigned int emulator_done; 2 | -------------------------------------------------------------------------------- /console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/console.c -------------------------------------------------------------------------------- /console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/console.h -------------------------------------------------------------------------------- /console_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/console_win32.c -------------------------------------------------------------------------------- /cpu6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/cpu6.c -------------------------------------------------------------------------------- /cpu6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/cpu6.h -------------------------------------------------------------------------------- /disassemble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/disassemble.c -------------------------------------------------------------------------------- /disassemble.h: -------------------------------------------------------------------------------- 1 | void disassemble(unsigned op); 2 | -------------------------------------------------------------------------------- /dma.h: -------------------------------------------------------------------------------- 1 | void hawk_set_dma(unsigned mode); 2 | -------------------------------------------------------------------------------- /dsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/dsk.c -------------------------------------------------------------------------------- /dsk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/dsk.h -------------------------------------------------------------------------------- /hawk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/hawk.c -------------------------------------------------------------------------------- /hawk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/hawk.h -------------------------------------------------------------------------------- /math128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/math128.c -------------------------------------------------------------------------------- /math128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/math128.h -------------------------------------------------------------------------------- /mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/mux.c -------------------------------------------------------------------------------- /mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/mux.h -------------------------------------------------------------------------------- /scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/scheduler.c -------------------------------------------------------------------------------- /scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/scheduler.h -------------------------------------------------------------------------------- /trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtchedPixels/Centurion/HEAD/trace.h --------------------------------------------------------------------------------