├── .gitignore ├── LICENSE ├── TODO ├── bios.bin ├── compatibility.md ├── default.conf ├── docs ├── cpu-library.md ├── internals.md ├── pics │ ├── cpu-z.png │ ├── dos.png │ ├── et4000.png │ ├── halfix-in-halfix.png │ ├── lgpl-vgabios.png │ ├── nt1.png │ ├── nt2.png │ ├── os2-warp4.png │ ├── seabios.png │ ├── ubuntu.png │ ├── vista.png │ ├── win10.png │ ├── win7.png │ └── win98.png ├── rombios.patch └── savestates.md ├── include ├── cpu │ ├── cpu.h │ ├── fpu.h │ ├── instruction.h │ ├── instrument.h │ ├── libcpu.h │ ├── opcodes.h │ ├── ops.h │ └── simd.h ├── cpuapi.h ├── devices.h ├── display.h ├── drive.h ├── io.h ├── net.h ├── pc.h ├── platform.h ├── softfloat │ ├── config.h │ ├── fpu-constants.h │ ├── softfloat-compare.h │ ├── softfloat-constants.h │ ├── softfloat-macros.h │ ├── softfloat-round-pack.h │ ├── softfloat-specialize.h │ ├── softfloat.h │ └── softfloatx80.h ├── state.h └── util.h ├── index.html ├── lib ├── jszip.min.js └── pako_inflate.min.js ├── libhalfix.js ├── makefile.js ├── readme.md ├── runtime.js ├── src ├── cpu │ ├── access.c │ ├── cpu.c │ ├── decoder.c │ ├── eflags.c │ ├── fpu.c │ ├── libcpu-stubs.c │ ├── libcpu.c │ ├── mmu.c │ ├── opcodes.c │ ├── ops │ │ ├── arith.c │ │ ├── bit.c │ │ ├── ctrlflow.c │ │ ├── io.c │ │ ├── misc.c │ │ ├── simd.c │ │ ├── stack.c │ │ └── string.c │ ├── prot.c │ ├── seg.c │ ├── smc.c │ ├── softfloat.c │ └── trace.c ├── display-gtk3.c ├── display-tui.c ├── display-win32.c ├── display.c ├── drive.c ├── emscripten │ └── emscripten.c ├── hardware │ ├── acpi.c │ ├── apic.c │ ├── cmos.c │ ├── dma.c │ ├── fdc.c │ ├── ide.c │ ├── ioapic.c │ ├── kbd.c │ ├── ne2000.c │ ├── pci.c │ ├── pic.c │ ├── pit.c │ └── vga.c ├── host │ ├── net-none.c │ └── net-pcap.c ├── ini.c ├── io.c ├── kvm │ └── kvm.c ├── main.c ├── pc.c ├── state.c └── util.c ├── tools ├── autogen.js ├── autogen_bit.js ├── autogen_jcc.js ├── autogen_savestate.js ├── autogen_string.js ├── ftable-lookup.js ├── imgsplit.js ├── opcode-list.js ├── readme └── savestate_format.js └── vgabios.bin /.gitignore: -------------------------------------------------------------------------------- 1 | # Don't include build files 2 | *.o 3 | *.a 4 | halfix -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/LICENSE -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/TODO -------------------------------------------------------------------------------- /bios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/bios.bin -------------------------------------------------------------------------------- /compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/compatibility.md -------------------------------------------------------------------------------- /default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/default.conf -------------------------------------------------------------------------------- /docs/cpu-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/cpu-library.md -------------------------------------------------------------------------------- /docs/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/internals.md -------------------------------------------------------------------------------- /docs/pics/cpu-z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/cpu-z.png -------------------------------------------------------------------------------- /docs/pics/dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/dos.png -------------------------------------------------------------------------------- /docs/pics/et4000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/et4000.png -------------------------------------------------------------------------------- /docs/pics/halfix-in-halfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/halfix-in-halfix.png -------------------------------------------------------------------------------- /docs/pics/lgpl-vgabios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/lgpl-vgabios.png -------------------------------------------------------------------------------- /docs/pics/nt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/nt1.png -------------------------------------------------------------------------------- /docs/pics/nt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/nt2.png -------------------------------------------------------------------------------- /docs/pics/os2-warp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/os2-warp4.png -------------------------------------------------------------------------------- /docs/pics/seabios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/seabios.png -------------------------------------------------------------------------------- /docs/pics/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/ubuntu.png -------------------------------------------------------------------------------- /docs/pics/vista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/vista.png -------------------------------------------------------------------------------- /docs/pics/win10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/win10.png -------------------------------------------------------------------------------- /docs/pics/win7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/win7.png -------------------------------------------------------------------------------- /docs/pics/win98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/pics/win98.png -------------------------------------------------------------------------------- /docs/rombios.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/rombios.patch -------------------------------------------------------------------------------- /docs/savestates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/docs/savestates.md -------------------------------------------------------------------------------- /include/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/cpu.h -------------------------------------------------------------------------------- /include/cpu/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/fpu.h -------------------------------------------------------------------------------- /include/cpu/instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/instruction.h -------------------------------------------------------------------------------- /include/cpu/instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/instrument.h -------------------------------------------------------------------------------- /include/cpu/libcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/libcpu.h -------------------------------------------------------------------------------- /include/cpu/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/opcodes.h -------------------------------------------------------------------------------- /include/cpu/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/ops.h -------------------------------------------------------------------------------- /include/cpu/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpu/simd.h -------------------------------------------------------------------------------- /include/cpuapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/cpuapi.h -------------------------------------------------------------------------------- /include/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/devices.h -------------------------------------------------------------------------------- /include/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/display.h -------------------------------------------------------------------------------- /include/drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/drive.h -------------------------------------------------------------------------------- /include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/io.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/net.h -------------------------------------------------------------------------------- /include/pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/pc.h -------------------------------------------------------------------------------- /include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/platform.h -------------------------------------------------------------------------------- /include/softfloat/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/config.h -------------------------------------------------------------------------------- /include/softfloat/fpu-constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/fpu-constants.h -------------------------------------------------------------------------------- /include/softfloat/softfloat-compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/softfloat-compare.h -------------------------------------------------------------------------------- /include/softfloat/softfloat-constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/softfloat-constants.h -------------------------------------------------------------------------------- /include/softfloat/softfloat-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/softfloat-macros.h -------------------------------------------------------------------------------- /include/softfloat/softfloat-round-pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/softfloat-round-pack.h -------------------------------------------------------------------------------- /include/softfloat/softfloat-specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/softfloat-specialize.h -------------------------------------------------------------------------------- /include/softfloat/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/softfloat.h -------------------------------------------------------------------------------- /include/softfloat/softfloatx80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/softfloat/softfloatx80.h -------------------------------------------------------------------------------- /include/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/state.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/include/util.h -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/index.html -------------------------------------------------------------------------------- /lib/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/lib/jszip.min.js -------------------------------------------------------------------------------- /lib/pako_inflate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/lib/pako_inflate.min.js -------------------------------------------------------------------------------- /libhalfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/libhalfix.js -------------------------------------------------------------------------------- /makefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/makefile.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/readme.md -------------------------------------------------------------------------------- /runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/runtime.js -------------------------------------------------------------------------------- /src/cpu/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/access.c -------------------------------------------------------------------------------- /src/cpu/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/cpu.c -------------------------------------------------------------------------------- /src/cpu/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/decoder.c -------------------------------------------------------------------------------- /src/cpu/eflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/eflags.c -------------------------------------------------------------------------------- /src/cpu/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/fpu.c -------------------------------------------------------------------------------- /src/cpu/libcpu-stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/libcpu-stubs.c -------------------------------------------------------------------------------- /src/cpu/libcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/libcpu.c -------------------------------------------------------------------------------- /src/cpu/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/mmu.c -------------------------------------------------------------------------------- /src/cpu/opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/opcodes.c -------------------------------------------------------------------------------- /src/cpu/ops/arith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/arith.c -------------------------------------------------------------------------------- /src/cpu/ops/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/bit.c -------------------------------------------------------------------------------- /src/cpu/ops/ctrlflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/ctrlflow.c -------------------------------------------------------------------------------- /src/cpu/ops/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/io.c -------------------------------------------------------------------------------- /src/cpu/ops/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/misc.c -------------------------------------------------------------------------------- /src/cpu/ops/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/simd.c -------------------------------------------------------------------------------- /src/cpu/ops/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/stack.c -------------------------------------------------------------------------------- /src/cpu/ops/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/ops/string.c -------------------------------------------------------------------------------- /src/cpu/prot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/prot.c -------------------------------------------------------------------------------- /src/cpu/seg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/seg.c -------------------------------------------------------------------------------- /src/cpu/smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/smc.c -------------------------------------------------------------------------------- /src/cpu/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/softfloat.c -------------------------------------------------------------------------------- /src/cpu/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/cpu/trace.c -------------------------------------------------------------------------------- /src/display-gtk3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/display-gtk3.c -------------------------------------------------------------------------------- /src/display-tui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/display-tui.c -------------------------------------------------------------------------------- /src/display-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/display-win32.c -------------------------------------------------------------------------------- /src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/display.c -------------------------------------------------------------------------------- /src/drive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/drive.c -------------------------------------------------------------------------------- /src/emscripten/emscripten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/emscripten/emscripten.c -------------------------------------------------------------------------------- /src/hardware/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/acpi.c -------------------------------------------------------------------------------- /src/hardware/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/apic.c -------------------------------------------------------------------------------- /src/hardware/cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/cmos.c -------------------------------------------------------------------------------- /src/hardware/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/dma.c -------------------------------------------------------------------------------- /src/hardware/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/fdc.c -------------------------------------------------------------------------------- /src/hardware/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/ide.c -------------------------------------------------------------------------------- /src/hardware/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/ioapic.c -------------------------------------------------------------------------------- /src/hardware/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/kbd.c -------------------------------------------------------------------------------- /src/hardware/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/ne2000.c -------------------------------------------------------------------------------- /src/hardware/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/pci.c -------------------------------------------------------------------------------- /src/hardware/pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/pic.c -------------------------------------------------------------------------------- /src/hardware/pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/pit.c -------------------------------------------------------------------------------- /src/hardware/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/hardware/vga.c -------------------------------------------------------------------------------- /src/host/net-none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/host/net-none.c -------------------------------------------------------------------------------- /src/host/net-pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/host/net-pcap.c -------------------------------------------------------------------------------- /src/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/ini.c -------------------------------------------------------------------------------- /src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/io.c -------------------------------------------------------------------------------- /src/kvm/kvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/kvm/kvm.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/main.c -------------------------------------------------------------------------------- /src/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/pc.c -------------------------------------------------------------------------------- /src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/state.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/src/util.c -------------------------------------------------------------------------------- /tools/autogen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/autogen.js -------------------------------------------------------------------------------- /tools/autogen_bit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/autogen_bit.js -------------------------------------------------------------------------------- /tools/autogen_jcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/autogen_jcc.js -------------------------------------------------------------------------------- /tools/autogen_savestate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/autogen_savestate.js -------------------------------------------------------------------------------- /tools/autogen_string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/autogen_string.js -------------------------------------------------------------------------------- /tools/ftable-lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/ftable-lookup.js -------------------------------------------------------------------------------- /tools/imgsplit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/imgsplit.js -------------------------------------------------------------------------------- /tools/opcode-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/opcode-list.js -------------------------------------------------------------------------------- /tools/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/readme -------------------------------------------------------------------------------- /tools/savestate_format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/tools/savestate_format.js -------------------------------------------------------------------------------- /vgabios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nepx/halfix/HEAD/vgabios.bin --------------------------------------------------------------------------------