2017-11-19 03:15:29 -05: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.
|
|
|
|
|
*
|
|
|
|
|
* Definitions for the language management module.
|
|
|
|
|
*
|
|
|
|
|
* NOTE: FIXME: Strings 2176 and 2193 are same.
|
|
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-11-19 03:15:29 -05:00
|
|
|
*
|
2018-01-19 15:39:13 +01:00
|
|
|
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-11-19 03:15:29 -05:00
|
|
|
*
|
2018-01-19 15:39:13 +01:00
|
|
|
* Copyright 2017,2018 Fred N. van Kempen.
|
2017-11-19 03:15:29 -05:00
|
|
|
*/
|
|
|
|
|
#ifndef LANG_UAGE_H
|
|
|
|
|
# define LANG_UAGE_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* String IDs. */
|
|
|
|
|
#define IDS_STRINGS 2048 // "86Box"
|
2020-06-17 23:15:04 -03:00
|
|
|
#define IDS_2049 2049 // "Error"
|
|
|
|
|
#define IDS_2050 2050 // "Fatal error"
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_2051 2051 // "<reserved>"
|
2020-06-18 21:46:28 -03:00
|
|
|
#define IDS_2052 2052 // "Press CTRL+ALT+PAGE DOWN..."
|
2018-07-15 01:41:53 +02:00
|
|
|
#define IDS_2053 2053 // "Speed"
|
|
|
|
|
#define IDS_2054 2054 // "ZIP %i (%03i): %ls"
|
|
|
|
|
#define IDS_2055 2055 // "ZIP images (*.IM?)\0*.IM..."
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_2056 2056 // "No usable ROM images found!"
|
|
|
|
|
#define IDS_2057 2057 // "(empty)"
|
2018-07-15 01:41:53 +02:00
|
|
|
#define IDS_2058 2058 // "ZIP images (*.IM?)\0*.IM..."
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_2059 2059 // "(Turbo)"
|
|
|
|
|
#define IDS_2060 2060 // "On"
|
|
|
|
|
#define IDS_2061 2061 // "Off"
|
2018-07-15 01:41:53 +02:00
|
|
|
#define IDS_2062 2062 // "All floppy images (*.DSK..."
|
2021-03-23 05:28:47 +01:00
|
|
|
#define IDS_2063 2063 // "Machine ""%hs"" is not..."
|
|
|
|
|
#define IDS_2064 2064 // "Video card ""%hs"" is not..."
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_2065 2065 // "Machine"
|
|
|
|
|
#define IDS_2066 2066 // "Display"
|
|
|
|
|
#define IDS_2067 2067 // "Input devices"
|
|
|
|
|
#define IDS_2068 2068 // "Sound"
|
|
|
|
|
#define IDS_2069 2069 // "Network"
|
|
|
|
|
#define IDS_2070 2070 // "Ports (COM & LPT)"
|
2020-11-20 05:42:47 +01:00
|
|
|
#define IDS_2071 2071 // "Storage controllers"
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_2072 2072 // "Hard disks"
|
2020-07-19 06:07:58 +02:00
|
|
|
#define IDS_2073 2073 // "Floppy and CD-ROM drives"
|
2018-01-26 22:17:09 +01:00
|
|
|
#define IDS_2074 2074 // "Other removable devices"
|
2020-11-20 05:42:47 +01:00
|
|
|
#define IDS_2075 2075 // "Other peripherals"
|
2018-07-15 01:41:53 +02:00
|
|
|
#define IDS_2076 2076 // "Surface-based images (*.8.."
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_2077 2077 // "Click to capture mouse"
|
|
|
|
|
#define IDS_2078 2078 // "Press F12-F8 to release mouse"
|
|
|
|
|
#define IDS_2079 2079 // "Press F12-F8 or middle button.."
|
2020-04-26 19:22:13 +02:00
|
|
|
#define IDS_2080 2080 // "Unable to initialize Flui.."
|
|
|
|
|
#define IDS_2081 2081 // "Bus"
|
|
|
|
|
#define IDS_2082 2082 // "File"
|
|
|
|
|
#define IDS_2083 2083 // "C"
|
|
|
|
|
#define IDS_2084 2084 // "H"
|
|
|
|
|
#define IDS_2085 2085 // "S"
|
|
|
|
|
#define IDS_2086 2086 // "MB"
|
|
|
|
|
#define IDS_2087 2087 // "Check BPB"
|
|
|
|
|
#define IDS_2088 2088 // "KB"
|
2020-06-17 23:07:32 -03:00
|
|
|
#define IDS_2089 2089 // "Could not initialize the video..."
|
2020-04-26 19:22:13 +02:00
|
|
|
#define IDS_2090 2090 // "Default"
|
|
|
|
|
#define IDS_2091 2091 // "%i Wait state(s)"
|
|
|
|
|
#define IDS_2092 2092 // "Type"
|
|
|
|
|
#define IDS_2093 2093 // "PCap failed to set up.."
|
|
|
|
|
#define IDS_2094 2094 // "No PCap devices found"
|
|
|
|
|
#define IDS_2095 2095 // "Invalid PCap device"
|
|
|
|
|
#define IDS_2096 2096 // "Standard 2-button joystick(s)"
|
|
|
|
|
#define IDS_2097 2097 // "Standard 4-button joystick"
|
|
|
|
|
#define IDS_2098 2098 // "Standard 6-button joystick"
|
|
|
|
|
#define IDS_2099 2099 // "Standard 8-button joystick"
|
|
|
|
|
#define IDS_2100 2100 // "CH Flightstick Pro"
|
|
|
|
|
#define IDS_2101 2101 // "Microsoft SideWinder Pad"
|
|
|
|
|
#define IDS_2102 2102 // "Thrustmaster Flight Cont.."
|
|
|
|
|
#define IDS_2103 2103 // "None"
|
2020-06-17 23:07:32 -03:00
|
|
|
#define IDS_2104 2104 // "Unable to load keyboard..."
|
|
|
|
|
#define IDS_2105 2105 // "Unable to register raw input."
|
2020-04-26 19:22:13 +02:00
|
|
|
#define IDS_2106 2106 // "%u"
|
|
|
|
|
#define IDS_2107 2107 // "%u MB (CHS: %i, %i, %i)"
|
|
|
|
|
#define IDS_2108 2108 // "Floppy %i (%s): %ls"
|
|
|
|
|
#define IDS_2109 2109 // "All floppy images (*.0??;*.."
|
|
|
|
|
#define IDS_2110 2110 // "Unable to initialize Free.."
|
|
|
|
|
#define IDS_2111 2111 // "Unable to initialize SDL..."
|
|
|
|
|
#define IDS_2112 2112 // "Are you sure you want to..."
|
|
|
|
|
#define IDS_2113 2113 // "Are you sure you want to..."
|
|
|
|
|
#define IDS_2114 2114 // "Unable to initialize Ghostscript..."
|
|
|
|
|
#define IDS_2115 2115 // "MO %i (%03i): %ls"
|
|
|
|
|
#define IDS_2116 2116 // "MO images (*.IM?)\0*.IM..."
|
|
|
|
|
#define IDS_2117 2117 // "Welcome to 86Box!"
|
2020-06-17 14:29:24 +02:00
|
|
|
#define IDS_2118 2118 // "Internal controller"
|
2020-06-17 23:07:32 -03:00
|
|
|
#define IDS_2119 2119 // "Exit"
|
|
|
|
|
#define IDS_2120 2120 // "No ROMs found"
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_2121 2121 // "Do you want to save the settings?"
|
2020-12-03 17:28:51 -03:00
|
|
|
#define IDS_2122 2122 // "This will hard reset the emulated..."
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_2123 2123 // "Save"
|
2020-09-20 19:13:09 -03:00
|
|
|
#define IDS_2124 2124 // "About 86Box"
|
|
|
|
|
#define IDS_2125 2125 // "86Box v" EMU_VERSION
|
2020-06-18 00:06:15 -03:00
|
|
|
#define IDS_2126 2126 // "An emulator of old computers..."
|
|
|
|
|
#define IDS_2127 2127 // "OK"
|
2020-06-18 21:05:53 -03:00
|
|
|
#define IDS_2128 2128 // "Hardware not available"
|
2020-06-18 21:31:56 -03:00
|
|
|
#define IDS_2129 2129 // "Make sure " LIB_NAME_PCAP "..."
|
2020-06-18 21:23:34 -03:00
|
|
|
#define IDS_2130 2130 // "Invalid configuration"
|
2020-06-18 21:31:56 -03:00
|
|
|
#define IDS_2131 2131 // LIB_NAME_FREETYPE " is required..."
|
|
|
|
|
#define IDS_2132 2132 // LIB_NAME_GS " is required for...
|
2020-06-18 21:35:42 -03:00
|
|
|
#define IDS_2133 2133 // LIB_NAME_FLUIDSYNTH " is required..."
|
2020-06-18 21:46:28 -03:00
|
|
|
#define IDS_2134 2134 // "Entering fullscreen mode"
|
|
|
|
|
#define IDS_2135 2135 // "Don't show this message again"
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_2136 2136 // "Don't exit"
|
2020-06-19 00:26:13 -03:00
|
|
|
#define IDS_2137 2137 // "Reset"
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_2138 2138 // "Don't reset"
|
2020-07-19 06:18:38 +02:00
|
|
|
#define IDS_2139 2139 // "MO images (*.IM?)\0*.IM?..."
|
2020-11-20 05:42:47 +01:00
|
|
|
#define IDS_2140 2140 // "CD-ROM images (*.ISO;*.CU.."
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_2141 2141 // "%hs Device Configuration"
|
2021-04-13 14:07:21 -03:00
|
|
|
#define IDS_2142 2142 // "Monitor in sleep mode"
|
2021-04-21 01:33:01 +03:00
|
|
|
#define IDS_2143 2143 // "OpenGL Shaders (*.GLSL)..."
|
2021-04-23 16:09:45 +03:00
|
|
|
#define IDS_2144 2144 // "OpenGL options"
|
2021-05-09 02:48:24 +02:00
|
|
|
#define IDS_2145 2145 // "You are loading an unsupported..."
|
|
|
|
|
#define IDS_2146 2146 // "CPU type filtering based on..."
|
|
|
|
|
#define IDS_2147 2147 // "Continue"
|
2021-07-27 06:12:09 +02:00
|
|
|
#define IDS_2148 2148 // "Continue"
|
|
|
|
|
#define IDS_2149 2149 // "Continue"
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
#define IDS_4096 4096 // "Hard disk (%s)"
|
|
|
|
|
#define IDS_4097 4097 // "%01i:%01i"
|
|
|
|
|
#define IDS_4098 4098 // "%i"
|
2018-07-15 01:41:53 +02:00
|
|
|
#define IDS_4099 4099 // "MFM/RLL or ESDI CD-ROM driv.."
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_4100 4100 // "Custom..."
|
|
|
|
|
#define IDS_4101 4101 // "Custom (large)..."
|
|
|
|
|
#define IDS_4102 4102 // "Add New Hard Disk"
|
|
|
|
|
#define IDS_4103 4103 // "Add Existing Hard Disk"
|
2020-06-19 00:16:05 -03:00
|
|
|
#define IDS_4104 4104 // "HDI disk images cannot be..."
|
|
|
|
|
#define IDS_4105 4105 // "Disk images cannot be larger..."
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_4106 4106 // "Hard disk images (*.HDI;*.HD.."
|
|
|
|
|
#define IDS_4107 4107 // "Unable to open the file for read"
|
|
|
|
|
#define IDS_4108 4108 // "Unable to open the file for write"
|
|
|
|
|
#define IDS_4109 4109 // "HDI or HDX image with a sect.."
|
|
|
|
|
#define IDS_4110 4110 // "USB is not yet supported"
|
2020-06-19 00:16:05 -03:00
|
|
|
#define IDS_4111 4111 // "Disk image file already exists"
|
|
|
|
|
#define IDS_4112 4112 // "Please specify a valid file name."
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_4113 4113 // "Remember to partition and fo.."
|
2020-06-19 00:16:05 -03:00
|
|
|
#define IDS_4114 4114 // "Make sure the file exists and..."
|
|
|
|
|
#define IDS_4115 4115 // "Make sure the file is being..."
|
|
|
|
|
#define IDS_4116 4116 // "Disk image too large"
|
|
|
|
|
#define IDS_4117 4117 // "Remember to partition and format..."
|
|
|
|
|
#define IDS_4118 4118 // "The selected file will be..."
|
|
|
|
|
#define IDS_4119 4119 // "Unsupported disk image"
|
2020-06-19 00:21:40 -03:00
|
|
|
#define IDS_4120 4120 // "Overwrite"
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_4121 4121 // "Don't overwrite"
|
2020-11-18 21:10:33 -06:00
|
|
|
#define IDS_4122 4122 // "Raw image (.img)"
|
|
|
|
|
#define IDS_4123 4123 // "HDI image (.hdi)"
|
|
|
|
|
#define IDS_4124 4124 // "HDX image (.hdx)"
|
|
|
|
|
#define IDS_4125 4125 // "Fixed-size VHD (.vhd)"
|
|
|
|
|
#define IDS_4126 4126 // "Dynamic-size VHD (.vhd)"
|
|
|
|
|
#define IDS_4127 4127 // "Differencing VHD (.vhd)"
|
2020-11-19 01:11:52 -06:00
|
|
|
#define IDS_4128 4128 // "Large blocks (2 MB)"
|
|
|
|
|
#define IDS_4129 4129 // "Small blocks (512 KB)"
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_4130 4130 // "VHD files (*.VHD)\0*.VHD\0All..."
|
2020-11-19 01:11:52 -06:00
|
|
|
#define IDS_4131 4131 // "Select the parent VHD"
|
2020-11-20 18:42:22 +01:00
|
|
|
#define IDS_4132 4132 // "This could mean that the parent..."
|
|
|
|
|
#define IDS_4133 4133 // "Parent and child disk timestamps..."
|
2020-11-19 01:11:52 -06:00
|
|
|
#define IDS_4134 4134 // "Could not fix VHD timestamp."
|
2021-07-22 20:13:44 +02:00
|
|
|
#define IDS_4135 4135 // "%01i:%02i"
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
#define IDS_4352 4352 // "MFM/RLL"
|
|
|
|
|
#define IDS_4353 4353 // "XT IDE"
|
|
|
|
|
#define IDS_4354 4354 // "ESDI"
|
PIC rewrite, proper SMRAM API, complete SiS 471 rewrite and addition of 40x, 460, and 461, changes to mem.c/h, disabled Voodoo memory dumping on exit, bumped SDL Hardware scale quality to 2, bumped IDE/ATAPI drives to ATA-6, finally bumped emulator version to 3.0, redid the bus type ID's to allow for planned ATAPI hard disks, made SST flash set its high mappings to the correct address if the CPU is 16-bit, and added the SiS 401 AMI 486 Clone, AOpen Vi15G, and the Soyo 4SA2 (486 with SiS 496/497 that can boot from CD-ROM), assorted 286+ protected mode fixes (for slightly more accuracy), and fixes to 808x emulation (MS Word 1.0 and 1.10 for DOS now work correctly from floppy).
2020-10-14 23:15:01 +02:00
|
|
|
#define IDS_4355 4355 // "IDE"
|
|
|
|
|
#define IDS_4356 4356 // "ATAPI"
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_4357 4357 // "SCSI"
|
|
|
|
|
|
|
|
|
|
#define IDS_4608 4608 // "MFM/RLL (%01i:%01i)"
|
|
|
|
|
#define IDS_4609 4609 // "XT IDE (%01i:%01i)"
|
|
|
|
|
#define IDS_4610 4610 // "ESDI (%01i:%01i)"
|
PIC rewrite, proper SMRAM API, complete SiS 471 rewrite and addition of 40x, 460, and 461, changes to mem.c/h, disabled Voodoo memory dumping on exit, bumped SDL Hardware scale quality to 2, bumped IDE/ATAPI drives to ATA-6, finally bumped emulator version to 3.0, redid the bus type ID's to allow for planned ATAPI hard disks, made SST flash set its high mappings to the correct address if the CPU is 16-bit, and added the SiS 401 AMI 486 Clone, AOpen Vi15G, and the Soyo 4SA2 (486 with SiS 496/497 that can boot from CD-ROM), assorted 286+ protected mode fixes (for slightly more accuracy), and fixes to 808x emulation (MS Word 1.0 and 1.10 for DOS now work correctly from floppy).
2020-10-14 23:15:01 +02:00
|
|
|
#define IDS_4611 4611 // "IDE (%01i:%01i)"
|
|
|
|
|
#define IDS_4612 4612 // "ATAPI (%01i:%01i)"
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_4613 4613 // "SCSI (%02i:%02i)"
|
|
|
|
|
|
|
|
|
|
#define IDS_5120 5120 // "CD-ROM %i (%s): %s"
|
|
|
|
|
|
|
|
|
|
#define IDS_5376 5376 // "Disabled"
|
2018-07-15 01:41:53 +02:00
|
|
|
#define IDS_5377 5377 // <Reserved>
|
|
|
|
|
#define IDS_5378 5378 // <Reserved>
|
|
|
|
|
#define IDS_5379 5379 // <Reserved>
|
PIC rewrite, proper SMRAM API, complete SiS 471 rewrite and addition of 40x, 460, and 461, changes to mem.c/h, disabled Voodoo memory dumping on exit, bumped SDL Hardware scale quality to 2, bumped IDE/ATAPI drives to ATA-6, finally bumped emulator version to 3.0, redid the bus type ID's to allow for planned ATAPI hard disks, made SST flash set its high mappings to the correct address if the CPU is 16-bit, and added the SiS 401 AMI 486 Clone, AOpen Vi15G, and the Soyo 4SA2 (486 with SiS 496/497 that can boot from CD-ROM), assorted 286+ protected mode fixes (for slightly more accuracy), and fixes to 808x emulation (MS Word 1.0 and 1.10 for DOS now work correctly from floppy).
2020-10-14 23:15:01 +02:00
|
|
|
#define IDS_5380 5380 // <Reserved>
|
|
|
|
|
#define IDS_5381 5381 // "ATAPI"
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_5382 5382 // "SCSI"
|
|
|
|
|
|
|
|
|
|
#define IDS_5632 5632 // "Disabled"
|
2018-07-15 01:41:53 +02:00
|
|
|
#define IDS_5633 5633 // <Reserved>
|
|
|
|
|
#define IDS_5634 5634 // <Reserved>
|
|
|
|
|
#define IDS_5635 5635 // <Reserved>
|
PIC rewrite, proper SMRAM API, complete SiS 471 rewrite and addition of 40x, 460, and 461, changes to mem.c/h, disabled Voodoo memory dumping on exit, bumped SDL Hardware scale quality to 2, bumped IDE/ATAPI drives to ATA-6, finally bumped emulator version to 3.0, redid the bus type ID's to allow for planned ATAPI hard disks, made SST flash set its high mappings to the correct address if the CPU is 16-bit, and added the SiS 401 AMI 486 Clone, AOpen Vi15G, and the Soyo 4SA2 (486 with SiS 496/497 that can boot from CD-ROM), assorted 286+ protected mode fixes (for slightly more accuracy), and fixes to 808x emulation (MS Word 1.0 and 1.10 for DOS now work correctly from floppy).
2020-10-14 23:15:01 +02:00
|
|
|
#define IDS_5636 5636 // <Reserved>
|
|
|
|
|
#define IDS_5637 5637 // "ATAPI (%01i:%01i)"
|
2017-11-19 03:15:29 -05:00
|
|
|
#define IDS_5638 5638 // "SCSI (%02i:%02i)"
|
|
|
|
|
|
2018-01-19 15:39:13 +01:00
|
|
|
#define IDS_5888 5888 // "160 kB"
|
|
|
|
|
#define IDS_5889 5889 // "180 kB"
|
|
|
|
|
#define IDS_5890 5890 // "320 kB"
|
|
|
|
|
#define IDS_5891 5891 // "360 kB"
|
|
|
|
|
#define IDS_5892 5892 // "640 kB"
|
|
|
|
|
#define IDS_5893 5893 // "720 kB"
|
|
|
|
|
#define IDS_5894 5894 // "1.2 MB"
|
|
|
|
|
#define IDS_5895 5895 // "1.25 MB"
|
|
|
|
|
#define IDS_5896 5896 // "1.44 MB"
|
|
|
|
|
#define IDS_5897 5897 // "DMF (cluster 1024)"
|
|
|
|
|
#define IDS_5898 5898 // "DMF (cluster 2048)"
|
|
|
|
|
#define IDS_5899 5899 // "2.88 MB"
|
2018-01-26 22:17:09 +01:00
|
|
|
#define IDS_5900 5900 // "ZIP 100"
|
|
|
|
|
#define IDS_5901 5901 // "ZIP 250"
|
2020-07-19 06:07:58 +02:00
|
|
|
#define IDS_5902 5902 // "3.5\" 128Mb M.O. (ISO 10090)"
|
|
|
|
|
#define IDS_5903 5903 // "3.5\" 230Mb M.O. (ISO 13963)"
|
|
|
|
|
#define IDS_5904 5904 // "3.5\" 540Mb M.O. (ISO 15498)"
|
|
|
|
|
#define IDS_5905 5905 // "3.5\" 640Mb M.O. (ISO 15498)"
|
|
|
|
|
#define IDS_5906 5906 // "3.5\" 1.3Gb M.O. (GigaMO)"
|
|
|
|
|
#define IDS_5907 5907 // "3.5\" 2.3Gb M.O. (GigaMO 2)"
|
|
|
|
|
#define IDS_5908 5908 // "5.25\" 600Mb M.O."
|
|
|
|
|
#define IDS_5909 5909 // "5.25\" 650Mb M.O."
|
|
|
|
|
#define IDS_5910 5910 // "5.25\" 1Gb M.O."
|
|
|
|
|
#define IDS_5911 5911 // "5.25\" 1.3Gb M.O."
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2018-01-19 15:39:13 +01:00
|
|
|
#define IDS_6144 6144 // "Perfect RPM"
|
|
|
|
|
#define IDS_6145 6145 // "1%% below perfect RPM"
|
|
|
|
|
#define IDS_6146 6146 // "1.5%% below perfect RPM"
|
|
|
|
|
#define IDS_6147 6147 // "2%% below perfect RPM"
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2018-01-19 15:39:13 +01:00
|
|
|
#define IDS_7168 7168 // "English (United States)"
|
|
|
|
|
|
|
|
|
|
#define IDS_LANG_ENUS IDS_7168
|
|
|
|
|
|
2021-07-27 06:12:09 +02:00
|
|
|
#define STR_NUM_2048 102
|
2017-11-19 03:15:29 -05:00
|
|
|
#define STR_NUM_3072 11
|
2021-07-22 20:13:44 +02:00
|
|
|
#define STR_NUM_4096 40
|
PIC rewrite, proper SMRAM API, complete SiS 471 rewrite and addition of 40x, 460, and 461, changes to mem.c/h, disabled Voodoo memory dumping on exit, bumped SDL Hardware scale quality to 2, bumped IDE/ATAPI drives to ATA-6, finally bumped emulator version to 3.0, redid the bus type ID's to allow for planned ATAPI hard disks, made SST flash set its high mappings to the correct address if the CPU is 16-bit, and added the SiS 401 AMI 486 Clone, AOpen Vi15G, and the Soyo 4SA2 (486 with SiS 496/497 that can boot from CD-ROM), assorted 286+ protected mode fixes (for slightly more accuracy), and fixes to 808x emulation (MS Word 1.0 and 1.10 for DOS now work correctly from floppy).
2020-10-14 23:15:01 +02:00
|
|
|
#define STR_NUM_4352 6
|
|
|
|
|
#define STR_NUM_4608 6
|
2017-11-19 03:15:29 -05:00
|
|
|
#define STR_NUM_5120 1
|
|
|
|
|
#define STR_NUM_5376 7
|
|
|
|
|
#define STR_NUM_5632 7
|
2020-07-19 06:07:58 +02:00
|
|
|
#define STR_NUM_5888 24
|
2018-01-19 15:39:13 +01:00
|
|
|
#define STR_NUM_6144 4
|
|
|
|
|
#define STR_NUM_7168 1
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /*LANG_UAGE_H*/
|