2020-04-04 12:45:47 +02:00
|
|
|
/*
|
2017-05-30 03:38:38 +02:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the 86Box distribution.
|
|
|
|
|
*
|
2017-11-19 03:15:29 -05:00
|
|
|
* Application resource script for Windows.
|
2017-05-30 03:38:38 +02:00
|
|
|
*
|
2017-06-04 02:11:19 -04:00
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2018-08-04 01:36:49 +02:00
|
|
|
* David Hrdlička, <hrdlickadavid@outlook.com>
|
2017-10-13 02:44:32 -04:00
|
|
|
*
|
2019-10-21 22:53:50 +02:00
|
|
|
* Copyright 2016-2019 Miran Grca.
|
|
|
|
|
* Copyright 2018,2019 David Hrdlička.
|
2021-11-07 21:32:06 +01:00
|
|
|
* Copyright 2021 Laci bá'
|
2017-05-30 03:38:38 +02:00
|
|
|
*/
|
2017-06-04 22:18:41 -04:00
|
|
|
#define IN_RESOURCE_H
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <86box/resource.h>
|
2020-12-16 20:43:35 +01:00
|
|
|
#include <86box/language.h>
|
2020-06-26 13:26:42 +02:00
|
|
|
#include <86box/version.h>
|
2017-06-04 22:18:41 -04:00
|
|
|
#undef IN_RESOURCE_H
|
2017-05-18 14:03:43 -04:00
|
|
|
|
|
|
|
|
#define APSTUDIO_READONLY_SYMBOLS
|
|
|
|
|
#define APSTUDIO_HIDDEN_SYMBOLS
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <windows.h>
|
2017-05-18 14:03:43 -04:00
|
|
|
#undef APSTUDIO_HIDDEN_SYMBOLS
|
|
|
|
|
#undef APSTUDIO_READONLY_SYMBOLS
|
|
|
|
|
|
|
|
|
|
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Accelerator
|
|
|
|
|
//
|
|
|
|
|
|
2017-10-07 00:46:54 -04:00
|
|
|
MainAccel ACCELERATORS MOVEABLE PURE
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
#ifdef ENABLE_VRAM_DUMP
|
2017-06-04 22:18:41 -04:00
|
|
|
VK_F1, IDM_DUMP_VRAM, CONTROL, VIRTKEY
|
2017-05-18 14:03:43 -04:00
|
|
|
#endif
|
2017-06-04 22:18:41 -04:00
|
|
|
#ifdef ENABLE_SERIAL_LOG
|
|
|
|
|
VK_F3, IDM_LOG_SERIAL, CONTROL, VIRTKEY
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ENABLE_BUSLOGIC_LOG
|
|
|
|
|
VK_F4, IDM_LOG_BUSLOGIC, CONTROL, VIRTKEY
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ENABLE_CDROM_LOG
|
|
|
|
|
VK_F5, IDM_LOG_CDROM, CONTROL, VIRTKEY
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ENABLE_D86F_LOG
|
|
|
|
|
VK_F6, IDM_LOG_D86F, CONTROL, VIRTKEY
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ENABLE_FDC_LOG
|
|
|
|
|
VK_F7, IDM_LOG_FDC, CONTROL, VIRTKEY
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ENABLE_IDE_LOG
|
|
|
|
|
VK_F8, IDM_LOG_IDE, CONTROL, VIRTKEY
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef ENABLE_NIC_LOG
|
|
|
|
|
VK_F9, IDM_LOG_NIC, CONTROL, VIRTKEY
|
2017-05-18 14:03:43 -04:00
|
|
|
#endif
|
|
|
|
|
#ifdef ENABLE_LOG_BREAKPOINT
|
2017-06-04 22:18:41 -04:00
|
|
|
VK_F10, IDM_LOG_BREAKPOINT, CONTROL, VIRTKEY
|
2021-02-10 20:22:51 +00:00
|
|
|
#endif
|
|
|
|
|
#ifdef MTR_ENABLED
|
|
|
|
|
"T", IDM_ACTION_TRACE, CONTROL, VIRTKEY
|
2017-05-18 14:03:43 -04:00
|
|
|
#endif
|
2017-06-04 22:18:41 -04:00
|
|
|
VK_PRIOR,IDM_VID_FULLSCREEN, VIRTKEY, CONTROL , ALT
|
|
|
|
|
VK_F11, IDM_ACTION_SCREENSHOT, VIRTKEY, CONTROL
|
|
|
|
|
VK_F12, IDM_ACTION_RESET_CAD, VIRTKEY, CONTROL
|
2019-03-20 02:51:11 +08:00
|
|
|
VK_PAUSE,IDM_ACTION_PAUSE, VIRTKEY
|
2017-05-18 14:03:43 -04:00
|
|
|
END
|
|
|
|
|
|
|
|
|
|
|
2021-01-12 18:22:40 +01:00
|
|
|
#ifndef NO_INCLUDE_MANIFEST
|
2017-05-18 14:03:43 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// 24
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
1 24 MOVEABLE PURE "86Box.manifest"
|
2021-01-12 18:22:40 +01:00
|
|
|
#endif
|
2017-05-18 14:03:43 -04:00
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Icon
|
|
|
|
|
//
|
|
|
|
|
|
2021-01-12 18:22:40 +01:00
|
|
|
#ifdef CMAKE
|
|
|
|
|
#define ICON_PATH
|
|
|
|
|
#else
|
|
|
|
|
#define ICON_PATH "win/"
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-05-18 14:03:43 -04:00
|
|
|
// Icon with lowest ID value placed first to ensure application icon
|
|
|
|
|
// remains consistent on all systems.
|
2021-10-11 08:52:10 +02:00
|
|
|
// defining the icons depending on the build status
|
2017-05-18 14:03:43 -04:00
|
|
|
#ifdef RELEASE_BUILD
|
2021-10-11 08:52:10 +02:00
|
|
|
/* Icon by OBattler and laciba96 (green for release builds)*/
|
|
|
|
|
10 ICON DISCARDABLE ICON_PATH "icons/86Box-green.ico"
|
|
|
|
|
#elif BETA_BUILD
|
|
|
|
|
/* Icon by OBattler and laciba96 (yellow for beta builds done by Jenkins)*/
|
|
|
|
|
10 ICON DISCARDABLE ICON_PATH "icons/86Box-yellow.ico"
|
|
|
|
|
#elif ALPHA_BUILD
|
|
|
|
|
/* Icon by OBattler and laciba96 (red for alpha builds done by Jenkins)*/
|
|
|
|
|
10 ICON DISCARDABLE ICON_PATH "icons/86Box-red.ico"
|
2017-05-18 14:03:43 -04:00
|
|
|
#else
|
2021-10-11 08:52:10 +02:00
|
|
|
/* Icon by OBattler and laciba96 (gray for builds of branches and from the git master)*/
|
|
|
|
|
10 ICON DISCARDABLE ICON_PATH "icons/86Box-gray.ico"
|
2017-05-18 14:03:43 -04:00
|
|
|
#endif
|
2021-01-12 18:22:40 +01:00
|
|
|
16 ICON DISCARDABLE ICON_PATH "icons/floppy_525.ico"
|
|
|
|
|
17 ICON DISCARDABLE ICON_PATH "icons/floppy_525_active.ico"
|
|
|
|
|
24 ICON DISCARDABLE ICON_PATH "icons/floppy_35.ico"
|
|
|
|
|
25 ICON DISCARDABLE ICON_PATH "icons/floppy_35_active.ico"
|
|
|
|
|
32 ICON DISCARDABLE ICON_PATH "icons/cdrom.ico"
|
|
|
|
|
33 ICON DISCARDABLE ICON_PATH "icons/cdrom_active.ico"
|
|
|
|
|
48 ICON DISCARDABLE ICON_PATH "icons/zip.ico"
|
|
|
|
|
49 ICON DISCARDABLE ICON_PATH "icons/zip_active.ico"
|
|
|
|
|
56 ICON DISCARDABLE ICON_PATH "icons/mo.ico"
|
|
|
|
|
57 ICON DISCARDABLE ICON_PATH "icons/mo_active.ico"
|
|
|
|
|
64 ICON DISCARDABLE ICON_PATH "icons/cassette.ico"
|
|
|
|
|
65 ICON DISCARDABLE ICON_PATH "icons/cassette_active.ico"
|
|
|
|
|
80 ICON DISCARDABLE ICON_PATH "icons/hard_disk.ico"
|
|
|
|
|
81 ICON DISCARDABLE ICON_PATH "icons/hard_disk_active.ico"
|
|
|
|
|
96 ICON DISCARDABLE ICON_PATH "icons/network.ico"
|
|
|
|
|
97 ICON DISCARDABLE ICON_PATH "icons/network_active.ico"
|
2021-07-29 20:34:55 +02:00
|
|
|
104 ICON DISCARDABLE ICON_PATH "icons/cartridge.ico"
|
2021-01-12 18:22:40 +01:00
|
|
|
144 ICON DISCARDABLE ICON_PATH "icons/floppy_525_empty.ico"
|
|
|
|
|
145 ICON DISCARDABLE ICON_PATH "icons/floppy_525_empty_active.ico"
|
|
|
|
|
152 ICON DISCARDABLE ICON_PATH "icons/floppy_35_empty.ico"
|
|
|
|
|
153 ICON DISCARDABLE ICON_PATH "icons/floppy_35_empty_active.ico"
|
|
|
|
|
160 ICON DISCARDABLE ICON_PATH "icons/cdrom_empty.ico"
|
|
|
|
|
161 ICON DISCARDABLE ICON_PATH "icons/cdrom_empty_active.ico"
|
|
|
|
|
176 ICON DISCARDABLE ICON_PATH "icons/zip_empty.ico"
|
|
|
|
|
177 ICON DISCARDABLE ICON_PATH "icons/zip_empty_active.ico"
|
|
|
|
|
184 ICON DISCARDABLE ICON_PATH "icons/mo_empty.ico"
|
|
|
|
|
185 ICON DISCARDABLE ICON_PATH "icons/mo_empty_active.ico"
|
|
|
|
|
192 ICON DISCARDABLE ICON_PATH "icons/cassette_empty.ico"
|
|
|
|
|
193 ICON DISCARDABLE ICON_PATH "icons/cassette_empty_active.ico"
|
2021-07-29 20:34:55 +02:00
|
|
|
232 ICON DISCARDABLE ICON_PATH "icons/cartridge_empty.ico"
|
2021-01-12 18:22:40 +01:00
|
|
|
240 ICON DISCARDABLE ICON_PATH "icons/machine.ico"
|
|
|
|
|
241 ICON DISCARDABLE ICON_PATH "icons/display.ico"
|
|
|
|
|
242 ICON DISCARDABLE ICON_PATH "icons/input_devices.ico"
|
|
|
|
|
243 ICON DISCARDABLE ICON_PATH "icons/sound.ico"
|
|
|
|
|
244 ICON DISCARDABLE ICON_PATH "icons/ports.ico"
|
|
|
|
|
245 ICON DISCARDABLE ICON_PATH "icons/other_peripherals.ico"
|
|
|
|
|
246 ICON DISCARDABLE ICON_PATH "icons/floppy_and_cdrom_drives.ico"
|
|
|
|
|
247 ICON DISCARDABLE ICON_PATH "icons/other_removable_devices.ico"
|
|
|
|
|
248 ICON DISCARDABLE ICON_PATH "icons/floppy_disabled.ico"
|
|
|
|
|
249 ICON DISCARDABLE ICON_PATH "icons/cdrom_disabled.ico"
|
|
|
|
|
250 ICON DISCARDABLE ICON_PATH "icons/zip_disabled.ico"
|
|
|
|
|
251 ICON DISCARDABLE ICON_PATH "icons/mo_disabled.ico"
|
|
|
|
|
252 ICON DISCARDABLE ICON_PATH "icons/storage_controllers.ico"
|
2017-05-18 14:03:43 -04:00
|
|
|
|
|
|
|
|
#ifdef APSTUDIO_INVOKED
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// TEXTINCLUDE
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
1 TEXTINCLUDE DISCARDABLE
|
|
|
|
|
BEGIN
|
|
|
|
|
"resource.h\0"
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
2 TEXTINCLUDE DISCARDABLE
|
|
|
|
|
BEGIN
|
|
|
|
|
"#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
|
|
|
|
|
"#include ""windows.h""\r\n"
|
|
|
|
|
"#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
|
|
|
|
|
"#include ""resources.h""\r\n"
|
|
|
|
|
"\0"
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
3 TEXTINCLUDE DISCARDABLE
|
|
|
|
|
BEGIN
|
|
|
|
|
"\r\n"
|
|
|
|
|
"\0"
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
#endif // APSTUDIO_INVOKED
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// DESIGNINFO
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifdef APSTUDIO_INVOKED
|
|
|
|
|
GUIDELINES DESIGNINFO DISCARDABLE
|
|
|
|
|
BEGIN
|
2018-01-17 18:43:36 +01:00
|
|
|
DLG_SND_GAIN, DIALOG
|
|
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 167
|
|
|
|
|
TOPMARGIN, 7
|
|
|
|
|
BOTTOMMARGIN, 129
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
DLG_NEW_FLOPPY, DIALOG
|
|
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
2018-01-19 15:39:13 +01:00
|
|
|
RIGHTMARGIN, 219
|
2018-01-17 18:43:36 +01:00
|
|
|
TOPMARGIN, 7
|
2018-01-19 15:39:13 +01:00
|
|
|
BOTTOMMARGIN, 79
|
2018-01-17 18:43:36 +01:00
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_MAIN, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
RIGHTMARGIN, 365
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
ABOUTDLG, DIALOG
|
|
|
|
|
BEGIN
|
|
|
|
|
RIGHTMARGIN, 208
|
|
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_MACHINE, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
2017-10-15 03:01:40 +02:00
|
|
|
#ifdef USE_DYNAREC
|
|
|
|
|
BOTTOMMARGIN, 87
|
|
|
|
|
#else
|
|
|
|
|
BOTTOMMARGIN, 72
|
|
|
|
|
#endif
|
2017-05-18 14:03:43 -04:00
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_VIDEO, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
2018-07-15 01:41:53 +02:00
|
|
|
BOTTOMMARGIN, 38
|
2017-05-18 14:03:43 -04:00
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_INPUT, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
|
|
|
|
BOTTOMMARGIN, 58
|
|
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_SOUND, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
2017-06-14 07:21:01 +02:00
|
|
|
BOTTOMMARGIN, 109
|
2017-05-18 14:03:43 -04:00
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_NETWORK, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
|
|
|
|
BOTTOMMARGIN, 56
|
|
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_PORTS, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
2017-09-02 23:39:26 +02:00
|
|
|
BOTTOMMARGIN, 48
|
2017-05-18 14:03:43 -04:00
|
|
|
END
|
|
|
|
|
|
2017-09-02 23:39:26 +02:00
|
|
|
DLG_CFG_PERIPHERALS, DIALOG
|
|
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
|
|
|
|
BOTTOMMARGIN, 85
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
DLG_CFG_HARD_DISKS, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
|
|
|
|
BOTTOMMARGIN, 137
|
|
|
|
|
END
|
|
|
|
|
|
2018-01-26 22:17:09 +01:00
|
|
|
DLG_CFG_FLOPPY_DRIVES, DIALOG
|
|
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
|
|
|
|
BOTTOMMARGIN, 96
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
DLG_CFG_OTHER_REMOVABLE_DEVICES, DIALOG
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
|
|
|
|
LEFTMARGIN, 7
|
|
|
|
|
RIGHTMARGIN, 260
|
|
|
|
|
TOPMARGIN, 7
|
2018-01-26 22:17:09 +01:00
|
|
|
BOTTOMMARGIN, 214
|
2017-05-18 14:03:43 -04:00
|
|
|
END
|
|
|
|
|
END
|
|
|
|
|
#endif // APSTUDIO_INVOKED
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _MAC
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Version
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
2021-11-12 21:53:12 -03:00
|
|
|
FILEVERSION EMU_VERSION_MAJ,EMU_VERSION_MIN,EMU_VERSION_PATCH,EMU_BUILD_NUM
|
|
|
|
|
PRODUCTVERSION EMU_VERSION_MAJ,EMU_VERSION_MIN,EMU_VERSION_PATCH,EMU_BUILD_NUM
|
2017-05-18 14:03:43 -04:00
|
|
|
FILEFLAGSMASK 0x3fL
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
FILEFLAGS 0x1L
|
|
|
|
|
#else
|
|
|
|
|
FILEFLAGS 0x0L
|
|
|
|
|
#endif
|
|
|
|
|
FILEOS 0x40004L
|
|
|
|
|
FILETYPE 0x1L
|
|
|
|
|
FILESUBTYPE 0x0L
|
|
|
|
|
BEGIN
|
|
|
|
|
BLOCK "StringFileInfo"
|
|
|
|
|
BEGIN
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
BLOCK "040904b0"
|
2017-05-18 14:03:43 -04:00
|
|
|
BEGIN
|
2020-05-17 00:21:02 -03:00
|
|
|
VALUE "CompanyName", EMU_NAME "\0"
|
|
|
|
|
VALUE "FileDescription", EMU_NAME "\0"
|
|
|
|
|
VALUE "FileVersion", EMU_VERSION "\0"
|
|
|
|
|
VALUE "InternalName", EMU_NAME "\0"
|
2021-11-12 21:53:12 -03:00
|
|
|
VALUE "LegalCopyright", "Copyright \xc2\xa9 2007-" COPYRIGHT_YEAR " " EMU_NAME " contributors\0"
|
2020-06-26 22:12:15 +02:00
|
|
|
VALUE "OriginalFilename", "86box.exe\0"
|
|
|
|
|
VALUE "ProductName", EMU_NAME "\0"
|
2020-05-17 00:21:02 -03:00
|
|
|
VALUE "ProductVersion", EMU_VERSION "\0"
|
2017-05-18 14:03:43 -04:00
|
|
|
END
|
|
|
|
|
END
|
|
|
|
|
BLOCK "VarFileInfo"
|
|
|
|
|
BEGIN
|
|
|
|
|
VALUE "Translation", 0x409, 1200
|
|
|
|
|
END
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
#endif // !_MAC
|
|
|
|
|
|
2021-11-07 21:32:06 +01:00
|
|
|
#endif
|
2017-05-18 14:03:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef APSTUDIO_INVOKED
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Generated from the TEXTINCLUDE 3 resource.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
#endif // not APSTUDIO_INVOKED
|
2021-11-07 21:32:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "languages/en-US.rc"
|
2021-11-14 08:47:23 -03:00
|
|
|
#include "languages/hu-HU.rc"
|
2021-11-14 18:34:34 +01:00
|
|
|
#include "languages/pt-BR.rc"
|
2021-11-14 19:35:31 +01:00
|
|
|
#include "languages/de-DE.rc"
|
|
|
|
|
|