├── .gitattributes ├── .gitignore ├── README.md ├── SR-games ├── Albion │ └── SR │ │ ├── SR.cfg │ │ ├── arm │ │ ├── displaced_labels.sci │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ ├── instruction_replacements_FPU.sci │ │ ├── noret_procedures.sci │ │ └── unaligned_ebp_areas.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ ├── displaced_labels.sci │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ ├── instruction_replacements_FPU.sci │ │ ├── noret_procedures.sci │ │ └── unaligned_ebp_areas.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ ├── asm_inout.inc │ │ ├── asm_int.inc │ │ ├── asm_xti.inc │ │ ├── code_dos.inc │ │ ├── code_linux.inc │ │ ├── code_win32.inc │ │ ├── data_all.inc │ │ ├── displaced_labels.sci │ │ ├── extern.inc │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ ├── instruction_replacements_FPU.sci │ │ ├── macros.inc │ │ ├── misc.inc │ │ ├── noret_procedures.sci │ │ └── x86inc.inc ├── README.md ├── Warcraft │ ├── SR-cd-gog │ │ ├── SR.cfg │ │ ├── arm │ │ │ ├── code16_areas.sci │ │ │ ├── displaced_labels.sci │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ └── unaligned_ebp_areas.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ │ ├── code16_areas.sci │ │ │ ├── displaced_labels.sci │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ └── unaligned_ebp_areas.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── code16_areas.sci │ │ │ ├── code_dos.inc │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── displaced_labels.sci │ │ │ ├── extern.inc │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ └── x86inc.inc │ ├── SR-cd │ │ ├── SR.cfg │ │ ├── arm │ │ │ ├── code16_areas.sci │ │ │ ├── displaced_labels.sci │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ └── unaligned_ebp_areas.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ │ ├── code16_areas.sci │ │ │ ├── displaced_labels.sci │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ └── unaligned_ebp_areas.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── code16_areas.sci │ │ │ ├── code_dos.inc │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── displaced_labels.sci │ │ │ ├── extern.inc │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ └── x86inc.inc │ └── SR │ │ ├── SR.cfg │ │ ├── arm │ │ ├── code16_areas.sci │ │ ├── displaced_labels.sci │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ └── unaligned_ebp_areas.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ ├── code16_areas.sci │ │ ├── displaced_labels.sci │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ └── unaligned_ebp_areas.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ ├── asm_inout.inc │ │ ├── asm_int.inc │ │ ├── asm_xti.inc │ │ ├── code16_areas.sci │ │ ├── code_dos.inc │ │ ├── code_linux.inc │ │ ├── code_win32.inc │ │ ├── data_all.inc │ │ ├── displaced_labels.sci │ │ ├── extern.inc │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_replacements.sci │ │ ├── macros.inc │ │ ├── misc.inc │ │ └── x86inc.inc ├── X-Com - Terror from the Deep │ ├── SR1-gog │ │ ├── SR.cfg │ │ ├── arm │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── instruction_replacements_FPU.sci │ │ │ └── noret_procedures.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── instruction_replacements_FPU.sci │ │ │ └── noret_procedures.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── instruction_replacements_FPU.sci │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ ├── noret_procedures.sci │ │ │ └── x86inc.inc │ ├── SR1 │ │ ├── SR.cfg │ │ ├── arm │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── instruction_replacements_FPU.sci │ │ │ └── noret_procedures.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── instruction_replacements_FPU.sci │ │ │ └── noret_procedures.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_do_not_interpret_as_code.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── instruction_replacements_FPU.sci │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ ├── noret_procedures.sci │ │ │ └── x86inc.inc │ ├── SR2-gog │ │ ├── SR.cfg │ │ ├── arm │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ └── instruction_replacements.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_flags.sci │ │ │ └── instruction_replacements.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── code_dos.inc │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── instruction_replacements.sci │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ └── x86inc.inc │ └── SR2 │ │ ├── SR.cfg │ │ ├── arm │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ └── instruction_replacements.sci │ │ ├── bssborder.csv │ │ ├── build-arm.sh │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_arm.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ └── instruction_replacements.sci │ │ ├── repair_short_jumps.py │ │ └── x86 │ │ ├── asm_inout.inc │ │ ├── asm_int.inc │ │ ├── asm_xti.inc │ │ ├── code_dos.inc │ │ ├── code_linux.inc │ │ ├── code_win32.inc │ │ ├── data_all.inc │ │ ├── extern.inc │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_replacements.sci │ │ ├── macros.inc │ │ ├── misc.inc │ │ └── x86inc.inc └── X-Com - Ufo Defense │ ├── SR1 │ ├── SR.cfg │ ├── arm │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ ├── instruction_replacements_FPU.sci │ │ └── noret_procedures.sci │ ├── bssborder.csv │ ├── build-arm.sh │ ├── build-llasm.sh │ ├── build-x86.sh │ ├── compact_source.py │ ├── compact_source_arm.py │ ├── compact_source_llasm.py │ ├── llasm │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ ├── instruction_replacements_FPU.sci │ │ └── noret_procedures.sci │ ├── repair_short_jumps.py │ └── x86 │ │ ├── asm_inout.inc │ │ ├── asm_int.inc │ │ ├── asm_xti.inc │ │ ├── code_linux.inc │ │ ├── code_win32.inc │ │ ├── data_all.inc │ │ ├── extern.inc │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_replacements.sci │ │ ├── instruction_replacements_FPU.sci │ │ ├── macros.inc │ │ ├── misc.inc │ │ ├── noret_procedures.sci │ │ └── x86inc.inc │ ├── SR2 │ ├── SR.cfg │ ├── arm │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ └── instruction_replacements.sci │ ├── bssborder.csv │ ├── build-arm.sh │ ├── build-llasm.sh │ ├── build-x86.sh │ ├── compact_source.py │ ├── compact_source_arm.py │ ├── compact_source_llasm.py │ ├── llasm │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_flags.sci │ │ └── instruction_replacements.sci │ ├── repair_short_jumps.py │ └── x86 │ │ ├── asm_inout.inc │ │ ├── asm_int.inc │ │ ├── asm_xti.inc │ │ ├── code_dos.inc │ │ ├── code_linux.inc │ │ ├── code_win32.inc │ │ ├── data_all.inc │ │ ├── extern.inc │ │ ├── external_procedures.sci │ │ ├── fixup_do_not_interpret_as_code.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── global_aliases.sci │ │ ├── instruction_replacements.sci │ │ ├── macros.inc │ │ ├── misc.inc │ │ └── x86inc.inc │ └── SR3 │ ├── SR.cfg │ ├── arm │ ├── external_procedures.sci │ ├── fixup_interpret_as_code.sci │ ├── global_aliases.sci │ ├── instruction_flags.sci │ └── instruction_replacements.sci │ ├── bssborder.csv │ ├── build-arm.sh │ ├── build-llasm.sh │ ├── build-x86.sh │ ├── compact_source.py │ ├── compact_source_arm.py │ ├── compact_source_llasm.py │ ├── llasm │ ├── external_procedures.sci │ ├── fixup_interpret_as_code.sci │ ├── global_aliases.sci │ └── instruction_replacements.sci │ ├── repair_short_jumps.py │ └── x86 │ ├── asm_inout.inc │ ├── asm_int.inc │ ├── asm_xti.inc │ ├── code_linux.inc │ ├── code_win32.inc │ ├── data_all.inc │ ├── extern.inc │ ├── external_procedures.sci │ ├── fixup_interpret_as_code.sci │ ├── global_aliases.sci │ ├── instruction_replacements.sci │ ├── macros.inc │ ├── misc.inc │ └── x86inc.inc ├── SR ├── README.md ├── SConstruct ├── SR_basic.c ├── SR_defs.h ├── SR_full.c ├── SR_full_arm.c ├── SR_full_arm_instr.c ├── SR_full_arm_instr_helper.h ├── SR_full_dos.c ├── SR_full_llasm.c ├── SR_full_llasm_instr.c ├── SR_full_llasm_instr_helper.h ├── SR_full_win32.c ├── SR_full_x64.c ├── SR_full_x64_instr.c ├── SR_loader.c ├── SR_main.c ├── SR_output.c ├── SR_source_code_information.c ├── SR_vars.h ├── arm-support │ ├── SR-proc-divide.c │ ├── SR-proc-divide.h │ ├── SR-proc-float.c │ ├── SR-proc-float.h │ ├── arm.inc │ ├── armconf.inc │ ├── arminc.inc │ ├── asm_divide.inc │ ├── asm_divide.s │ ├── asm_float.inc │ ├── asm_float.s │ ├── asm_float_macros.inc │ ├── asm_inout.inc │ ├── asm_inout.s │ ├── asm_int.inc │ ├── asm_int.s │ ├── asm_mem_access.inc │ ├── asm_mem_access.s │ ├── asm_movmem.inc │ ├── asm_movmem.s │ ├── asm_movs.inc │ ├── asm_movs.s │ ├── asm_pushx.inc │ ├── asm_pushx.s │ ├── asm_stos.inc │ ├── asm_stos.s │ └── asm_xti.inc ├── container_helpers.cpp ├── container_helpers.h ├── judy_helpers.c ├── judy_helpers.h ├── llasm-support │ ├── llasm.llinc │ ├── llasm_cmps.c │ ├── llasm_cmps.llinc │ ├── llasm_cpu.h │ ├── llasm_divide.c │ ├── llasm_divide.llinc │ ├── llasm_float.c │ ├── llasm_float.llinc │ ├── llasm_fs_mem.c │ ├── llasm_fs_mem.llinc │ ├── llasm_inout.c │ ├── llasm_inout.llinc │ ├── llasm_int.c │ ├── llasm_int.llinc │ ├── llasm_movmem.c │ ├── llasm_movmem.llinc │ ├── llasm_movs.c │ ├── llasm_movs.llinc │ ├── llasm_pushx.c │ ├── llasm_pushx.llinc │ ├── llasm_scas.c │ ├── llasm_scas.llinc │ ├── llasm_stos.c │ ├── llasm_stos.llinc │ └── llasm_xti.llinc ├── udis86-1.6 │ ├── CHANGES │ ├── COPYING │ ├── LICENSE │ ├── Makefile.in │ ├── Makefile.win32 │ ├── README │ ├── config.h.in │ ├── configure │ ├── configure.in │ ├── docs │ │ ├── doc.html │ │ ├── index.html │ │ ├── ss.jpg │ │ └── style.css │ ├── install-sh │ ├── libudis86 │ │ ├── Makefile.in │ │ ├── Makefile.standalone │ │ ├── Makefile.win32 │ │ ├── decode.c │ │ ├── extern.h │ │ ├── input.c │ │ ├── input.h │ │ ├── mnemonics.c │ │ ├── mnemonics.dat │ │ ├── mnemonics.h │ │ ├── mnemonics.pl │ │ ├── opcmap.c │ │ ├── opcmap.h │ │ ├── syn-att.c │ │ ├── syn-intel.c │ │ ├── syn.c │ │ ├── syn.h │ │ ├── types.h │ │ └── udis86.c │ ├── mkinstalldirs │ ├── tests │ │ ├── Makefile │ │ ├── Makefile.win32 │ │ ├── bufovrrun.c │ │ ├── gen.c │ │ ├── randtest.raw │ │ ├── randtest16.ref │ │ ├── randtest32.ref │ │ ├── randtest64.ref │ │ ├── test16.asm │ │ ├── test32.asm │ │ ├── test64.asm │ │ ├── testjmp.asm │ │ └── testjmp.ref │ ├── udcli │ │ ├── Makefile.in │ │ ├── Makefile.win32 │ │ └── udcli.c │ └── udis86.h ├── udis86_dep.c ├── udis86_dep.h ├── x64-support │ ├── asm_call.inc │ ├── asm_fs_mem.asm │ ├── asm_fs_mem.inc │ ├── asm_inout.asm │ ├── asm_inout.inc │ ├── asm_int.asm │ ├── asm_int.inc │ ├── asm_movmem.asm │ ├── asm_movmem.inc │ ├── asm_pushx.inc │ ├── asm_unwind.inc │ ├── asm_xahf.inc │ ├── asm_xti.inc │ ├── x64_stack.h │ └── x64inc.inc └── x86-support │ ├── asm_inout.asm │ ├── asm_inout.inc │ ├── asm_int.asm │ ├── asm_int.inc │ ├── asm_movmem.asm │ ├── asm_movmem.inc │ ├── asm_xti.inc │ └── x86inc.inc ├── SR64-loader ├── SR64-loader.c ├── komp-arm64.sh ├── komp-x64.sh ├── start-arm64.S ├── start-x64.S ├── syscall-arm64.c ├── syscall-x64.c └── syscall64.h ├── SRW-games ├── Battle Isle 3 │ ├── SRW-ms_figtr │ │ ├── SR.cfg │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── ignored_areas.sci │ │ │ └── instruction_replacements.sci │ │ └── x86 │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── ignored_areas.sci │ │ │ └── instruction_replacements.sci │ ├── SRW-sdi_1r │ │ ├── SR.cfg │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ │ ├── displaced_labels.sci │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── ignored_areas.sci │ │ │ └── instruction_replacements.sci │ │ └── x86 │ │ │ ├── displaced_labels.sci │ │ │ ├── external_procedures.sci │ │ │ ├── fixup_interpret_as_code.sci │ │ │ ├── global_aliases.sci │ │ │ ├── ignored_areas.sci │ │ │ └── instruction_replacements.sci │ └── SRW-wc_figtr │ │ ├── SR.cfg │ │ ├── build-llasm.sh │ │ ├── build-x86.sh │ │ ├── compact_source.py │ │ ├── compact_source_llasm.py │ │ ├── llasm │ │ ├── displaced_labels.sci │ │ ├── external_procedures.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── ignored_areas.sci │ │ ├── instruction_flags.sci │ │ ├── instruction_replacements.sci │ │ └── unaligned_ebp_areas.sci │ │ └── x86 │ │ ├── displaced_labels.sci │ │ ├── extern.inc │ │ ├── external_procedures.sci │ │ ├── fixup_interpret_as_code.sci │ │ ├── ignored_areas.sci │ │ ├── instruction_replacements.sci │ │ ├── misc.inc │ │ └── x86inc.inc ├── README.md └── Septerra Core │ └── SRW │ ├── SR.cfg │ ├── bssborder.csv │ ├── build-llasm.sh │ ├── build-x86.sh │ ├── compact_source.py │ ├── compact_source_llasm.py │ ├── llasm │ ├── displaced_labels.sci │ ├── external_procedures.sci │ ├── fixup_interpret_as_code.sci │ ├── global_aliases.sci │ ├── ignored_areas.sci │ ├── instruction_flags.sci │ ├── instruction_replacements.sci │ ├── instruction_replacements_FPU.sci │ └── noret_procedures.sci │ ├── relocations.csv │ ├── repair_short_jumps.py │ └── x86 │ ├── displaced_labels.sci │ ├── extern.inc │ ├── external_procedures.sci │ ├── fixup_interpret_as_code.sci │ ├── global_aliases.sci │ ├── ignored_areas.sci │ ├── instruction_replacements.sci │ ├── misc.inc │ ├── noret_procedures.sci │ └── x86inc.inc ├── SRW ├── README.md ├── SConstruct ├── SRW_loader.c ├── SR_basic.c ├── SR_defs.h ├── SR_full.c ├── SR_full_dos.c ├── SR_full_llasm.c ├── SR_full_llasm_instr.c ├── SR_full_llasm_instr_helper.h ├── SR_full_win32.c ├── SR_full_x64.c ├── SR_full_x64_instr.c ├── SR_main.c ├── SR_output.c ├── SR_source_code_information.c ├── SR_vars.h ├── container_helpers.cpp ├── container_helpers.h ├── judy_helpers.c ├── judy_helpers.h ├── udis86-1.7.2 │ ├── ._INSTALL │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── build │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ └── missing │ ├── config.h.in │ ├── configure │ ├── configure.ac │ ├── docs │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── manual │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── conf.py │ │ │ ├── getstarted.rst │ │ │ ├── index.rst │ │ │ ├── libudis86.rst │ │ │ ├── static │ │ │ │ └── udis86.css │ │ │ └── udis86.info │ │ └── x86 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── optable.xml │ │ │ └── optable.xsl │ ├── libudis86 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── decode.c │ │ ├── decode.h │ │ ├── extern.h │ │ ├── itab.c │ │ ├── itab.h │ │ ├── syn-att.c │ │ ├── syn-intel.c │ │ ├── syn.c │ │ ├── syn.h │ │ ├── types.h │ │ ├── udint.h │ │ └── udis86.c │ ├── m4 │ │ ├── ax_compare_version.m4 │ │ ├── ax_prog_sphinx_version.m4 │ │ ├── ax_prog_yasm_version.m4 │ │ ├── ax_with_prog.m4 │ │ └── ax_with_python.m4 │ ├── scripts │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ud_itab.py │ │ ├── ud_opcode.py │ │ └── ud_optable.py │ ├── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asm │ │ │ ├── 16 │ │ │ │ ├── disp.asm │ │ │ │ └── test16.asm │ │ │ ├── 32 │ │ │ │ ├── att.asm │ │ │ │ ├── att.asm.Sref │ │ │ │ ├── att.asm.ref │ │ │ │ ├── corner.asm │ │ │ │ ├── corner.asm.ref │ │ │ │ ├── disp.asm │ │ │ │ ├── disp.asm.Sref │ │ │ │ ├── invalid_seg.asm │ │ │ │ ├── invalid_seg.asm.ref │ │ │ │ ├── obscure.asm │ │ │ │ ├── obscure.asm.ref │ │ │ │ ├── reljmp.asm │ │ │ │ ├── reljmp.asm.ref │ │ │ │ ├── sext.asm │ │ │ │ ├── sext.asm.ref │ │ │ │ └── test32.asm │ │ │ └── 64 │ │ │ │ ├── amd │ │ │ │ ├── invalid.asm │ │ │ │ └── invalid.asm.ref │ │ │ │ ├── branch.asm │ │ │ │ ├── branch.asm.ref │ │ │ │ ├── disp.asm │ │ │ │ ├── disp.asm.Sref │ │ │ │ ├── disp.asm.ref │ │ │ │ ├── intel │ │ │ │ ├── invalid.asm │ │ │ │ └── invalid.asm.ref │ │ │ │ ├── reljmp.asm │ │ │ │ ├── reljmp.asm.ref │ │ │ │ ├── sext.asm │ │ │ │ ├── sext.asm.ref │ │ │ │ └── test64.asm │ │ ├── bufoverrun.c │ │ ├── difftest.sh.in │ │ ├── installcheck.c │ │ ├── libcheck.c │ │ ├── oprgen.py │ │ ├── symresolve.c │ │ └── symresolve.ref │ ├── udcli │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── udcli.c │ └── udis86.h ├── udis86_dep.c ├── udis86_dep.h └── x86-support │ ├── asm_fs_mem.asm │ └── x86inc.inc ├── games ├── Albion │ ├── SR-Main │ │ ├── Albion-3dengine.c │ │ ├── Albion-AIL.c │ │ ├── Albion-AIL.h │ │ ├── Albion-BBBASMEM.c │ │ ├── Albion-BBBASMEM.h │ │ ├── Albion-BBDOS.c │ │ ├── Albion-BBDOS.h │ │ ├── Albion-BBERROR.c │ │ ├── Albion-BBERROR.h │ │ ├── Albion-BBOPM.c │ │ ├── Albion-BBOPM.h │ │ ├── Albion-inout.c │ │ ├── Albion-inout.h │ │ ├── Albion-int.c │ │ ├── Albion-int.h │ │ ├── Albion-int2.c │ │ ├── Albion-int2.h │ │ ├── Albion-int3.c │ │ ├── Albion-int3.h │ │ ├── Albion-music-midiplugin.c │ │ ├── Albion-music-midiplugin.h │ │ ├── Albion-music-midiplugin2.c │ │ ├── Albion-music-midiplugin2.h │ │ ├── Albion-music-xmiplayer.c │ │ ├── Albion-music-xmiplayer.h │ │ ├── Albion-music.c │ │ ├── Albion-music.h │ │ ├── Albion-out2.c │ │ ├── Albion-out2.h │ │ ├── Albion-proc-events.c │ │ ├── Albion-proc-events.h │ │ ├── Albion-proc-float.c │ │ ├── Albion-proc-float.h │ │ ├── Albion-proc-vfs.c │ │ ├── Albion-proc-vfs.h │ │ ├── Albion-proc.c │ │ ├── Albion-proc.h │ │ ├── Albion-screenshot.c │ │ ├── Albion-smk.c │ │ ├── Albion-smk.h │ │ ├── Albion-sound.c │ │ ├── Albion-sound.h │ │ ├── Albion-timer.c │ │ ├── Albion-timer.h │ │ ├── Game-int.h │ │ ├── Game-int2.h │ │ ├── Game-int3.h │ │ ├── Game_config.c │ │ ├── Game_config.h │ │ ├── Game_defs.h │ │ ├── Game_misc.c │ │ ├── Game_misc.h │ │ ├── Game_scalerplugin.c │ │ ├── Game_scalerplugin.h │ │ ├── Game_thread.c │ │ ├── Game_thread.h │ │ ├── Game_vars.h │ │ ├── Game_virtualkeyboard.c │ │ ├── Game_virtualkeyboard.h │ │ ├── SConstruct │ │ ├── VKfont1.h │ │ ├── VKfont2.h │ │ ├── arm │ │ │ ├── Albion-3dengineprocs.s │ │ │ ├── Game-asm.s │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.inc │ │ │ ├── SR-asm-calls.s │ │ │ ├── SR-asm.s │ │ │ ├── SR-proc-divide.c │ │ │ ├── SR-proc-divide.h │ │ │ ├── arm.inc │ │ │ ├── armconf.inc │ │ │ ├── arminc.inc │ │ │ ├── asm_divide.inc │ │ │ ├── asm_divide.s │ │ │ ├── asm_inout.inc │ │ │ ├── asm_inout.s │ │ │ ├── asm_int.inc │ │ │ ├── asm_int.s │ │ │ ├── asm_mem_access.inc │ │ │ ├── asm_mem_access.s │ │ │ ├── asm_movs.inc │ │ │ ├── asm_movs.s │ │ │ ├── asm_pushx.inc │ │ │ ├── asm_pushx.s │ │ │ ├── asm_stos.inc │ │ │ ├── asm_stos.s │ │ │ ├── asm_xti.inc │ │ │ ├── code_armlinux.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── macros.inc │ │ │ └── misc.inc │ │ ├── audio.h │ │ ├── audio │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── pandora.c │ │ │ └── pc.c │ │ ├── display.h │ │ ├── display │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── overlay.h │ │ │ ├── palette16bgra.h │ │ │ ├── palette32bgra.h │ │ │ ├── palettecommon.h │ │ │ ├── pandora.c │ │ │ └── pc.c │ │ ├── input.h │ │ ├── input │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── pandora.c │ │ │ ├── pc.c │ │ │ └── pyra.c │ │ ├── llasm │ │ │ ├── CLIB-proc-llasm.c │ │ │ ├── CLIB-proc-llasm.h │ │ │ ├── Game-asm.c │ │ │ ├── Game-llasm.llasm │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.llasm │ │ │ ├── SR-asm-calls.llinc │ │ │ ├── SR-asm.c │ │ │ ├── asm-cpu.c │ │ │ ├── extern.llinc │ │ │ ├── llasm.llinc │ │ │ ├── llasm_cpu.h │ │ │ ├── llasm_divide.c │ │ │ ├── llasm_divide.llinc │ │ │ ├── llasm_inout.c │ │ │ ├── llasm_inout.llinc │ │ │ ├── llasm_int.c │ │ │ ├── llasm_int.llinc │ │ │ ├── llasm_movs.c │ │ │ ├── llasm_movs.llinc │ │ │ ├── llasm_pushx.c │ │ │ ├── llasm_pushx.llinc │ │ │ ├── llasm_stos.c │ │ │ ├── llasm_stos.llinc │ │ │ ├── llasm_xti.llinc │ │ │ ├── macros.llinc │ │ │ ├── printf_x86.c │ │ │ └── printf_x86.h │ │ ├── main.c │ │ ├── main.h │ │ ├── midi-plugins.h │ │ ├── midi-plugins2.h │ │ ├── ptr32.h │ │ ├── scaler-plugins.h │ │ ├── smack.c │ │ ├── smack.h │ │ ├── virtualfs.c │ │ ├── virtualfs.h │ │ ├── x86 │ │ │ ├── Albion-3dengineprocs.asm │ │ │ ├── Game-asm.asm │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.asm │ │ │ ├── SR-asm-calls.inc │ │ │ ├── SR-asm.asm │ │ │ ├── asm_inout.asm │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.asm │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ └── x86inc.inc │ │ ├── xmi2mid.c │ │ └── xmi2mid.h │ ├── release │ │ ├── linux │ │ │ ├── Albion-setup.sh │ │ │ ├── Albion.cfg │ │ │ ├── Albion.sh │ │ │ ├── arm-aarch64 │ │ │ │ └── readme-Linux.txt │ │ │ ├── armv7-gnueabihf │ │ │ │ └── readme-Linux.txt │ │ │ ├── readme-Linux.txt │ │ │ └── x64 │ │ │ │ └── readme-Linux.txt │ │ └── windows │ │ │ ├── Albion.cfg │ │ │ ├── Albion.cmd │ │ │ └── readme-Windows.txt │ └── smk_play │ │ ├── SConstruct │ │ ├── main1.c │ │ ├── smack.c │ │ ├── smack.h │ │ └── smk_defs.h ├── Battle Isle 3 │ ├── SR-BI3 │ │ ├── BBAVI.c │ │ ├── BBAVI.h │ │ ├── BBBLEV.c │ │ ├── BBBLEV.h │ │ ├── BBDBG.c │ │ ├── BBDBG.h │ │ ├── BBDEPACK.c │ │ ├── BBDEPACK.h │ │ ├── BBDOS.c │ │ ├── BBDOS.h │ │ ├── BBDSA.c │ │ ├── BBDSA.h │ │ ├── BBFX.c │ │ ├── BBFX.h │ │ ├── BBLBL.c │ │ ├── BBLBL.h │ │ ├── BBLBM.c │ │ ├── BBLBM.h │ │ ├── BBLL.c │ │ ├── BBLL.h │ │ ├── BBMEM.c │ │ ├── BBMEM.h │ │ ├── BBOPM.c │ │ ├── BBOPM.h │ │ ├── BBRNG.c │ │ ├── BBRNG.h │ │ ├── BBSYSTEM.c │ │ ├── BBSYSTEM.h │ │ ├── BBTOOL.c │ │ ├── BBTOOL.h │ │ ├── BBTXT.c │ │ ├── BBTXT.h │ │ ├── CLIB.c │ │ ├── CLIB.h │ │ ├── FGT.c │ │ ├── FGT.h │ │ ├── Game-Config.c │ │ ├── Game-Config.h │ │ ├── Game-Display.c │ │ ├── Game-Display.h │ │ ├── SConstruct │ │ ├── SDI.c │ │ ├── SDI.h │ │ ├── SDIcmdline.c │ │ ├── SDIcmdline.h │ │ ├── SDImidi.c │ │ ├── SDImidi.h │ │ ├── SDIresource.c │ │ ├── SDIresource.h │ │ ├── SDIvideo.c │ │ ├── SDIvideo.h │ │ ├── WinApi-gdi32.c │ │ ├── WinApi-gdi32.h │ │ ├── WinApi-kernel32.c │ │ ├── WinApi-kernel32.h │ │ ├── WinApi-user32.c │ │ ├── WinApi-user32.h │ │ ├── WinApi-wing32.c │ │ ├── WinApi-wing32.h │ │ ├── WinApi-winmm.c │ │ ├── WinApi-winmm.h │ │ ├── llasm │ │ │ ├── BASELIBR.llasm │ │ │ ├── BBAVI-asm.llasm │ │ │ ├── BBBLEV-asm.llasm │ │ │ ├── BBDBG-asm.llasm │ │ │ ├── BBDEPACK-asm.llasm │ │ │ ├── BBDOS-asm.llasm │ │ │ ├── BBDSA-asm.llasm │ │ │ ├── BBFX-asm.llasm │ │ │ ├── BBLBL-asm.llasm │ │ │ ├── BBLBM-asm.llasm │ │ │ ├── BBLL-asm.llasm │ │ │ ├── BBMEM-asm.llasm │ │ │ ├── BBOPM-asm.llasm │ │ │ ├── BBRNG-asm.llasm │ │ │ ├── BBSYSTEM-asm.llasm │ │ │ ├── BBTOOL-asm.llasm │ │ │ ├── BBTXT-asm.llasm │ │ │ ├── CLIB-asm-llasm.c │ │ │ ├── CLIB-asm-llasm.h │ │ │ ├── CLIB-asm.llasm │ │ │ ├── FGT-asm.llasm │ │ │ ├── SConscript │ │ │ ├── SDI-asm.llasm │ │ │ ├── SDIcmdline-asm.llasm │ │ │ ├── SDImidi-asm.llasm │ │ │ ├── SDIvideo-asm.llasm │ │ │ ├── WinApi-gdi32-asm.llasm │ │ │ ├── WinApi-kernel32-asm.llasm │ │ │ ├── WinApi-user32-asm-llasm.c │ │ │ ├── WinApi-user32-asm-llasm.h │ │ │ ├── WinApi-user32-asm.llasm │ │ │ ├── WinApi-winmm-asm.llasm │ │ │ ├── X86_FS_mem.c │ │ │ ├── asm-calls.llinc │ │ │ ├── asm-cpu.c │ │ │ ├── llasm.llinc │ │ │ ├── llasm_cpu.h │ │ │ ├── llasm_divide.c │ │ │ ├── llasm_divide.llinc │ │ │ ├── llasm_float.c │ │ │ ├── llasm_float.llinc │ │ │ ├── llasm_fs_mem.c │ │ │ ├── llasm_fs_mem.llinc │ │ │ ├── llasm_movs.c │ │ │ ├── llasm_movs.llinc │ │ │ ├── llasm_pushx.c │ │ │ ├── llasm_pushx.llinc │ │ │ ├── llasm_stos.c │ │ │ ├── llasm_stos.llinc │ │ │ ├── macros.llinc │ │ │ ├── main-asm.c │ │ │ ├── ms_figtr │ │ │ │ └── extern.llinc │ │ │ ├── printf_x86.c │ │ │ ├── printf_x86.h │ │ │ ├── sdi_1r │ │ │ │ └── extern.llinc │ │ │ └── wc_figtr │ │ │ │ └── extern.llinc │ │ ├── main.c │ │ ├── midi-plugins.h │ │ ├── midi-plugins2.h │ │ ├── platform.h │ │ └── x86 │ │ │ ├── BASELIBR.asm │ │ │ ├── BBAVI-asm.asm │ │ │ ├── BBBLEV-asm.asm │ │ │ ├── BBDBG-asm.asm │ │ │ ├── BBDEPACK-asm.asm │ │ │ ├── BBDOS-asm.asm │ │ │ ├── BBDSA-asm.asm │ │ │ ├── BBFX-asm.asm │ │ │ ├── BBLBL-asm.asm │ │ │ ├── BBLBM-asm.asm │ │ │ ├── BBLL-asm.asm │ │ │ ├── BBMEM-asm.asm │ │ │ ├── BBOPM-asm.asm │ │ │ ├── BBRNG-asm.asm │ │ │ ├── BBSYSTEM-asm.asm │ │ │ ├── BBTOOL-asm.asm │ │ │ ├── BBTXT-asm.asm │ │ │ ├── CLIB-asm-x86.c │ │ │ ├── CLIB-asm-x86.h │ │ │ ├── CLIB-asm.asm │ │ │ ├── FGT-asm.asm │ │ │ ├── SConscript │ │ │ ├── SDI-asm.asm │ │ │ ├── SDIcmdline-asm.asm │ │ │ ├── SDImidi-asm.asm │ │ │ ├── SDIvideo-asm.asm │ │ │ ├── WinApi-gdi32-asm.asm │ │ │ ├── WinApi-kernel32-asm.asm │ │ │ ├── WinApi-user32-asm-x86.c │ │ │ ├── WinApi-user32-asm-x86.h │ │ │ ├── WinApi-user32-asm.asm │ │ │ ├── WinApi-winmm-asm.asm │ │ │ ├── X86_FS_mem.c │ │ │ ├── asm-calls.inc │ │ │ ├── asm_fs_mem.asm │ │ │ ├── main-asm.asm │ │ │ ├── misc.inc │ │ │ ├── ms_figtr │ │ │ ├── SConscript │ │ │ └── extern.inc │ │ │ ├── sdi_1r │ │ │ ├── SConscript │ │ │ └── extern.inc │ │ │ ├── wc_figtr │ │ │ ├── SConscript │ │ │ └── extern.inc │ │ │ └── x86inc.inc │ └── release │ │ ├── SDI.INI │ │ ├── linux │ │ ├── BI3.cfg │ │ ├── BattleIsle3.sh │ │ └── readme-Linux.txt │ │ └── windows │ │ ├── BI3.cfg │ │ ├── BattleIsle3.cmd │ │ └── readme-Windows.txt ├── README.md ├── Septerra Core │ ├── SR-Septerra │ │ ├── CLIB.c │ │ ├── CLIB.h │ │ ├── Game-Config.c │ │ ├── Game-Config.h │ │ ├── Game-DataFiles.c │ │ ├── Game-DataFiles.h │ │ ├── Game-Main.c │ │ ├── Game-Patch.c │ │ ├── Game-Patch.h │ │ ├── Game-Registry.c │ │ ├── Game-Registry.h │ │ ├── Game-SoundEngine.c │ │ ├── Game-SoundEngine.h │ │ ├── MSS.c │ │ ├── MSS.h │ │ ├── QTML.c │ │ ├── QTML.h │ │ ├── SConstruct │ │ ├── VKfont.h │ │ ├── WinApi-ddraw.c │ │ ├── WinApi-ddraw.h │ │ ├── WinApi-dsound-conv.h │ │ ├── WinApi-dsound.c │ │ ├── WinApi-dsound.h │ │ ├── WinApi-gdi32.c │ │ ├── WinApi-gdi32.h │ │ ├── WinApi-kernel32.c │ │ ├── WinApi-kernel32.h │ │ ├── WinApi-user32.c │ │ ├── WinApi-user32.h │ │ ├── WinApi-winmm.c │ │ ├── WinApi-winmm.h │ │ ├── WinApi.c │ │ ├── WinApi.h │ │ ├── X86_FS_mem.c │ │ ├── llasm │ │ │ ├── CLIB-asm-llasm.c │ │ │ ├── CLIB-asm-llasm.h │ │ │ ├── CLIB-asm.llasm │ │ │ ├── Game-DataFiles-asm.llasm │ │ │ ├── Game-Patch-asm.llasm │ │ │ ├── Game-Registry-asm.llasm │ │ │ ├── Game-SoundEngine-asm.llasm │ │ │ ├── MSS-asm.llasm │ │ │ ├── QTML-asm.llasm │ │ │ ├── SConscript │ │ │ ├── WinApi-ddraw-asm.llasm │ │ │ ├── WinApi-dsound-asm.llasm │ │ │ ├── WinApi-gdi32-asm.llasm │ │ │ ├── WinApi-kernel32-asm.llasm │ │ │ ├── WinApi-user32-asm.llasm │ │ │ ├── WinApi-winmm-asm.llasm │ │ │ ├── asm-calls.llinc │ │ │ ├── asm-cpu.c │ │ │ ├── asm-llasm.c │ │ │ ├── extern.llinc │ │ │ ├── llasm.llinc │ │ │ ├── llasm_cpu.h │ │ │ ├── llasm_divide.c │ │ │ ├── llasm_divide.llinc │ │ │ ├── llasm_float.c │ │ │ ├── llasm_float.llinc │ │ │ ├── llasm_fs_mem.c │ │ │ ├── llasm_fs_mem.llinc │ │ │ ├── llasm_movs.c │ │ │ ├── llasm_movs.llinc │ │ │ ├── llasm_pushx.c │ │ │ ├── llasm_pushx.llinc │ │ │ ├── llasm_scas.c │ │ │ ├── llasm_scas.llinc │ │ │ ├── llasm_stos.c │ │ │ ├── llasm_stos.llinc │ │ │ ├── macros.llinc │ │ │ ├── printf_x86.c │ │ │ └── printf_x86.h │ │ ├── platform.h │ │ ├── ptr32.h │ │ └── x86 │ │ │ ├── CLIB-asm-x86.c │ │ │ ├── CLIB-asm-x86.h │ │ │ ├── CLIB-asm.asm │ │ │ ├── Game-DataFiles-asm.asm │ │ │ ├── Game-Main-asm.asm │ │ │ ├── Game-Patch-asm.asm │ │ │ ├── Game-Registry-asm.asm │ │ │ ├── Game-SoundEngine-asm.asm │ │ │ ├── MSS-asm.asm │ │ │ ├── QTML-asm.asm │ │ │ ├── SConscript │ │ │ ├── WinApi-ddraw-asm.asm │ │ │ ├── WinApi-dsound-asm.asm │ │ │ ├── WinApi-gdi32-asm.asm │ │ │ ├── WinApi-kernel32-asm.asm │ │ │ ├── WinApi-user32-asm.asm │ │ │ ├── WinApi-winmm-asm.asm │ │ │ ├── asm-calls.inc │ │ │ ├── asm_fs_mem.asm │ │ │ ├── extern.inc │ │ │ ├── misc.inc │ │ │ └── x86inc.inc │ └── release │ │ ├── linux │ │ ├── Septerra.cfg │ │ ├── Septerra.sh │ │ ├── arm-aarch64 │ │ │ └── readme-Linux.txt │ │ ├── armv7-gnueabihf │ │ │ └── readme-Linux.txt │ │ ├── readme-Linux.txt │ │ └── x64 │ │ │ └── readme-Linux.txt │ │ └── windows │ │ ├── Septerra.cfg │ │ └── readme-Windows.txt ├── Warcraft │ ├── SR-War │ │ ├── Game-int.h │ │ ├── Game-int2.h │ │ ├── Game_config.c │ │ ├── Game_config.h │ │ ├── Game_defs.h │ │ ├── Game_scalerplugin.c │ │ ├── Game_scalerplugin.h │ │ ├── Game_thread.c │ │ ├── Game_thread.h │ │ ├── Game_vars.h │ │ ├── Game_virtualkeyboard.c │ │ ├── Game_virtualkeyboard.h │ │ ├── SConstruct │ │ ├── VKfont1.h │ │ ├── VKfont2.h │ │ ├── Warcraft-in2.c │ │ ├── Warcraft-in2.h │ │ ├── Warcraft-inout.c │ │ ├── Warcraft-inout.h │ │ ├── Warcraft-int.c │ │ ├── Warcraft-int.h │ │ ├── Warcraft-int2.c │ │ ├── Warcraft-int2.h │ │ ├── Warcraft-music-midiplugin.c │ │ ├── Warcraft-music-midiplugin.h │ │ ├── Warcraft-music-midiplugin2.c │ │ ├── Warcraft-music-midiplugin2.h │ │ ├── Warcraft-music.c │ │ ├── Warcraft-music.h │ │ ├── Warcraft-out2.c │ │ ├── Warcraft-out2.h │ │ ├── Warcraft-proc-events.c │ │ ├── Warcraft-proc-events.h │ │ ├── Warcraft-proc-vfs.c │ │ ├── Warcraft-proc-vfs.h │ │ ├── Warcraft-proc.c │ │ ├── Warcraft-proc.h │ │ ├── Warcraft-sound.c │ │ ├── Warcraft-sound.h │ │ ├── Warcraft-timer.c │ │ ├── Warcraft-timer.h │ │ ├── arm │ │ │ ├── Game-asm.s │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.inc │ │ │ ├── SR-asm-calls.s │ │ │ ├── SR-asm.s │ │ │ ├── SR-proc-divide.c │ │ │ ├── SR-proc-divide.h │ │ │ ├── arm.inc │ │ │ ├── armconf.inc │ │ │ ├── arminc.inc │ │ │ ├── asm_divide.inc │ │ │ ├── asm_divide.s │ │ │ ├── asm_inout.inc │ │ │ ├── asm_inout.s │ │ │ ├── asm_int.inc │ │ │ ├── asm_int.s │ │ │ ├── asm_mem_access.inc │ │ │ ├── asm_mem_access.s │ │ │ ├── asm_movs.inc │ │ │ ├── asm_movs.s │ │ │ ├── asm_pushx.inc │ │ │ ├── asm_pushx.s │ │ │ ├── asm_stos.inc │ │ │ ├── asm_stos.s │ │ │ ├── asm_xti.inc │ │ │ ├── cdgogver │ │ │ │ └── .cdgogver │ │ │ ├── cdver │ │ │ │ └── .cdver │ │ │ ├── code_armlinux.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ ├── war-asm-cd.s │ │ │ └── war-asm-cdgog.s │ │ ├── audio.h │ │ ├── audio │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── pandora.c │ │ │ └── pc.c │ │ ├── display.h │ │ ├── display │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── palette16bgra.h │ │ │ ├── palette32bgra.h │ │ │ ├── palettecommon.h │ │ │ ├── pandora.c │ │ │ └── pc.c │ │ ├── input.h │ │ ├── input │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── pandora.c │ │ │ ├── pc.c │ │ │ └── pyra.c │ │ ├── llasm │ │ │ ├── CLIB-proc-llasm.c │ │ │ ├── CLIB-proc-llasm.h │ │ │ ├── Game-asm.c │ │ │ ├── Game-llasm.llasm │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.llasm │ │ │ ├── SR-asm-calls.llinc │ │ │ ├── SR-asm.c │ │ │ ├── asm-cpu.c │ │ │ ├── cdgogver │ │ │ │ └── .cdgogver │ │ │ ├── cdver │ │ │ │ └── .cdver │ │ │ ├── extern.llinc │ │ │ ├── llasm.llinc │ │ │ ├── llasm_cpu.h │ │ │ ├── llasm_divide.c │ │ │ ├── llasm_divide.llinc │ │ │ ├── llasm_inout.c │ │ │ ├── llasm_inout.llinc │ │ │ ├── llasm_int.c │ │ │ ├── llasm_int.llinc │ │ │ ├── llasm_movs.c │ │ │ ├── llasm_movs.llinc │ │ │ ├── llasm_pushx.c │ │ │ ├── llasm_pushx.llinc │ │ │ ├── llasm_scas.c │ │ │ ├── llasm_scas.llinc │ │ │ ├── llasm_stos.c │ │ │ ├── llasm_stos.llinc │ │ │ ├── llasm_xti.llinc │ │ │ ├── macros.llinc │ │ │ ├── printf_x86.c │ │ │ ├── printf_x86.h │ │ │ ├── war-asm-cd.llasm │ │ │ └── war-asm-cdgog.llasm │ │ ├── main.c │ │ ├── main.h │ │ ├── midi-plugins.h │ │ ├── midi-plugins2.h │ │ ├── ptr32.h │ │ ├── scaler-plugins.h │ │ ├── virtualfs.c │ │ ├── virtualfs.h │ │ ├── x86 │ │ │ ├── Game-asm.asm │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.asm │ │ │ ├── SR-asm-calls.inc │ │ │ ├── SR-asm.asm │ │ │ ├── asm_inout.asm │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.asm │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── cdgogver │ │ │ │ └── .cdgogver │ │ │ ├── cdver │ │ │ │ └── .cdver │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ ├── war-asm-cd.asm │ │ │ ├── war-asm-cdgog.asm │ │ │ └── x86inc.inc │ │ ├── xmi2mid.c │ │ └── xmi2mid.h │ └── release │ │ ├── linux │ │ ├── Warcraft-setup.sh │ │ ├── Warcraft.cfg │ │ ├── Warcraft.sh │ │ ├── arm-aarch64 │ │ │ └── readme-Linux.txt │ │ ├── armv7-gnueabihf │ │ │ └── readme-Linux.txt │ │ ├── readme-Linux.txt │ │ └── x64 │ │ │ └── readme-Linux.txt │ │ └── windows │ │ ├── Warcraft.cfg │ │ ├── Warcraft.cmd │ │ └── readme-Windows.txt ├── X-Com - Terror from the Deep │ ├── SR-Xcom2 │ │ ├── Game-int.h │ │ ├── Game-int2.h │ │ ├── Game-int3.h │ │ ├── Game_config.c │ │ ├── Game_config.h │ │ ├── Game_defs.h │ │ ├── Game_misc.c │ │ ├── Game_misc.h │ │ ├── Game_scalerplugin.c │ │ ├── Game_scalerplugin.h │ │ ├── Game_thread.c │ │ ├── Game_thread.h │ │ ├── Game_vars.h │ │ ├── Game_virtualkeyboard.c │ │ ├── Game_virtualkeyboard.h │ │ ├── SConstruct │ │ ├── VKfont1.h │ │ ├── VKfont2.h │ │ ├── Xcom-inout.c │ │ ├── Xcom-inout.h │ │ ├── Xcom-inout2.c │ │ ├── Xcom-inout2.h │ │ ├── Xcom-int.c │ │ ├── Xcom-int.h │ │ ├── Xcom-int2.c │ │ ├── Xcom-int2.h │ │ ├── Xcom-int3.c │ │ ├── Xcom-int3.h │ │ ├── Xcom-music-midifiles.c │ │ ├── Xcom-music-midiplugin.c │ │ ├── Xcom-music-midiplugin.h │ │ ├── Xcom-music-midiplugin2.c │ │ ├── Xcom-music-midiplugin2.h │ │ ├── Xcom-music.c │ │ ├── Xcom-music.h │ │ ├── Xcom-proc-events.c │ │ ├── Xcom-proc-events.h │ │ ├── Xcom-proc-vfs.c │ │ ├── Xcom-proc-vfs.h │ │ ├── Xcom-proc.c │ │ ├── Xcom-proc.h │ │ ├── Xcom-sound.c │ │ ├── Xcom-sound.h │ │ ├── Xcom-timer.c │ │ ├── Xcom-timer.h │ │ ├── arm │ │ │ ├── Game-asm.s │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.inc │ │ │ ├── SR-asm-calls.s │ │ │ ├── SR-asm.s │ │ │ ├── SR-proc-divide.c │ │ │ ├── SR-proc-divide.h │ │ │ ├── SR-proc-float.c │ │ │ ├── SR-proc-float.h │ │ │ ├── arm.inc │ │ │ ├── armconf.inc │ │ │ ├── arminc.inc │ │ │ ├── asm_divide.inc │ │ │ ├── asm_divide.s │ │ │ ├── asm_float.inc │ │ │ ├── asm_float.s │ │ │ ├── asm_float_macros.inc │ │ │ ├── asm_inout.inc │ │ │ ├── asm_inout.s │ │ │ ├── asm_int.inc │ │ │ ├── asm_int.s │ │ │ ├── asm_mem_access.inc │ │ │ ├── asm_mem_access.s │ │ │ ├── asm_movs.inc │ │ │ ├── asm_movs.s │ │ │ ├── asm_pushx.inc │ │ │ ├── asm_pushx.s │ │ │ ├── asm_stos.inc │ │ │ ├── asm_stos.s │ │ │ ├── asm_xti.inc │ │ │ ├── code_armlinux.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── geoscape │ │ │ │ ├── SConscript │ │ │ │ ├── geoscape-asm-gog.s │ │ │ │ └── gogver │ │ │ │ │ └── .gogver │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ └── tactical │ │ │ │ ├── SConscript │ │ │ │ ├── gogver │ │ │ │ └── .gogver │ │ │ │ └── tactical-asm-gog.s │ │ ├── audio.h │ │ ├── audio │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── pandora.c │ │ │ └── pc.c │ │ ├── display.h │ │ ├── display │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── palette16bgra.h │ │ │ ├── palette32bgra.h │ │ │ ├── palettecommon.h │ │ │ ├── pandora.c │ │ │ └── pc.c │ │ ├── gmcat2mid.c │ │ ├── gmcat2mid.h │ │ ├── input.h │ │ ├── input │ │ │ ├── SConscript │ │ │ ├── gp2x.c │ │ │ ├── pandora.c │ │ │ ├── pc.c │ │ │ └── pyra.c │ │ ├── llasm │ │ │ ├── CLIB-proc-llasm.c │ │ │ ├── CLIB-proc-llasm.h │ │ │ ├── Game-asm.c │ │ │ ├── Game-llasm.llasm │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.llasm │ │ │ ├── SR-asm-calls.llinc │ │ │ ├── SR-asm.c │ │ │ ├── asm-cpu.c │ │ │ ├── extern.llinc │ │ │ ├── geoscape │ │ │ │ ├── SConscript │ │ │ │ ├── geoscape-asm-gog.llasm │ │ │ │ └── gogver │ │ │ │ │ └── .gogver │ │ │ ├── llasm.llinc │ │ │ ├── llasm_cpu.h │ │ │ ├── llasm_divide.c │ │ │ ├── llasm_divide.llinc │ │ │ ├── llasm_float.c │ │ │ ├── llasm_float.llinc │ │ │ ├── llasm_inout.c │ │ │ ├── llasm_inout.llinc │ │ │ ├── llasm_int.c │ │ │ ├── llasm_int.llinc │ │ │ ├── llasm_movs.c │ │ │ ├── llasm_movs.llinc │ │ │ ├── llasm_pushx.c │ │ │ ├── llasm_pushx.llinc │ │ │ ├── llasm_scas.c │ │ │ ├── llasm_scas.llinc │ │ │ ├── llasm_stos.c │ │ │ ├── llasm_stos.llinc │ │ │ ├── llasm_xti.llinc │ │ │ ├── macros.llinc │ │ │ ├── printf_x86.c │ │ │ ├── printf_x86.h │ │ │ └── tactical │ │ │ │ ├── SConscript │ │ │ │ ├── gogver │ │ │ │ └── .gogver │ │ │ │ └── tactical-asm-gog.llasm │ │ ├── main.c │ │ ├── main.h │ │ ├── midi-plugins.h │ │ ├── midi-plugins2.h │ │ ├── ptr32.h │ │ ├── scaler-plugins.h │ │ ├── virtualfs.c │ │ ├── virtualfs.h │ │ └── x86 │ │ │ ├── Game-asm.asm │ │ │ ├── SConscript │ │ │ ├── SR-asm-calls.asm │ │ │ ├── SR-asm-calls.inc │ │ │ ├── SR-asm-float2.asm │ │ │ ├── SR-asm.asm │ │ │ ├── SR-proc-float2.c │ │ │ ├── SR-proc-float2.h │ │ │ ├── asm_inout.asm │ │ │ ├── asm_inout.inc │ │ │ ├── asm_int.asm │ │ │ ├── asm_int.inc │ │ │ ├── asm_xti.inc │ │ │ ├── code_linux.inc │ │ │ ├── code_win32.inc │ │ │ ├── data_all.inc │ │ │ ├── extern.inc │ │ │ ├── geoscape │ │ │ ├── SConscript │ │ │ ├── geoscape-asm-gog.asm │ │ │ └── gogver │ │ │ │ └── .gogver │ │ │ ├── macros.inc │ │ │ ├── misc.inc │ │ │ ├── tactical │ │ │ ├── SConscript │ │ │ ├── gogver │ │ │ │ └── .gogver │ │ │ └── tactical-asm-gog.asm │ │ │ └── x86inc.inc │ └── release │ │ ├── linux │ │ ├── Ufo.cfg │ │ ├── arm-aarch64 │ │ │ └── readme-Linux.txt │ │ ├── armv7-gnueabihf │ │ │ └── readme-Linux.txt │ │ ├── readme-Linux.txt │ │ ├── x64 │ │ │ └── readme-Linux.txt │ │ ├── xcom2-setup.sh │ │ └── xcom2.sh │ │ └── windows │ │ ├── Ufo.cfg │ │ ├── readme-Windows.txt │ │ └── xcom2.cmd └── X-Com - Ufo Defense │ ├── SR-Xcom1 │ ├── Game-int.h │ ├── Game-int2.h │ ├── Game-int3.h │ ├── Game_config.c │ ├── Game_config.h │ ├── Game_defs.h │ ├── Game_misc.c │ ├── Game_misc.h │ ├── Game_scalerplugin.c │ ├── Game_scalerplugin.h │ ├── Game_thread.c │ ├── Game_thread.h │ ├── Game_vars.h │ ├── Game_virtualkeyboard.c │ ├── Game_virtualkeyboard.h │ ├── SConstruct │ ├── VKfont1.h │ ├── VKfont2.h │ ├── Xcom-inout.c │ ├── Xcom-inout.h │ ├── Xcom-inout2.c │ ├── Xcom-inout2.h │ ├── Xcom-int.c │ ├── Xcom-int.h │ ├── Xcom-int2.c │ ├── Xcom-int2.h │ ├── Xcom-int3.c │ ├── Xcom-int3.h │ ├── Xcom-music-midifiles.c │ ├── Xcom-music-midiplugin.c │ ├── Xcom-music-midiplugin.h │ ├── Xcom-music-midiplugin2.c │ ├── Xcom-music-midiplugin2.h │ ├── Xcom-music.c │ ├── Xcom-music.h │ ├── Xcom-proc-events.c │ ├── Xcom-proc-events.h │ ├── Xcom-proc-vfs.c │ ├── Xcom-proc-vfs.h │ ├── Xcom-proc.c │ ├── Xcom-proc.h │ ├── Xcom-sound.c │ ├── Xcom-sound.h │ ├── Xcom-timer.c │ ├── Xcom-timer.h │ ├── arm │ │ ├── Game-asm.s │ │ ├── SConscript │ │ ├── SR-asm-calls.inc │ │ ├── SR-asm-calls.s │ │ ├── SR-asm.s │ │ ├── SR-proc-divide.c │ │ ├── SR-proc-divide.h │ │ ├── SR-proc-float.c │ │ ├── SR-proc-float.h │ │ ├── arm.inc │ │ ├── armconf.inc │ │ ├── arminc.inc │ │ ├── asm_divide.inc │ │ ├── asm_divide.s │ │ ├── asm_float.inc │ │ ├── asm_float.s │ │ ├── asm_float_macros.inc │ │ ├── asm_inout.inc │ │ ├── asm_inout.s │ │ ├── asm_int.inc │ │ ├── asm_int.s │ │ ├── asm_mem_access.inc │ │ ├── asm_mem_access.s │ │ ├── asm_movs.inc │ │ ├── asm_movs.s │ │ ├── asm_pushx.inc │ │ ├── asm_pushx.s │ │ ├── asm_stos.inc │ │ ├── asm_stos.s │ │ ├── asm_xti.inc │ │ ├── code_armlinux.inc │ │ ├── data_all.inc │ │ ├── extern.inc │ │ ├── geoscape │ │ │ └── SConscript │ │ ├── intro │ │ │ └── SConscript │ │ ├── macros.inc │ │ ├── misc.inc │ │ └── tactical │ │ │ └── SConscript │ ├── audio.h │ ├── audio │ │ ├── SConscript │ │ ├── gp2x.c │ │ ├── pandora.c │ │ └── pc.c │ ├── display.h │ ├── display │ │ ├── SConscript │ │ ├── gp2x.c │ │ ├── palette16bgra.h │ │ ├── palette32bgra.h │ │ ├── palettecommon.h │ │ ├── pandora.c │ │ └── pc.c │ ├── gmcat2mid.c │ ├── gmcat2mid.h │ ├── input.h │ ├── input │ │ ├── SConscript │ │ ├── gp2x.c │ │ ├── pandora.c │ │ ├── pc.c │ │ └── pyra.c │ ├── llasm │ │ ├── CLIB-proc-llasm.c │ │ ├── CLIB-proc-llasm.h │ │ ├── Game-asm.c │ │ ├── Game-llasm.llasm │ │ ├── SConscript │ │ ├── SR-asm-calls.llasm │ │ ├── SR-asm-calls.llinc │ │ ├── SR-asm.c │ │ ├── asm-cpu.c │ │ ├── extern.llinc │ │ ├── geoscape │ │ │ └── SConscript │ │ ├── intro │ │ │ └── SConscript │ │ ├── llasm.llinc │ │ ├── llasm_cpu.h │ │ ├── llasm_divide.c │ │ ├── llasm_divide.llinc │ │ ├── llasm_float.c │ │ ├── llasm_float.llinc │ │ ├── llasm_inout.c │ │ ├── llasm_inout.llinc │ │ ├── llasm_int.c │ │ ├── llasm_int.llinc │ │ ├── llasm_movs.c │ │ ├── llasm_movs.llinc │ │ ├── llasm_pushx.c │ │ ├── llasm_pushx.llinc │ │ ├── llasm_scas.c │ │ ├── llasm_scas.llinc │ │ ├── llasm_stos.c │ │ ├── llasm_stos.llinc │ │ ├── llasm_xti.llinc │ │ ├── macros.llinc │ │ ├── printf_x86.c │ │ ├── printf_x86.h │ │ └── tactical │ │ │ └── SConscript │ ├── main.c │ ├── main.h │ ├── midi-plugins.h │ ├── midi-plugins2.h │ ├── ptr32.h │ ├── scaler-plugins.h │ ├── virtualfs.c │ ├── virtualfs.h │ └── x86 │ │ ├── Game-asm.asm │ │ ├── SConscript │ │ ├── SR-asm-calls.asm │ │ ├── SR-asm-calls.inc │ │ ├── SR-asm-float2.asm │ │ ├── SR-asm.asm │ │ ├── SR-proc-float2.c │ │ ├── SR-proc-float2.h │ │ ├── asm_inout.asm │ │ ├── asm_inout.inc │ │ ├── asm_int.asm │ │ ├── asm_int.inc │ │ ├── asm_xti.inc │ │ ├── code_linux.inc │ │ ├── code_win32.inc │ │ ├── data_all.inc │ │ ├── extern.inc │ │ ├── geoscape │ │ └── SConscript │ │ ├── intro │ │ └── SConscript │ │ ├── macros.inc │ │ ├── misc.inc │ │ ├── tactical │ │ └── SConscript │ │ └── x86inc.inc │ └── release │ ├── linux │ ├── Ufo.cfg │ ├── arm-aarch64 │ │ └── readme-Linux.txt │ ├── armv7-gnueabihf │ │ └── readme-Linux.txt │ ├── readme-Linux.txt │ ├── x64 │ │ └── readme-Linux.txt │ ├── xcom1-setup.sh │ └── xcom1.sh │ └── windows │ ├── Ufo.cfg │ ├── readme-Windows.txt │ └── xcom1.cmd ├── llasm ├── README.md ├── komp.sh └── llasm.d ├── midi-plugins ├── README.md ├── komp-arm.sh ├── komp-gp2x.sh ├── komp-pandora.sh ├── komp-x64-windows-MSVC.cmd ├── komp-x64-windows.cmd ├── komp-x64.sh ├── komp-x86-windows-MSVC.cmd ├── komp-x86-windows.cmd ├── komp-x86.sh ├── midi-adlmidi.c ├── midi-bassmidi.c ├── midi-plugins.h ├── midi-plugins2.h ├── midi-wildmidi.c ├── midi.def ├── midi2-alsa.c ├── midi2-common.h ├── midi2-gm_on_mt32.h ├── midi2-windows.c ├── midi2.def └── xcom12 │ ├── include │ └── emu_x86.h │ ├── mpsmusic-driver.c │ └── src │ ├── dosbox_opl │ ├── COPYING.LESSER.txt │ ├── opl.cpp │ └── opl.h │ ├── emu_awe32.c │ ├── emu_awe32.h │ ├── emu_mt32.cpp │ ├── emu_mt32.h │ ├── emu_opl2.cpp │ ├── emu_opl2.h │ ├── emu_x86.c │ ├── munt-2.7.0 │ └── mt32emu │ │ ├── Analog.cpp │ │ ├── Analog.h │ │ ├── BReverbModel.cpp │ │ ├── BReverbModel.h │ │ ├── COPYING.LESSER.txt │ │ ├── Display.cpp │ │ ├── Display.h │ │ ├── Enumerations.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── FileStream.cpp │ │ ├── FileStream.h │ │ ├── LA32FloatWaveGenerator.cpp │ │ ├── LA32FloatWaveGenerator.h │ │ ├── LA32Ramp.cpp │ │ ├── LA32Ramp.h │ │ ├── LA32WaveGenerator.cpp │ │ ├── LA32WaveGenerator.h │ │ ├── MemoryRegion.h │ │ ├── MidiEventQueue.h │ │ ├── MidiStreamParser.cpp │ │ ├── MidiStreamParser.h │ │ ├── Part.cpp │ │ ├── Part.h │ │ ├── Partial.cpp │ │ ├── Partial.h │ │ ├── PartialManager.cpp │ │ ├── PartialManager.h │ │ ├── Poly.cpp │ │ ├── Poly.h │ │ ├── ROMInfo.cpp │ │ ├── ROMInfo.h │ │ ├── SampleRateConverter.cpp │ │ ├── SampleRateConverter.h │ │ ├── Structures.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── TVA.cpp │ │ ├── TVA.h │ │ ├── TVF.cpp │ │ ├── TVF.h │ │ ├── TVP.cpp │ │ ├── TVP.h │ │ ├── Tables.cpp │ │ ├── Tables.h │ │ ├── Types.h │ │ ├── VersionTagging.cpp │ │ ├── VersionTagging.h │ │ ├── config.h │ │ ├── globals.h │ │ ├── internals.h │ │ ├── mmath.h │ │ ├── mt32emu.h │ │ └── sha1 │ │ ├── sha1.cpp │ │ └── sha1.h │ ├── nuked_opl3 │ ├── LICENSE │ ├── opl3.c │ └── opl3.h │ └── pcem_emu8k │ ├── common.h │ ├── internal.h │ ├── sound_emu8k.c │ └── sound_emu8k.h ├── pycfg ├── README.md └── pycfg.py └── scaler-plugins ├── README.md ├── hqx ├── hq2x.c ├── hq3x.c ├── hq4x.c ├── hqx-common-asm.S ├── hqx-common.c ├── hqx-common.h ├── hqx-interp-alt.h ├── hqx-interp.h ├── hqx-platform.h └── hqx.h ├── komp-arm.sh ├── komp-x64-windows-MSVC.cmd ├── komp-x64-windows.cmd ├── komp-x64.sh ├── komp-x86-windows-MSVC.cmd ├── komp-x86-windows.cmd ├── komp-x86.sh ├── scaler-hqx.c ├── scaler-plugins.h ├── scaler-xbrz.cpp ├── scaler.def └── xbrz ├── Changelog.txt ├── License.txt ├── xbrz.cpp ├── xbrz.h ├── xbrz_config.h └── xbrz_tools.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/README.md -------------------------------------------------------------------------------- /SR-games/Albion/SR/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/SR.cfg -------------------------------------------------------------------------------- /SR-games/Albion/SR/arm/displaced_labels.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/arm/displaced_labels.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/arm/global_aliases.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/arm/global_aliases.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/arm/instruction_flags.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/arm/instruction_flags.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/arm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_D0668 2 | -------------------------------------------------------------------------------- /SR-games/Albion/SR/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x146FD8,0 2 | -------------------------------------------------------------------------------- /SR-games/Albion/SR/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/build-arm.sh -------------------------------------------------------------------------------- /SR-games/Albion/SR/build-llasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/build-llasm.sh -------------------------------------------------------------------------------- /SR-games/Albion/SR/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/build-x86.sh -------------------------------------------------------------------------------- /SR-games/Albion/SR/compact_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/compact_source.py -------------------------------------------------------------------------------- /SR-games/Albion/SR/compact_source_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/compact_source_arm.py -------------------------------------------------------------------------------- /SR-games/Albion/SR/compact_source_llasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/compact_source_llasm.py -------------------------------------------------------------------------------- /SR-games/Albion/SR/llasm/displaced_labels.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/llasm/displaced_labels.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/llasm/global_aliases.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/llasm/global_aliases.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/llasm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_D0668 2 | -------------------------------------------------------------------------------- /SR-games/Albion/SR/repair_short_jumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/repair_short_jumps.py -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/asm_inout.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/asm_int.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/asm_xti.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/code_dos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/code_dos.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/code_linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/code_linux.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/code_win32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/code_win32.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/data_all.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/displaced_labels.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/displaced_labels.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/extern.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/global_aliases.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/global_aliases.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/instruction_flags.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/instruction_flags.sci -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/macros.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/misc.inc -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_D0668 2 | -------------------------------------------------------------------------------- /SR-games/Albion/SR/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Albion/SR/x86/x86inc.inc -------------------------------------------------------------------------------- /SR-games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/README.md -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/SR.cfg -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/arm/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_387D8,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/arm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x58540,0 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/build-arm.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/build-llasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/build-llasm.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/build-x86.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/compact_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/compact_source.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/llasm/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_387D8,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/llasm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/asm_inout.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/asm_int.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/asm_xti.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_387D8,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/code_dos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/code_dos.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/data_all.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/extern.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/macros.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/misc.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd-gog/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd-gog/x86/x86inc.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/SR.cfg -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/arm/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_388C8,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/arm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x58680,0 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/build-arm.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/build-llasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/build-llasm.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/build-x86.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/compact_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/compact_source.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/compact_source_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/compact_source_arm.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/llasm/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_388C8,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/llasm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/repair_short_jumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/repair_short_jumps.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/asm_inout.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/asm_int.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/asm_xti.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_388C8,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/code_dos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/code_dos.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/code_linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/code_linux.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/code_win32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/code_win32.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/data_all.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/extern.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/macros.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/misc.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR-cd/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR-cd/x86/x86inc.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/SR.cfg -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/arm/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_44388,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/arm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/arm/global_aliases.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/arm/global_aliases.sci -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x58498,0 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/build-arm.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/build-llasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/build-llasm.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/build-x86.sh -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/compact_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/compact_source.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/compact_source_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/compact_source_arm.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/compact_source_llasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/compact_source_llasm.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/llasm/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_44388,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/llasm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/llasm/global_aliases.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/llasm/global_aliases.sci -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/repair_short_jumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/repair_short_jumps.py -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/asm_inout.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/asm_int.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/asm_xti.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/code16_areas.sci: -------------------------------------------------------------------------------- 1 | loc_44388,85 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/code_dos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/code_dos.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/code_linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/code_linux.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/code_win32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/code_win32.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/data_all.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4FFFA,6 2 | -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/extern.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/global_aliases.sci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/global_aliases.sci -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/macros.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/misc.inc -------------------------------------------------------------------------------- /SR-games/Warcraft/SR/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/Warcraft/SR/x86/x86inc.inc -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1-gog/arm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_59786 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1-gog/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x75394,0 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1-gog/llasm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_59786 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1-gog/x86/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_59786 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1/arm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_5A936 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x753C4,0 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1/llasm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_5A936 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR1/x86/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_5A936 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR2-gog/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x75B24,0 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR2/arm/fixup_do_not_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_546C4 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR2/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x75CA4,0 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR2/llasm/fixup_do_not_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_546C4 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Terror from the Deep/SR2/x86/fixup_do_not_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_546C4 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR1/SR.cfg -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/arm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_51DCC 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x695F8,0 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR1/build-arm.sh -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR1/build-x86.sh -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/llasm/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_51DCC 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR1/x86/misc.inc -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR1/x86/noret_procedures.sci: -------------------------------------------------------------------------------- 1 | loc_51DCC 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR2/SR.cfg -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/arm/fixup_do_not_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_501D1 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x753E4,0 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR2/build-arm.sh -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR2/build-x86.sh -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/llasm/fixup_do_not_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_501D1 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/x86/fixup_do_not_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_501D1 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR2/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR2/x86/misc.inc -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR3/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR3/SR.cfg -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR3/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x20F04,0 2 | -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR3/build-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR3/build-arm.sh -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR3/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR3/build-x86.sh -------------------------------------------------------------------------------- /SR-games/X-Com - Ufo Defense/SR3/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR-games/X-Com - Ufo Defense/SR3/x86/misc.inc -------------------------------------------------------------------------------- /SR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/README.md -------------------------------------------------------------------------------- /SR/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SConstruct -------------------------------------------------------------------------------- /SR/SR_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_basic.c -------------------------------------------------------------------------------- /SR/SR_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_defs.h -------------------------------------------------------------------------------- /SR/SR_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full.c -------------------------------------------------------------------------------- /SR/SR_full_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_arm.c -------------------------------------------------------------------------------- /SR/SR_full_arm_instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_arm_instr.c -------------------------------------------------------------------------------- /SR/SR_full_arm_instr_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_arm_instr_helper.h -------------------------------------------------------------------------------- /SR/SR_full_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_dos.c -------------------------------------------------------------------------------- /SR/SR_full_llasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_llasm.c -------------------------------------------------------------------------------- /SR/SR_full_llasm_instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_llasm_instr.c -------------------------------------------------------------------------------- /SR/SR_full_llasm_instr_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_llasm_instr_helper.h -------------------------------------------------------------------------------- /SR/SR_full_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_win32.c -------------------------------------------------------------------------------- /SR/SR_full_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_x64.c -------------------------------------------------------------------------------- /SR/SR_full_x64_instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_full_x64_instr.c -------------------------------------------------------------------------------- /SR/SR_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_loader.c -------------------------------------------------------------------------------- /SR/SR_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_main.c -------------------------------------------------------------------------------- /SR/SR_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_output.c -------------------------------------------------------------------------------- /SR/SR_source_code_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_source_code_information.c -------------------------------------------------------------------------------- /SR/SR_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/SR_vars.h -------------------------------------------------------------------------------- /SR/arm-support/SR-proc-divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/SR-proc-divide.c -------------------------------------------------------------------------------- /SR/arm-support/SR-proc-divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/SR-proc-divide.h -------------------------------------------------------------------------------- /SR/arm-support/SR-proc-float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/SR-proc-float.c -------------------------------------------------------------------------------- /SR/arm-support/SR-proc-float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/SR-proc-float.h -------------------------------------------------------------------------------- /SR/arm-support/arm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/arm.inc -------------------------------------------------------------------------------- /SR/arm-support/armconf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/armconf.inc -------------------------------------------------------------------------------- /SR/arm-support/arminc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/arminc.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_divide.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_divide.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_divide.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_divide.s -------------------------------------------------------------------------------- /SR/arm-support/asm_float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_float.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_float.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_float.s -------------------------------------------------------------------------------- /SR/arm-support/asm_float_macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_float_macros.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_inout.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_inout.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_inout.s -------------------------------------------------------------------------------- /SR/arm-support/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_int.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_int.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_int.s -------------------------------------------------------------------------------- /SR/arm-support/asm_mem_access.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_mem_access.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_mem_access.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_mem_access.s -------------------------------------------------------------------------------- /SR/arm-support/asm_movmem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_movmem.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_movmem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_movmem.s -------------------------------------------------------------------------------- /SR/arm-support/asm_movs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_movs.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_movs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_movs.s -------------------------------------------------------------------------------- /SR/arm-support/asm_pushx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_pushx.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_pushx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_pushx.s -------------------------------------------------------------------------------- /SR/arm-support/asm_stos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_stos.inc -------------------------------------------------------------------------------- /SR/arm-support/asm_stos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_stos.s -------------------------------------------------------------------------------- /SR/arm-support/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/arm-support/asm_xti.inc -------------------------------------------------------------------------------- /SR/container_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/container_helpers.cpp -------------------------------------------------------------------------------- /SR/container_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/container_helpers.h -------------------------------------------------------------------------------- /SR/judy_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/judy_helpers.c -------------------------------------------------------------------------------- /SR/judy_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/judy_helpers.h -------------------------------------------------------------------------------- /SR/llasm-support/llasm.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_cmps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_cmps.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_cmps.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_cmps.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_cpu.h -------------------------------------------------------------------------------- /SR/llasm-support/llasm_divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_divide.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_divide.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_divide.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_float.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_float.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_float.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_fs_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_fs_mem.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_fs_mem.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_fs_mem.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_inout.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_inout.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_inout.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_int.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_int.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_int.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_movmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_movmem.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_movmem.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_movmem.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_movs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_movs.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_movs.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_movs.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_pushx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_pushx.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_pushx.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_pushx.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_scas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_scas.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_scas.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_scas.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_stos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_stos.c -------------------------------------------------------------------------------- /SR/llasm-support/llasm_stos.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_stos.llinc -------------------------------------------------------------------------------- /SR/llasm-support/llasm_xti.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/llasm-support/llasm_xti.llinc -------------------------------------------------------------------------------- /SR/udis86-1.6/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/CHANGES -------------------------------------------------------------------------------- /SR/udis86-1.6/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/COPYING -------------------------------------------------------------------------------- /SR/udis86-1.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/LICENSE -------------------------------------------------------------------------------- /SR/udis86-1.6/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/Makefile.in -------------------------------------------------------------------------------- /SR/udis86-1.6/Makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/Makefile.win32 -------------------------------------------------------------------------------- /SR/udis86-1.6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/README -------------------------------------------------------------------------------- /SR/udis86-1.6/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/config.h.in -------------------------------------------------------------------------------- /SR/udis86-1.6/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/configure -------------------------------------------------------------------------------- /SR/udis86-1.6/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/configure.in -------------------------------------------------------------------------------- /SR/udis86-1.6/docs/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/docs/doc.html -------------------------------------------------------------------------------- /SR/udis86-1.6/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/docs/index.html -------------------------------------------------------------------------------- /SR/udis86-1.6/docs/ss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/docs/ss.jpg -------------------------------------------------------------------------------- /SR/udis86-1.6/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/docs/style.css -------------------------------------------------------------------------------- /SR/udis86-1.6/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/install-sh -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/Makefile.in -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/Makefile.standalone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/Makefile.standalone -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/Makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/Makefile.win32 -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/decode.c -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/extern.h -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/input.c -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/input.h -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/mnemonics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/mnemonics.c -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/mnemonics.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/mnemonics.dat -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/mnemonics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/mnemonics.h -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/mnemonics.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/mnemonics.pl -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/opcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/opcmap.c -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/opcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/opcmap.h -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/syn-att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/syn-att.c -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/syn-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/syn-intel.c -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/syn.c -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/syn.h -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/types.h -------------------------------------------------------------------------------- /SR/udis86-1.6/libudis86/udis86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/libudis86/udis86.c -------------------------------------------------------------------------------- /SR/udis86-1.6/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/mkinstalldirs -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/Makefile -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/Makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/Makefile.win32 -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/bufovrrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/bufovrrun.c -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/gen.c -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/randtest.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/randtest.raw -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/randtest16.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/randtest16.ref -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/randtest32.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/randtest32.ref -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/randtest64.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/randtest64.ref -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/test16.asm: -------------------------------------------------------------------------------- 1 | [bits 16] 2 | movzx eax, word [bx] 3 | -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/test32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/test32.asm -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/test64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/test64.asm -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/testjmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/testjmp.asm -------------------------------------------------------------------------------- /SR/udis86-1.6/tests/testjmp.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/tests/testjmp.ref -------------------------------------------------------------------------------- /SR/udis86-1.6/udcli/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/udcli/Makefile.in -------------------------------------------------------------------------------- /SR/udis86-1.6/udcli/Makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/udcli/Makefile.win32 -------------------------------------------------------------------------------- /SR/udis86-1.6/udcli/udcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/udcli/udcli.c -------------------------------------------------------------------------------- /SR/udis86-1.6/udis86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86-1.6/udis86.h -------------------------------------------------------------------------------- /SR/udis86_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86_dep.c -------------------------------------------------------------------------------- /SR/udis86_dep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/udis86_dep.h -------------------------------------------------------------------------------- /SR/x64-support/asm_call.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_call.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_fs_mem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_fs_mem.asm -------------------------------------------------------------------------------- /SR/x64-support/asm_fs_mem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_fs_mem.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_inout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_inout.asm -------------------------------------------------------------------------------- /SR/x64-support/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_inout.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_int.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_int.asm -------------------------------------------------------------------------------- /SR/x64-support/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_int.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_movmem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_movmem.asm -------------------------------------------------------------------------------- /SR/x64-support/asm_movmem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_movmem.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_pushx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_pushx.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_unwind.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_unwind.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_xahf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_xahf.inc -------------------------------------------------------------------------------- /SR/x64-support/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/asm_xti.inc -------------------------------------------------------------------------------- /SR/x64-support/x64_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/x64_stack.h -------------------------------------------------------------------------------- /SR/x64-support/x64inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x64-support/x64inc.inc -------------------------------------------------------------------------------- /SR/x86-support/asm_inout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/asm_inout.asm -------------------------------------------------------------------------------- /SR/x86-support/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/asm_inout.inc -------------------------------------------------------------------------------- /SR/x86-support/asm_int.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/asm_int.asm -------------------------------------------------------------------------------- /SR/x86-support/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/asm_int.inc -------------------------------------------------------------------------------- /SR/x86-support/asm_movmem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/asm_movmem.asm -------------------------------------------------------------------------------- /SR/x86-support/asm_movmem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/asm_movmem.inc -------------------------------------------------------------------------------- /SR/x86-support/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/asm_xti.inc -------------------------------------------------------------------------------- /SR/x86-support/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR/x86-support/x86inc.inc -------------------------------------------------------------------------------- /SR64-loader/SR64-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/SR64-loader.c -------------------------------------------------------------------------------- /SR64-loader/komp-arm64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/komp-arm64.sh -------------------------------------------------------------------------------- /SR64-loader/komp-x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/komp-x64.sh -------------------------------------------------------------------------------- /SR64-loader/start-arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/start-arm64.S -------------------------------------------------------------------------------- /SR64-loader/start-x64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/start-x64.S -------------------------------------------------------------------------------- /SR64-loader/syscall-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/syscall-arm64.c -------------------------------------------------------------------------------- /SR64-loader/syscall-x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/syscall-x64.c -------------------------------------------------------------------------------- /SR64-loader/syscall64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SR64-loader/syscall64.h -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-ms_figtr/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Battle Isle 3/SRW-ms_figtr/SR.cfg -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-ms_figtr/llasm/fixup_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_10004EB8 2 | -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-ms_figtr/x86/fixup_interpret_as_code.sci: -------------------------------------------------------------------------------- 1 | loc_10004EB8 2 | -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-sdi_1r/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Battle Isle 3/SRW-sdi_1r/SR.cfg -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-sdi_1r/llasm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4B6FA8,32 2 | -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-sdi_1r/x86/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_4B6FA8,32 2 | -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-wc_figtr/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Battle Isle 3/SRW-wc_figtr/SR.cfg -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-wc_figtr/llasm/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_49FFFC,4 2 | -------------------------------------------------------------------------------- /SRW-games/Battle Isle 3/SRW-wc_figtr/x86/displaced_labels.sci: -------------------------------------------------------------------------------- 1 | loc_49FFFC,4 2 | -------------------------------------------------------------------------------- /SRW-games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/README.md -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/SR.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/SR.cfg -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/bssborder.csv: -------------------------------------------------------------------------------- 1 | 0x4AE800,-24 2 | -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/build-llasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/build-llasm.sh -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/build-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/build-x86.sh -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/compact_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/compact_source.py -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/relocations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/relocations.csv -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/x86/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/x86/extern.inc -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/x86/misc.inc -------------------------------------------------------------------------------- /SRW-games/Septerra Core/SRW/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW-games/Septerra Core/SRW/x86/x86inc.inc -------------------------------------------------------------------------------- /SRW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/README.md -------------------------------------------------------------------------------- /SRW/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SConstruct -------------------------------------------------------------------------------- /SRW/SRW_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SRW_loader.c -------------------------------------------------------------------------------- /SRW/SR_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_basic.c -------------------------------------------------------------------------------- /SRW/SR_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_defs.h -------------------------------------------------------------------------------- /SRW/SR_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full.c -------------------------------------------------------------------------------- /SRW/SR_full_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full_dos.c -------------------------------------------------------------------------------- /SRW/SR_full_llasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full_llasm.c -------------------------------------------------------------------------------- /SRW/SR_full_llasm_instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full_llasm_instr.c -------------------------------------------------------------------------------- /SRW/SR_full_llasm_instr_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full_llasm_instr_helper.h -------------------------------------------------------------------------------- /SRW/SR_full_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full_win32.c -------------------------------------------------------------------------------- /SRW/SR_full_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full_x64.c -------------------------------------------------------------------------------- /SRW/SR_full_x64_instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_full_x64_instr.c -------------------------------------------------------------------------------- /SRW/SR_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_main.c -------------------------------------------------------------------------------- /SRW/SR_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_output.c -------------------------------------------------------------------------------- /SRW/SR_source_code_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_source_code_information.c -------------------------------------------------------------------------------- /SRW/SR_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/SR_vars.h -------------------------------------------------------------------------------- /SRW/container_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/container_helpers.cpp -------------------------------------------------------------------------------- /SRW/container_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/container_helpers.h -------------------------------------------------------------------------------- /SRW/judy_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/judy_helpers.c -------------------------------------------------------------------------------- /SRW/judy_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/judy_helpers.h -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/._INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/._INSTALL -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/INSTALL -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/README -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/aclocal.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/compile -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/config.guess -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/config.sub -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/depcomp -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/install-sh -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/ltmain.sh -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/m4/libtool.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/m4/ltoptions.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/m4/ltsugar.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/m4/ltversion.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/build/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/build/missing -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/config.h.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/configure -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/configure.ac -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/manual/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/manual/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/manual/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/manual/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/manual/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/manual/conf.py -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/manual/getstarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/manual/getstarted.rst -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/manual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/manual/index.rst -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/manual/libudis86.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/manual/libudis86.rst -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/manual/udis86.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/manual/udis86.info -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/x86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/x86/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/x86/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/x86/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/x86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/x86/README -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/x86/optable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/x86/optable.xml -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/docs/x86/optable.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/docs/x86/optable.xsl -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/decode.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/decode.h -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/extern.h -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/itab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/itab.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/itab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/itab.h -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/syn-att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/syn-att.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/syn-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/syn-intel.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/syn.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/syn.h -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/types.h -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/udint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/udint.h -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/libudis86/udis86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/libudis86/udis86.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/m4/ax_compare_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/m4/ax_compare_version.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/m4/ax_with_prog.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/m4/ax_with_prog.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/m4/ax_with_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/m4/ax_with_python.m4 -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/scripts/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/scripts/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/scripts/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/scripts/ud_itab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/scripts/ud_itab.py -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/scripts/ud_opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/scripts/ud_opcode.py -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/scripts/ud_optable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/scripts/ud_optable.py -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/16/disp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/16/disp.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/16/test16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/16/test16.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/att.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/att.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/att.asm.Sref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/att.asm.Sref -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/att.asm.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/att.asm.ref -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/corner.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/corner.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/disp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/disp.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/obscure.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/obscure.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/reljmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/reljmp.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/sext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/sext.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/sext.asm.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/sext.asm.ref -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/32/test32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/32/test32.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/64/branch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/64/branch.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/64/disp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/64/disp.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/64/disp.asm.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/64/disp.asm.ref -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/64/reljmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/64/reljmp.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/64/sext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/64/sext.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/64/sext.asm.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/64/sext.asm.ref -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/asm/64/test64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/asm/64/test64.asm -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/bufoverrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/bufoverrun.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/difftest.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/difftest.sh.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/installcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/installcheck.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/libcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/libcheck.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/oprgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/oprgen.py -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/symresolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/symresolve.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/tests/symresolve.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/tests/symresolve.ref -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/udcli/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/udcli/Makefile.am -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/udcli/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/udcli/Makefile.in -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/udcli/udcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/udcli/udcli.c -------------------------------------------------------------------------------- /SRW/udis86-1.7.2/udis86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86-1.7.2/udis86.h -------------------------------------------------------------------------------- /SRW/udis86_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86_dep.c -------------------------------------------------------------------------------- /SRW/udis86_dep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/udis86_dep.h -------------------------------------------------------------------------------- /SRW/x86-support/asm_fs_mem.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/x86-support/asm_fs_mem.asm -------------------------------------------------------------------------------- /SRW/x86-support/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/SRW/x86-support/x86inc.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-3dengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-3dengine.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-AIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-AIL.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-AIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-AIL.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBBASMEM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBBASMEM.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBBASMEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBBASMEM.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBDOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBDOS.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBDOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBDOS.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBERROR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBERROR.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBERROR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBERROR.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBOPM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBOPM.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-BBOPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-BBOPM.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-inout.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-inout.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-int.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-int.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-int2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-int2.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-int2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-int2.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-int3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-int3.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-int3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-int3.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-music.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-music.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-out2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-out2.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-out2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-out2.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc-events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc-events.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc-events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc-events.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc-float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc-float.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc-float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc-float.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc-vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc-vfs.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc-vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc-vfs.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-proc.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-screenshot.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-smk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-smk.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-smk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-smk.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-sound.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-sound.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-timer.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Albion-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Albion-timer.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game-int.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game-int2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game-int2.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game-int3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game-int3.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_config.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_config.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_defs.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_misc.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_misc.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_scalerplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_scalerplugin.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_scalerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_scalerplugin.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_thread.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_thread.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/Game_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/Game_vars.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/SConstruct -------------------------------------------------------------------------------- /games/Albion/SR-Main/VKfont1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/VKfont1.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/VKfont2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/VKfont2.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/Game-asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/Game-asm.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/SConscript -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/SR-asm-calls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/SR-asm-calls.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/SR-asm-calls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/SR-asm-calls.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/SR-asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/SR-asm.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/SR-proc-divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/SR-proc-divide.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/SR-proc-divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/SR-proc-divide.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/arm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/arm.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/armconf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/armconf.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/arminc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/arminc.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_divide.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_divide.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_divide.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_divide.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_inout.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_inout.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_inout.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_int.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_int.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_int.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_mem_access.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_mem_access.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_movs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_movs.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_movs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_movs.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_pushx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_pushx.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_pushx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_pushx.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_stos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_stos.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_stos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_stos.s -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/asm_xti.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/code_armlinux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/code_armlinux.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/data_all.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/extern.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/macros.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/arm/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/arm/misc.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/audio.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/audio/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/audio/SConscript -------------------------------------------------------------------------------- /games/Albion/SR-Main/audio/gp2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/audio/gp2x.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/audio/pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/audio/pandora.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/audio/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/audio/pc.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/display.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/display/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/display/SConscript -------------------------------------------------------------------------------- /games/Albion/SR-Main/display/gp2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/display/gp2x.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/display/overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/display/overlay.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/display/pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/display/pandora.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/display/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/display/pc.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/input.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/input/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/input/SConscript -------------------------------------------------------------------------------- /games/Albion/SR-Main/input/gp2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/input/gp2x.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/input/pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/input/pandora.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/input/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/input/pc.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/input/pyra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/input/pyra.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/Game-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/Game-asm.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/SConscript -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/SR-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/SR-asm.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/asm-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/asm-cpu.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/extern.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/extern.llinc -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm.llinc -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_cpu.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_divide.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_inout.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_int.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_int.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_int.llinc -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_movs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_movs.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_pushx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_pushx.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_stos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_stos.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/llasm_xti.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/llasm_xti.llinc -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/macros.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/macros.llinc -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/printf_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/printf_x86.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/llasm/printf_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/llasm/printf_x86.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/main.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/main.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/midi-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/midi-plugins.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/midi-plugins2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/midi-plugins2.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/ptr32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/ptr32.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/scaler-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/scaler-plugins.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/smack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/smack.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/smack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/smack.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/virtualfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/virtualfs.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/virtualfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/virtualfs.h -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/Game-asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/Game-asm.asm -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/SConscript -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/SR-asm-calls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/SR-asm-calls.asm -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/SR-asm-calls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/SR-asm-calls.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/SR-asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/SR-asm.asm -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/asm_inout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/asm_inout.asm -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/asm_inout.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/asm_int.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/asm_int.asm -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/asm_int.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/asm_xti.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/code_linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/code_linux.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/code_win32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/code_win32.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/data_all.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/extern.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/macros.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/misc.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/x86/x86inc.inc -------------------------------------------------------------------------------- /games/Albion/SR-Main/xmi2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/xmi2mid.c -------------------------------------------------------------------------------- /games/Albion/SR-Main/xmi2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/SR-Main/xmi2mid.h -------------------------------------------------------------------------------- /games/Albion/release/linux/Albion-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/release/linux/Albion-setup.sh -------------------------------------------------------------------------------- /games/Albion/release/linux/Albion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/release/linux/Albion.cfg -------------------------------------------------------------------------------- /games/Albion/release/linux/Albion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/release/linux/Albion.sh -------------------------------------------------------------------------------- /games/Albion/release/windows/Albion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/release/windows/Albion.cfg -------------------------------------------------------------------------------- /games/Albion/release/windows/Albion.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd /D "%~dp0" 3 | set SDL_STDIO_REDIRECT=0 4 | start SR-Main.exe 5 | -------------------------------------------------------------------------------- /games/Albion/smk_play/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/smk_play/SConstruct -------------------------------------------------------------------------------- /games/Albion/smk_play/main1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/smk_play/main1.c -------------------------------------------------------------------------------- /games/Albion/smk_play/smack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/smk_play/smack.c -------------------------------------------------------------------------------- /games/Albion/smk_play/smack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/smk_play/smack.h -------------------------------------------------------------------------------- /games/Albion/smk_play/smk_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Albion/smk_play/smk_defs.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBAVI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBAVI.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBAVI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBAVI.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBBLEV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBBLEV.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBBLEV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBBLEV.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDBG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDBG.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDBG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDBG.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDEPACK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDEPACK.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDEPACK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDEPACK.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDOS.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDOS.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDSA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDSA.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBDSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBDSA.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBFX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBFX.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBFX.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBLBL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBLBL.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBLBL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBLBL.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBLBM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBLBM.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBLBM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBLBM.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBLL.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBLL.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBMEM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBMEM.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBMEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBMEM.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBOPM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBOPM.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBOPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBOPM.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBRNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBRNG.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBRNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBRNG.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBSYSTEM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBSYSTEM.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBSYSTEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBSYSTEM.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBTOOL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBTOOL.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBTOOL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBTOOL.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBTXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBTXT.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/BBTXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/BBTXT.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/CLIB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/CLIB.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/CLIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/CLIB.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/FGT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/FGT.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/FGT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/FGT.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/Game-Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/Game-Config.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/Game-Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/Game-Config.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/Game-Display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/Game-Display.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/Game-Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/Game-Display.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SConstruct -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDI.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDI.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDIcmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDIcmdline.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDIcmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDIcmdline.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDImidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDImidi.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDImidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDImidi.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDIresource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDIresource.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDIresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDIresource.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDIvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDIvideo.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/SDIvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/SDIvideo.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-gdi32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-gdi32.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-gdi32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-gdi32.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-user32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-user32.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-user32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-user32.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-wing32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-wing32.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-wing32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-wing32.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-winmm.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/WinApi-winmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/WinApi-winmm.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/llasm/asm-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/llasm/asm-cpu.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/main.c -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/midi-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/midi-plugins.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/midi-plugins2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/midi-plugins2.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/platform.h -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/x86/FGT-asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/x86/FGT-asm.asm -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/x86/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/x86/SConscript -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/x86/SDI-asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/x86/SDI-asm.asm -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/x86/misc.inc -------------------------------------------------------------------------------- /games/Battle Isle 3/SR-BI3/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/SR-BI3/x86/x86inc.inc -------------------------------------------------------------------------------- /games/Battle Isle 3/release/SDI.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/release/SDI.INI -------------------------------------------------------------------------------- /games/Battle Isle 3/release/linux/BI3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Battle Isle 3/release/linux/BI3.cfg -------------------------------------------------------------------------------- /games/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/README.md -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/CLIB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/CLIB.c -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/CLIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/CLIB.h -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/MSS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/MSS.c -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/MSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/MSS.h -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/QTML.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/QTML.c -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/QTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/QTML.h -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/SConstruct -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/VKfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/VKfont.h -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/WinApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/WinApi.c -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/WinApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/WinApi.h -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/platform.h -------------------------------------------------------------------------------- /games/Septerra Core/SR-Septerra/ptr32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Septerra Core/SR-Septerra/ptr32.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game-int.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game-int2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game-int2.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_config.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_config.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_defs.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_scalerplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_scalerplugin.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_scalerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_scalerplugin.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_thread.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_thread.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Game_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Game_vars.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/SConstruct -------------------------------------------------------------------------------- /games/Warcraft/SR-War/VKfont1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/VKfont1.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/VKfont2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/VKfont2.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-in2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-in2.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-in2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-in2.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-inout.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-inout.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-int.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-int.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-int2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-int2.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-int2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-int2.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-music.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-music.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-out2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-out2.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-out2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-out2.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-proc-vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-proc-vfs.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-proc-vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-proc-vfs.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-proc.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-proc.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-sound.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-sound.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-timer.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/Warcraft-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/Warcraft-timer.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/Game-asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/Game-asm.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/SConscript -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/SR-asm-calls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/SR-asm-calls.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/SR-asm-calls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/SR-asm-calls.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/SR-asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/SR-asm.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/SR-proc-divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/SR-proc-divide.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/SR-proc-divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/SR-proc-divide.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/arm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/arm.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/armconf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/armconf.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/arminc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/arminc.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_divide.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_divide.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_divide.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_divide.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_inout.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_inout.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_inout.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_int.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_int.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_int.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_mem_access.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_mem_access.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_movs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_movs.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_movs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_movs.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_pushx.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_pushx.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_pushx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_pushx.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_stos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_stos.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_stos.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_stos.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/asm_xti.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/cdgogver/.cdgogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/cdver/.cdver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/data_all.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/extern.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/macros.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/misc.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/war-asm-cd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/war-asm-cd.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/arm/war-asm-cdgog.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/arm/war-asm-cdgog.s -------------------------------------------------------------------------------- /games/Warcraft/SR-War/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/audio.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/audio/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/audio/SConscript -------------------------------------------------------------------------------- /games/Warcraft/SR-War/audio/gp2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/audio/gp2x.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/audio/pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/audio/pandora.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/audio/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/audio/pc.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/display.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/display/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/display/SConscript -------------------------------------------------------------------------------- /games/Warcraft/SR-War/display/gp2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/display/gp2x.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/display/pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/display/pandora.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/display/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/display/pc.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/input.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/input/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/input/SConscript -------------------------------------------------------------------------------- /games/Warcraft/SR-War/input/gp2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/input/gp2x.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/input/pandora.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/input/pandora.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/input/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/input/pc.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/input/pyra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/input/pyra.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/Game-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/Game-asm.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/SConscript -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/SR-asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/SR-asm.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/asm-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/asm-cpu.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/cdgogver/.cdgogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/cdver/.cdver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/extern.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/extern.llinc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm.llinc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_cpu.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_divide.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_inout.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_int.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_movs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_movs.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_pushx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_pushx.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_scas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_scas.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/llasm_stos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/llasm_stos.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/macros.llinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/macros.llinc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/printf_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/printf_x86.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/llasm/printf_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/llasm/printf_x86.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/main.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/main.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/midi-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/midi-plugins.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/midi-plugins2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/midi-plugins2.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/ptr32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/ptr32.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/scaler-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/scaler-plugins.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/virtualfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/virtualfs.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/virtualfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/virtualfs.h -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/Game-asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/Game-asm.asm -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/SConscript -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/SR-asm-calls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/SR-asm-calls.asm -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/SR-asm-calls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/SR-asm-calls.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/SR-asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/SR-asm.asm -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/asm_inout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/asm_inout.asm -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/asm_inout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/asm_inout.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/asm_int.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/asm_int.asm -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/asm_int.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/asm_int.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/asm_xti.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/asm_xti.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/cdgogver/.cdgogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/cdver/.cdver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/code_linux.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/code_linux.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/code_win32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/code_win32.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/data_all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/data_all.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/extern.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/extern.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/macros.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/misc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/misc.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/war-asm-cd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/war-asm-cd.asm -------------------------------------------------------------------------------- /games/Warcraft/SR-War/x86/x86inc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/x86/x86inc.inc -------------------------------------------------------------------------------- /games/Warcraft/SR-War/xmi2mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/xmi2mid.c -------------------------------------------------------------------------------- /games/Warcraft/SR-War/xmi2mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/SR-War/xmi2mid.h -------------------------------------------------------------------------------- /games/Warcraft/release/linux/Warcraft.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/Warcraft/release/linux/Warcraft.cfg -------------------------------------------------------------------------------- /games/Warcraft/release/windows/Warcraft.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd /D "%~dp0" 3 | set SDL_STDIO_REDIRECT=0 4 | start SR-War.exe 5 | -------------------------------------------------------------------------------- /games/X-Com - Terror from the Deep/SR-Xcom2/arm/geoscape/gogver/.gogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/X-Com - Terror from the Deep/SR-Xcom2/arm/tactical/gogver/.gogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/X-Com - Terror from the Deep/SR-Xcom2/llasm/geoscape/gogver/.gogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/X-Com - Terror from the Deep/SR-Xcom2/llasm/tactical/gogver/.gogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/X-Com - Terror from the Deep/SR-Xcom2/x86/geoscape/gogver/.gogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/X-Com - Terror from the Deep/SR-Xcom2/x86/tactical/gogver/.gogver: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /games/X-Com - Ufo Defense/SR-Xcom1/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/X-Com - Ufo Defense/SR-Xcom1/audio.h -------------------------------------------------------------------------------- /games/X-Com - Ufo Defense/SR-Xcom1/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/X-Com - Ufo Defense/SR-Xcom1/input.h -------------------------------------------------------------------------------- /games/X-Com - Ufo Defense/SR-Xcom1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/X-Com - Ufo Defense/SR-Xcom1/main.c -------------------------------------------------------------------------------- /games/X-Com - Ufo Defense/SR-Xcom1/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/X-Com - Ufo Defense/SR-Xcom1/main.h -------------------------------------------------------------------------------- /games/X-Com - Ufo Defense/SR-Xcom1/ptr32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/games/X-Com - Ufo Defense/SR-Xcom1/ptr32.h -------------------------------------------------------------------------------- /llasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/llasm/README.md -------------------------------------------------------------------------------- /llasm/komp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/llasm/komp.sh -------------------------------------------------------------------------------- /llasm/llasm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/llasm/llasm.d -------------------------------------------------------------------------------- /midi-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/README.md -------------------------------------------------------------------------------- /midi-plugins/komp-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-arm.sh -------------------------------------------------------------------------------- /midi-plugins/komp-gp2x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-gp2x.sh -------------------------------------------------------------------------------- /midi-plugins/komp-pandora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-pandora.sh -------------------------------------------------------------------------------- /midi-plugins/komp-x64-windows-MSVC.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-x64-windows-MSVC.cmd -------------------------------------------------------------------------------- /midi-plugins/komp-x64-windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-x64-windows.cmd -------------------------------------------------------------------------------- /midi-plugins/komp-x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-x64.sh -------------------------------------------------------------------------------- /midi-plugins/komp-x86-windows-MSVC.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-x86-windows-MSVC.cmd -------------------------------------------------------------------------------- /midi-plugins/komp-x86-windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-x86-windows.cmd -------------------------------------------------------------------------------- /midi-plugins/komp-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/komp-x86.sh -------------------------------------------------------------------------------- /midi-plugins/midi-adlmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi-adlmidi.c -------------------------------------------------------------------------------- /midi-plugins/midi-bassmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi-bassmidi.c -------------------------------------------------------------------------------- /midi-plugins/midi-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi-plugins.h -------------------------------------------------------------------------------- /midi-plugins/midi-plugins2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi-plugins2.h -------------------------------------------------------------------------------- /midi-plugins/midi-wildmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi-wildmidi.c -------------------------------------------------------------------------------- /midi-plugins/midi.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | initialize_midi_plugin 3 | -------------------------------------------------------------------------------- /midi-plugins/midi2-alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi2-alsa.c -------------------------------------------------------------------------------- /midi-plugins/midi2-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi2-common.h -------------------------------------------------------------------------------- /midi-plugins/midi2-gm_on_mt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi2-gm_on_mt32.h -------------------------------------------------------------------------------- /midi-plugins/midi2-windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/midi2-windows.c -------------------------------------------------------------------------------- /midi-plugins/midi2.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | initialize_midi_plugin2 3 | -------------------------------------------------------------------------------- /midi-plugins/xcom12/include/emu_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/include/emu_x86.h -------------------------------------------------------------------------------- /midi-plugins/xcom12/mpsmusic-driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/mpsmusic-driver.c -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/dosbox_opl/opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/dosbox_opl/opl.cpp -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/dosbox_opl/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/dosbox_opl/opl.h -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/emu_awe32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/emu_awe32.c -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/emu_awe32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/emu_awe32.h -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/emu_mt32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/emu_mt32.cpp -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/emu_mt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/emu_mt32.h -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/emu_opl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/emu_opl2.cpp -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/emu_opl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/emu_opl2.h -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/emu_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/emu_x86.c -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/nuked_opl3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/nuked_opl3/LICENSE -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/nuked_opl3/opl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/nuked_opl3/opl3.c -------------------------------------------------------------------------------- /midi-plugins/xcom12/src/nuked_opl3/opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/midi-plugins/xcom12/src/nuked_opl3/opl3.h -------------------------------------------------------------------------------- /pycfg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/pycfg/README.md -------------------------------------------------------------------------------- /pycfg/pycfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/pycfg/pycfg.py -------------------------------------------------------------------------------- /scaler-plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/README.md -------------------------------------------------------------------------------- /scaler-plugins/hqx/hq2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hq2x.c -------------------------------------------------------------------------------- /scaler-plugins/hqx/hq3x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hq3x.c -------------------------------------------------------------------------------- /scaler-plugins/hqx/hq4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hq4x.c -------------------------------------------------------------------------------- /scaler-plugins/hqx/hqx-common-asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hqx-common-asm.S -------------------------------------------------------------------------------- /scaler-plugins/hqx/hqx-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hqx-common.c -------------------------------------------------------------------------------- /scaler-plugins/hqx/hqx-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hqx-common.h -------------------------------------------------------------------------------- /scaler-plugins/hqx/hqx-interp-alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hqx-interp-alt.h -------------------------------------------------------------------------------- /scaler-plugins/hqx/hqx-interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hqx-interp.h -------------------------------------------------------------------------------- /scaler-plugins/hqx/hqx-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hqx-platform.h -------------------------------------------------------------------------------- /scaler-plugins/hqx/hqx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/hqx/hqx.h -------------------------------------------------------------------------------- /scaler-plugins/komp-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/komp-arm.sh -------------------------------------------------------------------------------- /scaler-plugins/komp-x64-windows-MSVC.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/komp-x64-windows-MSVC.cmd -------------------------------------------------------------------------------- /scaler-plugins/komp-x64-windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/komp-x64-windows.cmd -------------------------------------------------------------------------------- /scaler-plugins/komp-x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/komp-x64.sh -------------------------------------------------------------------------------- /scaler-plugins/komp-x86-windows-MSVC.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/komp-x86-windows-MSVC.cmd -------------------------------------------------------------------------------- /scaler-plugins/komp-x86-windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/komp-x86-windows.cmd -------------------------------------------------------------------------------- /scaler-plugins/komp-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/komp-x86.sh -------------------------------------------------------------------------------- /scaler-plugins/scaler-hqx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/scaler-hqx.c -------------------------------------------------------------------------------- /scaler-plugins/scaler-plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/scaler-plugins.h -------------------------------------------------------------------------------- /scaler-plugins/scaler-xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/scaler-xbrz.cpp -------------------------------------------------------------------------------- /scaler-plugins/scaler.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | initialize_scaler_plugin 3 | -------------------------------------------------------------------------------- /scaler-plugins/xbrz/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/xbrz/Changelog.txt -------------------------------------------------------------------------------- /scaler-plugins/xbrz/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/xbrz/License.txt -------------------------------------------------------------------------------- /scaler-plugins/xbrz/xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/xbrz/xbrz.cpp -------------------------------------------------------------------------------- /scaler-plugins/xbrz/xbrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/xbrz/xbrz.h -------------------------------------------------------------------------------- /scaler-plugins/xbrz/xbrz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/xbrz/xbrz_config.h -------------------------------------------------------------------------------- /scaler-plugins/xbrz/xbrz_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-HT/SR/HEAD/scaler-plugins/xbrz/xbrz_tools.h --------------------------------------------------------------------------------