├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── THANKS ├── acinclude.m4 ├── aclocal.m4 ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── docs ├── Makefile.am ├── Makefile.in ├── PORTING ├── README.video └── dosbox.1 ├── include ├── Makefile.am ├── Makefile.in ├── bios.h ├── bios_disk.h ├── callback.h ├── control.h ├── cpu.h ├── cross.h ├── debug.h ├── dma.h ├── dos_inc.h ├── dos_system.h ├── dosbox.h ├── fpu.h ├── hardware.h ├── inout.h ├── ipx.h ├── ipxserver.h ├── joystick.h ├── keyboard.h ├── logging.h ├── mapper.h ├── mem.h ├── mixer.h ├── modules.h ├── mouse.h ├── paging.h ├── pic.h ├── programs.h ├── regs.h ├── render.h ├── serialport.h ├── setup.h ├── shell.h ├── support.h ├── timer.h ├── vga.h └── video.h ├── install-sh ├── kolibrios_build.sh ├── missing ├── src ├── Makefile.am ├── Makefile.in ├── cpu │ ├── Makefile.am │ ├── Makefile.in │ ├── callback.cpp │ ├── core_dyn_x86.cpp │ ├── core_dyn_x86 │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cache.h │ │ ├── decoder.h │ │ ├── dyn_fpu.h │ │ ├── dyn_fpu_dh.h │ │ ├── helpers.h │ │ ├── risc_x86.h │ │ └── string.h │ ├── core_dynrec.cpp │ ├── core_dynrec │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cache.h │ │ ├── decoder.h │ │ ├── decoder_basic.h │ │ ├── decoder_opcodes.h │ │ ├── dyn_fpu.h │ │ ├── operators.h │ │ ├── risc_armv4le-common.h │ │ ├── risc_armv4le-o3.h │ │ ├── risc_armv4le-s3.h │ │ ├── risc_armv4le-thumb-iw.h │ │ ├── risc_armv4le-thumb-niw.h │ │ ├── risc_armv4le-thumb.h │ │ ├── risc_armv4le.h │ │ ├── risc_mipsel32.h │ │ ├── risc_x64.h │ │ └── risc_x86.h │ ├── core_full.cpp │ ├── core_full │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ea_lookup.h │ │ ├── load.h │ │ ├── loadwrite.h │ │ ├── op.h │ │ ├── optable.h │ │ ├── save.h │ │ ├── string.h │ │ └── support.h │ ├── core_normal.cpp │ ├── core_normal │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── helpers.h │ │ ├── prefix_0f.h │ │ ├── prefix_66.h │ │ ├── prefix_66_0f.h │ │ ├── prefix_none.h │ │ ├── string.h │ │ ├── support.h │ │ └── table_ea.h │ ├── core_prefetch.cpp │ ├── core_simple.cpp │ ├── cpu.cpp │ ├── flags.cpp │ ├── instructions.h │ ├── lazyflags.h │ ├── modrm.cpp │ ├── modrm.h │ └── paging.cpp ├── debug │ ├── Makefile.am │ ├── Makefile.in │ ├── debug.cpp │ ├── debug_disasm.cpp │ ├── debug_gui.cpp │ ├── debug_inc.h │ ├── debug_win32.cpp │ └── disasm_tables.h ├── dos │ ├── Makefile.am │ ├── Makefile.in │ ├── cdrom.cpp │ ├── cdrom.h │ ├── cdrom_aspi_win32.cpp │ ├── cdrom_image.cpp │ ├── cdrom_ioctl_linux.cpp │ ├── cdrom_ioctl_os2.cpp │ ├── cdrom_ioctl_win32.cpp │ ├── dev_con.h │ ├── dos.cpp │ ├── dos_classes.cpp │ ├── dos_codepages.h │ ├── dos_devices.cpp │ ├── dos_execute.cpp │ ├── dos_files.cpp │ ├── dos_ioctl.cpp │ ├── dos_keyboard_layout.cpp │ ├── dos_keyboard_layout_data.h │ ├── dos_memory.cpp │ ├── dos_misc.cpp │ ├── dos_mscdex.cpp │ ├── dos_programs.cpp │ ├── dos_tables.cpp │ ├── drive_cache.cpp │ ├── drive_fat.cpp │ ├── drive_iso.cpp │ ├── drive_local.cpp │ ├── drive_virtual.cpp │ ├── drives.cpp │ ├── drives.h │ ├── scsidefs.h │ └── wnaspi32.h ├── dosbox.cpp ├── dosbox.ico ├── fpu │ ├── Makefile.am │ ├── Makefile.in │ ├── fpu.cpp │ ├── fpu_instructions.h │ └── fpu_instructions_x86.h ├── gui │ ├── Makefile.am │ ├── Makefile.in │ ├── dosbox_logo.h │ ├── dosbox_splash.h │ ├── midi.cpp │ ├── midi_alsa.h │ ├── midi_coreaudio.h │ ├── midi_coremidi.h │ ├── midi_oss.h │ ├── midi_win32.h │ ├── render.cpp │ ├── render_loops.h │ ├── render_scalers.cpp │ ├── render_scalers.h │ ├── render_simple.h │ ├── render_templates.h │ ├── render_templates_hq.h │ ├── render_templates_hq2x.h │ ├── render_templates_hq3x.h │ ├── render_templates_sai.h │ ├── sdl_gui.cpp │ ├── sdl_mapper.cpp │ └── sdlmain.cpp ├── hardware │ ├── Makefile.am │ ├── Makefile.in │ ├── adlib.cpp │ ├── adlib.h │ ├── cmos.cpp │ ├── dbopl.cpp │ ├── dbopl.h │ ├── disney.cpp │ ├── dma.cpp │ ├── gameblaster.cpp │ ├── gus.cpp │ ├── hardware.cpp │ ├── iohandler.cpp │ ├── ipx.cpp │ ├── ipxserver.cpp │ ├── joystick.cpp │ ├── keyboard.cpp │ ├── mame │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── emu.h │ │ ├── saa1099.cpp │ │ ├── saa1099.h │ │ ├── sn76496.cpp │ │ └── sn76496.h │ ├── memory.cpp │ ├── mixer.cpp │ ├── mpu401.cpp │ ├── opl.cpp │ ├── opl.h │ ├── pcspeaker.cpp │ ├── pic.cpp │ ├── sblaster.cpp │ ├── serialport │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── directserial.cpp │ │ ├── directserial.h │ │ ├── libserial.cpp │ │ ├── libserial.h │ │ ├── misc_util.cpp │ │ ├── misc_util.h │ │ ├── nullmodem.cpp │ │ ├── nullmodem.h │ │ ├── serialdummy.cpp │ │ ├── serialdummy.h │ │ ├── serialport.cpp │ │ ├── softmodem.cpp │ │ └── softmodem.h │ ├── tandy_sound.cpp │ ├── timer.cpp │ ├── vga.cpp │ ├── vga_attr.cpp │ ├── vga_crtc.cpp │ ├── vga_dac.cpp │ ├── vga_draw.cpp │ ├── vga_gfx.cpp │ ├── vga_memory.cpp │ ├── vga_misc.cpp │ ├── vga_other.cpp │ ├── vga_paradise.cpp │ ├── vga_s3.cpp │ ├── vga_seq.cpp │ ├── vga_tseng.cpp │ └── vga_xga.cpp ├── ints │ ├── Makefile.am │ ├── Makefile.in │ ├── bios.cpp │ ├── bios_disk.cpp │ ├── bios_keyboard.cpp │ ├── ems.cpp │ ├── int10.cpp │ ├── int10.h │ ├── int10_char.cpp │ ├── int10_memory.cpp │ ├── int10_misc.cpp │ ├── int10_modes.cpp │ ├── int10_pal.cpp │ ├── int10_put_pixel.cpp │ ├── int10_vesa.cpp │ ├── int10_video_state.cpp │ ├── int10_vptable.cpp │ ├── mouse.cpp │ ├── xms.cpp │ └── xms.h ├── libs │ ├── Makefile.am │ ├── Makefile.in │ ├── gui_tk │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── gui_tk.cpp │ │ └── gui_tk.h │ └── zmbv │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── zmbv.cpp │ │ └── zmbv.h ├── misc │ ├── Makefile.am │ ├── Makefile.in │ ├── cross.cpp │ ├── messages.cpp │ ├── programs.cpp │ ├── setup.cpp │ └── support.cpp ├── platform │ ├── Makefile.am │ ├── Makefile.in │ ├── sdl-win32.diff │ └── visualc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── config.h │ │ ├── ntddcdrm.h │ │ ├── ntddscsi.h │ │ └── unistd.h ├── shell │ ├── Makefile.am │ ├── Makefile.in │ ├── shell.cpp │ ├── shell_batch.cpp │ ├── shell_cmds.cpp │ └── shell_misc.cpp └── winres.rc ├── visualc_net ├── Makefile.am ├── Makefile.in ├── dosbox.sln └── dosbox.vcproj └── warcraft.jpeg /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/THANKS -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/autogen.sh -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/config.h.in -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/depcomp -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/docs/Makefile.in -------------------------------------------------------------------------------- /docs/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/docs/PORTING -------------------------------------------------------------------------------- /docs/README.video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/docs/README.video -------------------------------------------------------------------------------- /docs/dosbox.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/docs/dosbox.1 -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/Makefile.in -------------------------------------------------------------------------------- /include/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/bios.h -------------------------------------------------------------------------------- /include/bios_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/bios_disk.h -------------------------------------------------------------------------------- /include/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/callback.h -------------------------------------------------------------------------------- /include/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/control.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/cross.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/dma.h -------------------------------------------------------------------------------- /include/dos_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/dos_inc.h -------------------------------------------------------------------------------- /include/dos_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/dos_system.h -------------------------------------------------------------------------------- /include/dosbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/dosbox.h -------------------------------------------------------------------------------- /include/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/fpu.h -------------------------------------------------------------------------------- /include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/hardware.h -------------------------------------------------------------------------------- /include/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/inout.h -------------------------------------------------------------------------------- /include/ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/ipx.h -------------------------------------------------------------------------------- /include/ipxserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/ipxserver.h -------------------------------------------------------------------------------- /include/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/joystick.h -------------------------------------------------------------------------------- /include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/keyboard.h -------------------------------------------------------------------------------- /include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/logging.h -------------------------------------------------------------------------------- /include/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/mapper.h -------------------------------------------------------------------------------- /include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/mem.h -------------------------------------------------------------------------------- /include/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/mixer.h -------------------------------------------------------------------------------- /include/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/modules.h -------------------------------------------------------------------------------- /include/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/mouse.h -------------------------------------------------------------------------------- /include/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/paging.h -------------------------------------------------------------------------------- /include/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/pic.h -------------------------------------------------------------------------------- /include/programs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/programs.h -------------------------------------------------------------------------------- /include/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/regs.h -------------------------------------------------------------------------------- /include/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/render.h -------------------------------------------------------------------------------- /include/serialport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/serialport.h -------------------------------------------------------------------------------- /include/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/setup.h -------------------------------------------------------------------------------- /include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/shell.h -------------------------------------------------------------------------------- /include/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/support.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/vga.h -------------------------------------------------------------------------------- /include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/include/video.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/install-sh -------------------------------------------------------------------------------- /kolibrios_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/kolibrios_build.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/missing -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/cpu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/Makefile.am -------------------------------------------------------------------------------- /src/cpu/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/Makefile.in -------------------------------------------------------------------------------- /src/cpu/callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/callback.cpp -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86.cpp -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/Makefile.am -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/Makefile.in -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/cache.h -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/decoder.h -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/dyn_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/dyn_fpu.h -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/dyn_fpu_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/dyn_fpu_dh.h -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/helpers.h -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/risc_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/risc_x86.h -------------------------------------------------------------------------------- /src/cpu/core_dyn_x86/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dyn_x86/string.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec.cpp -------------------------------------------------------------------------------- /src/cpu/core_dynrec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/Makefile.am -------------------------------------------------------------------------------- /src/cpu/core_dynrec/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/Makefile.in -------------------------------------------------------------------------------- /src/cpu/core_dynrec/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/cache.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/decoder.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/decoder_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/decoder_basic.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/decoder_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/decoder_opcodes.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/dyn_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/dyn_fpu.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/operators.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_armv4le-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_armv4le-common.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_armv4le-o3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_armv4le-o3.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_armv4le-s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_armv4le-s3.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_armv4le-thumb-iw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_armv4le-thumb-iw.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_armv4le-thumb-niw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_armv4le-thumb-niw.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_armv4le-thumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_armv4le-thumb.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_armv4le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_armv4le.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_mipsel32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_mipsel32.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_x64.h -------------------------------------------------------------------------------- /src/cpu/core_dynrec/risc_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_dynrec/risc_x86.h -------------------------------------------------------------------------------- /src/cpu/core_full.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full.cpp -------------------------------------------------------------------------------- /src/cpu/core_full/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/Makefile.am -------------------------------------------------------------------------------- /src/cpu/core_full/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/Makefile.in -------------------------------------------------------------------------------- /src/cpu/core_full/ea_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/ea_lookup.h -------------------------------------------------------------------------------- /src/cpu/core_full/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/load.h -------------------------------------------------------------------------------- /src/cpu/core_full/loadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/loadwrite.h -------------------------------------------------------------------------------- /src/cpu/core_full/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/op.h -------------------------------------------------------------------------------- /src/cpu/core_full/optable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/optable.h -------------------------------------------------------------------------------- /src/cpu/core_full/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/save.h -------------------------------------------------------------------------------- /src/cpu/core_full/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/string.h -------------------------------------------------------------------------------- /src/cpu/core_full/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_full/support.h -------------------------------------------------------------------------------- /src/cpu/core_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal.cpp -------------------------------------------------------------------------------- /src/cpu/core_normal/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/Makefile.am -------------------------------------------------------------------------------- /src/cpu/core_normal/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/Makefile.in -------------------------------------------------------------------------------- /src/cpu/core_normal/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/helpers.h -------------------------------------------------------------------------------- /src/cpu/core_normal/prefix_0f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/prefix_0f.h -------------------------------------------------------------------------------- /src/cpu/core_normal/prefix_66.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/prefix_66.h -------------------------------------------------------------------------------- /src/cpu/core_normal/prefix_66_0f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/prefix_66_0f.h -------------------------------------------------------------------------------- /src/cpu/core_normal/prefix_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/prefix_none.h -------------------------------------------------------------------------------- /src/cpu/core_normal/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/string.h -------------------------------------------------------------------------------- /src/cpu/core_normal/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/support.h -------------------------------------------------------------------------------- /src/cpu/core_normal/table_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_normal/table_ea.h -------------------------------------------------------------------------------- /src/cpu/core_prefetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_prefetch.cpp -------------------------------------------------------------------------------- /src/cpu/core_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/core_simple.cpp -------------------------------------------------------------------------------- /src/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/cpu.cpp -------------------------------------------------------------------------------- /src/cpu/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/flags.cpp -------------------------------------------------------------------------------- /src/cpu/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/instructions.h -------------------------------------------------------------------------------- /src/cpu/lazyflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/lazyflags.h -------------------------------------------------------------------------------- /src/cpu/modrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/modrm.cpp -------------------------------------------------------------------------------- /src/cpu/modrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/modrm.h -------------------------------------------------------------------------------- /src/cpu/paging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/cpu/paging.cpp -------------------------------------------------------------------------------- /src/debug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/Makefile.am -------------------------------------------------------------------------------- /src/debug/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/Makefile.in -------------------------------------------------------------------------------- /src/debug/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/debug.cpp -------------------------------------------------------------------------------- /src/debug/debug_disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/debug_disasm.cpp -------------------------------------------------------------------------------- /src/debug/debug_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/debug_gui.cpp -------------------------------------------------------------------------------- /src/debug/debug_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/debug_inc.h -------------------------------------------------------------------------------- /src/debug/debug_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/debug_win32.cpp -------------------------------------------------------------------------------- /src/debug/disasm_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/debug/disasm_tables.h -------------------------------------------------------------------------------- /src/dos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/Makefile.am -------------------------------------------------------------------------------- /src/dos/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/Makefile.in -------------------------------------------------------------------------------- /src/dos/cdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/cdrom.cpp -------------------------------------------------------------------------------- /src/dos/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/cdrom.h -------------------------------------------------------------------------------- /src/dos/cdrom_aspi_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/cdrom_aspi_win32.cpp -------------------------------------------------------------------------------- /src/dos/cdrom_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/cdrom_image.cpp -------------------------------------------------------------------------------- /src/dos/cdrom_ioctl_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/cdrom_ioctl_linux.cpp -------------------------------------------------------------------------------- /src/dos/cdrom_ioctl_os2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/cdrom_ioctl_os2.cpp -------------------------------------------------------------------------------- /src/dos/cdrom_ioctl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/cdrom_ioctl_win32.cpp -------------------------------------------------------------------------------- /src/dos/dev_con.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dev_con.h -------------------------------------------------------------------------------- /src/dos/dos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos.cpp -------------------------------------------------------------------------------- /src/dos/dos_classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_classes.cpp -------------------------------------------------------------------------------- /src/dos/dos_codepages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_codepages.h -------------------------------------------------------------------------------- /src/dos/dos_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_devices.cpp -------------------------------------------------------------------------------- /src/dos/dos_execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_execute.cpp -------------------------------------------------------------------------------- /src/dos/dos_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_files.cpp -------------------------------------------------------------------------------- /src/dos/dos_ioctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_ioctl.cpp -------------------------------------------------------------------------------- /src/dos/dos_keyboard_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_keyboard_layout.cpp -------------------------------------------------------------------------------- /src/dos/dos_keyboard_layout_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_keyboard_layout_data.h -------------------------------------------------------------------------------- /src/dos/dos_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_memory.cpp -------------------------------------------------------------------------------- /src/dos/dos_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_misc.cpp -------------------------------------------------------------------------------- /src/dos/dos_mscdex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_mscdex.cpp -------------------------------------------------------------------------------- /src/dos/dos_programs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_programs.cpp -------------------------------------------------------------------------------- /src/dos/dos_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/dos_tables.cpp -------------------------------------------------------------------------------- /src/dos/drive_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/drive_cache.cpp -------------------------------------------------------------------------------- /src/dos/drive_fat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/drive_fat.cpp -------------------------------------------------------------------------------- /src/dos/drive_iso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/drive_iso.cpp -------------------------------------------------------------------------------- /src/dos/drive_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/drive_local.cpp -------------------------------------------------------------------------------- /src/dos/drive_virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/drive_virtual.cpp -------------------------------------------------------------------------------- /src/dos/drives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/drives.cpp -------------------------------------------------------------------------------- /src/dos/drives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/drives.h -------------------------------------------------------------------------------- /src/dos/scsidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/scsidefs.h -------------------------------------------------------------------------------- /src/dos/wnaspi32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dos/wnaspi32.h -------------------------------------------------------------------------------- /src/dosbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dosbox.cpp -------------------------------------------------------------------------------- /src/dosbox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/dosbox.ico -------------------------------------------------------------------------------- /src/fpu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/fpu/Makefile.am -------------------------------------------------------------------------------- /src/fpu/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/fpu/Makefile.in -------------------------------------------------------------------------------- /src/fpu/fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/fpu/fpu.cpp -------------------------------------------------------------------------------- /src/fpu/fpu_instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/fpu/fpu_instructions.h -------------------------------------------------------------------------------- /src/fpu/fpu_instructions_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/fpu/fpu_instructions_x86.h -------------------------------------------------------------------------------- /src/gui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/Makefile.am -------------------------------------------------------------------------------- /src/gui/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/Makefile.in -------------------------------------------------------------------------------- /src/gui/dosbox_logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/dosbox_logo.h -------------------------------------------------------------------------------- /src/gui/dosbox_splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/dosbox_splash.h -------------------------------------------------------------------------------- /src/gui/midi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/midi.cpp -------------------------------------------------------------------------------- /src/gui/midi_alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/midi_alsa.h -------------------------------------------------------------------------------- /src/gui/midi_coreaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/midi_coreaudio.h -------------------------------------------------------------------------------- /src/gui/midi_coremidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/midi_coremidi.h -------------------------------------------------------------------------------- /src/gui/midi_oss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/midi_oss.h -------------------------------------------------------------------------------- /src/gui/midi_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/midi_win32.h -------------------------------------------------------------------------------- /src/gui/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render.cpp -------------------------------------------------------------------------------- /src/gui/render_loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_loops.h -------------------------------------------------------------------------------- /src/gui/render_scalers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_scalers.cpp -------------------------------------------------------------------------------- /src/gui/render_scalers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_scalers.h -------------------------------------------------------------------------------- /src/gui/render_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_simple.h -------------------------------------------------------------------------------- /src/gui/render_templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_templates.h -------------------------------------------------------------------------------- /src/gui/render_templates_hq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_templates_hq.h -------------------------------------------------------------------------------- /src/gui/render_templates_hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_templates_hq2x.h -------------------------------------------------------------------------------- /src/gui/render_templates_hq3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_templates_hq3x.h -------------------------------------------------------------------------------- /src/gui/render_templates_sai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/render_templates_sai.h -------------------------------------------------------------------------------- /src/gui/sdl_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/sdl_gui.cpp -------------------------------------------------------------------------------- /src/gui/sdl_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/sdl_mapper.cpp -------------------------------------------------------------------------------- /src/gui/sdlmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/gui/sdlmain.cpp -------------------------------------------------------------------------------- /src/hardware/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/Makefile.am -------------------------------------------------------------------------------- /src/hardware/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/Makefile.in -------------------------------------------------------------------------------- /src/hardware/adlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/adlib.cpp -------------------------------------------------------------------------------- /src/hardware/adlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/adlib.h -------------------------------------------------------------------------------- /src/hardware/cmos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/cmos.cpp -------------------------------------------------------------------------------- /src/hardware/dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/dbopl.cpp -------------------------------------------------------------------------------- /src/hardware/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/dbopl.h -------------------------------------------------------------------------------- /src/hardware/disney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/disney.cpp -------------------------------------------------------------------------------- /src/hardware/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/dma.cpp -------------------------------------------------------------------------------- /src/hardware/gameblaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/gameblaster.cpp -------------------------------------------------------------------------------- /src/hardware/gus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/gus.cpp -------------------------------------------------------------------------------- /src/hardware/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/hardware.cpp -------------------------------------------------------------------------------- /src/hardware/iohandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/iohandler.cpp -------------------------------------------------------------------------------- /src/hardware/ipx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/ipx.cpp -------------------------------------------------------------------------------- /src/hardware/ipxserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/ipxserver.cpp -------------------------------------------------------------------------------- /src/hardware/joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/joystick.cpp -------------------------------------------------------------------------------- /src/hardware/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/keyboard.cpp -------------------------------------------------------------------------------- /src/hardware/mame/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mame/Makefile.am -------------------------------------------------------------------------------- /src/hardware/mame/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mame/Makefile.in -------------------------------------------------------------------------------- /src/hardware/mame/emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mame/emu.h -------------------------------------------------------------------------------- /src/hardware/mame/saa1099.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mame/saa1099.cpp -------------------------------------------------------------------------------- /src/hardware/mame/saa1099.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mame/saa1099.h -------------------------------------------------------------------------------- /src/hardware/mame/sn76496.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mame/sn76496.cpp -------------------------------------------------------------------------------- /src/hardware/mame/sn76496.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mame/sn76496.h -------------------------------------------------------------------------------- /src/hardware/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/memory.cpp -------------------------------------------------------------------------------- /src/hardware/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mixer.cpp -------------------------------------------------------------------------------- /src/hardware/mpu401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/mpu401.cpp -------------------------------------------------------------------------------- /src/hardware/opl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/opl.cpp -------------------------------------------------------------------------------- /src/hardware/opl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/opl.h -------------------------------------------------------------------------------- /src/hardware/pcspeaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/pcspeaker.cpp -------------------------------------------------------------------------------- /src/hardware/pic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/pic.cpp -------------------------------------------------------------------------------- /src/hardware/sblaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/sblaster.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/Makefile.am -------------------------------------------------------------------------------- /src/hardware/serialport/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/Makefile.in -------------------------------------------------------------------------------- /src/hardware/serialport/directserial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/directserial.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/directserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/directserial.h -------------------------------------------------------------------------------- /src/hardware/serialport/libserial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/libserial.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/libserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/libserial.h -------------------------------------------------------------------------------- /src/hardware/serialport/misc_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/misc_util.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/misc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/misc_util.h -------------------------------------------------------------------------------- /src/hardware/serialport/nullmodem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/nullmodem.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/nullmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/nullmodem.h -------------------------------------------------------------------------------- /src/hardware/serialport/serialdummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/serialdummy.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/serialdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/serialdummy.h -------------------------------------------------------------------------------- /src/hardware/serialport/serialport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/serialport.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/softmodem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/softmodem.cpp -------------------------------------------------------------------------------- /src/hardware/serialport/softmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/serialport/softmodem.h -------------------------------------------------------------------------------- /src/hardware/tandy_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/tandy_sound.cpp -------------------------------------------------------------------------------- /src/hardware/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/timer.cpp -------------------------------------------------------------------------------- /src/hardware/vga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga.cpp -------------------------------------------------------------------------------- /src/hardware/vga_attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_attr.cpp -------------------------------------------------------------------------------- /src/hardware/vga_crtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_crtc.cpp -------------------------------------------------------------------------------- /src/hardware/vga_dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_dac.cpp -------------------------------------------------------------------------------- /src/hardware/vga_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_draw.cpp -------------------------------------------------------------------------------- /src/hardware/vga_gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_gfx.cpp -------------------------------------------------------------------------------- /src/hardware/vga_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_memory.cpp -------------------------------------------------------------------------------- /src/hardware/vga_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_misc.cpp -------------------------------------------------------------------------------- /src/hardware/vga_other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_other.cpp -------------------------------------------------------------------------------- /src/hardware/vga_paradise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_paradise.cpp -------------------------------------------------------------------------------- /src/hardware/vga_s3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_s3.cpp -------------------------------------------------------------------------------- /src/hardware/vga_seq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_seq.cpp -------------------------------------------------------------------------------- /src/hardware/vga_tseng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_tseng.cpp -------------------------------------------------------------------------------- /src/hardware/vga_xga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/hardware/vga_xga.cpp -------------------------------------------------------------------------------- /src/ints/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/Makefile.am -------------------------------------------------------------------------------- /src/ints/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/Makefile.in -------------------------------------------------------------------------------- /src/ints/bios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/bios.cpp -------------------------------------------------------------------------------- /src/ints/bios_disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/bios_disk.cpp -------------------------------------------------------------------------------- /src/ints/bios_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/bios_keyboard.cpp -------------------------------------------------------------------------------- /src/ints/ems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/ems.cpp -------------------------------------------------------------------------------- /src/ints/int10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10.cpp -------------------------------------------------------------------------------- /src/ints/int10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10.h -------------------------------------------------------------------------------- /src/ints/int10_char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_char.cpp -------------------------------------------------------------------------------- /src/ints/int10_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_memory.cpp -------------------------------------------------------------------------------- /src/ints/int10_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_misc.cpp -------------------------------------------------------------------------------- /src/ints/int10_modes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_modes.cpp -------------------------------------------------------------------------------- /src/ints/int10_pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_pal.cpp -------------------------------------------------------------------------------- /src/ints/int10_put_pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_put_pixel.cpp -------------------------------------------------------------------------------- /src/ints/int10_vesa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_vesa.cpp -------------------------------------------------------------------------------- /src/ints/int10_video_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_video_state.cpp -------------------------------------------------------------------------------- /src/ints/int10_vptable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/int10_vptable.cpp -------------------------------------------------------------------------------- /src/ints/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/mouse.cpp -------------------------------------------------------------------------------- /src/ints/xms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/xms.cpp -------------------------------------------------------------------------------- /src/ints/xms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/ints/xms.h -------------------------------------------------------------------------------- /src/libs/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/include 2 | 3 | SUBDIRS = zmbv gui_tk 4 | -------------------------------------------------------------------------------- /src/libs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/Makefile.in -------------------------------------------------------------------------------- /src/libs/gui_tk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/gui_tk/Makefile.am -------------------------------------------------------------------------------- /src/libs/gui_tk/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/gui_tk/Makefile.in -------------------------------------------------------------------------------- /src/libs/gui_tk/gui_tk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/gui_tk/gui_tk.cpp -------------------------------------------------------------------------------- /src/libs/gui_tk/gui_tk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/gui_tk/gui_tk.h -------------------------------------------------------------------------------- /src/libs/zmbv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/zmbv/Makefile.am -------------------------------------------------------------------------------- /src/libs/zmbv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/zmbv/Makefile.in -------------------------------------------------------------------------------- /src/libs/zmbv/zmbv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/zmbv/zmbv.cpp -------------------------------------------------------------------------------- /src/libs/zmbv/zmbv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/libs/zmbv/zmbv.h -------------------------------------------------------------------------------- /src/misc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/misc/Makefile.am -------------------------------------------------------------------------------- /src/misc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/misc/Makefile.in -------------------------------------------------------------------------------- /src/misc/cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/misc/cross.cpp -------------------------------------------------------------------------------- /src/misc/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/misc/messages.cpp -------------------------------------------------------------------------------- /src/misc/programs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/misc/programs.cpp -------------------------------------------------------------------------------- /src/misc/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/misc/setup.cpp -------------------------------------------------------------------------------- /src/misc/support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/misc/support.cpp -------------------------------------------------------------------------------- /src/platform/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = visualc 2 | 3 | EXTRA_DIST = sdl-win32.diff -------------------------------------------------------------------------------- /src/platform/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/Makefile.in -------------------------------------------------------------------------------- /src/platform/sdl-win32.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/sdl-win32.diff -------------------------------------------------------------------------------- /src/platform/visualc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/visualc/Makefile.am -------------------------------------------------------------------------------- /src/platform/visualc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/visualc/Makefile.in -------------------------------------------------------------------------------- /src/platform/visualc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/visualc/config.h -------------------------------------------------------------------------------- /src/platform/visualc/ntddcdrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/visualc/ntddcdrm.h -------------------------------------------------------------------------------- /src/platform/visualc/ntddscsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/visualc/ntddscsi.h -------------------------------------------------------------------------------- /src/platform/visualc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/platform/visualc/unistd.h -------------------------------------------------------------------------------- /src/shell/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/shell/Makefile.am -------------------------------------------------------------------------------- /src/shell/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/shell/Makefile.in -------------------------------------------------------------------------------- /src/shell/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/shell/shell.cpp -------------------------------------------------------------------------------- /src/shell/shell_batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/shell/shell_batch.cpp -------------------------------------------------------------------------------- /src/shell/shell_cmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/shell/shell_cmds.cpp -------------------------------------------------------------------------------- /src/shell/shell_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/shell/shell_misc.cpp -------------------------------------------------------------------------------- /src/winres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/src/winres.rc -------------------------------------------------------------------------------- /visualc_net/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/visualc_net/Makefile.am -------------------------------------------------------------------------------- /visualc_net/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/visualc_net/Makefile.in -------------------------------------------------------------------------------- /visualc_net/dosbox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/visualc_net/dosbox.sln -------------------------------------------------------------------------------- /visualc_net/dosbox.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/visualc_net/dosbox.vcproj -------------------------------------------------------------------------------- /warcraft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KolibriOS/DOSBox/HEAD/warcraft.jpeg --------------------------------------------------------------------------------