2017-11-05 20:43:01 -05:00
|
|
|
/*
|
2022-11-13 16:37:58 -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.
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Emulation of the IBM PS/1 models 2011, 2121.
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Model 2011: The initial model, using a 10MHz 80286.
|
2017-11-08 16:29:54 -05:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Model 2121: This is similar to model 2011 but some of the functionality
|
|
|
|
|
* has moved to a chip at ports 0xe0 (index)/0xe1 (data). The
|
|
|
|
|
* only functions I have identified are enables for the first
|
|
|
|
|
* 512K and next 128K of RAM, in bits 0 of registers 0 and 1
|
|
|
|
|
* respectively.
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Port 0x105 has bit 7 forced high. Without this 128K of
|
|
|
|
|
* memory will be missed by the BIOS on cold boots.
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* The reserved 384K is remapped to the top of extended memory.
|
|
|
|
|
* If this is not done then you get an error on startup.
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2023-01-06 15:36:29 -05:00
|
|
|
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
|
2022-11-13 16:37:58 -05:00
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2017-11-05 20:43:01 -05:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Copyright 2008-2019 Sarah Walker.
|
|
|
|
|
* Copyright 2016-2019 Miran Grca.
|
|
|
|
|
* Copyright 2017-2019 Fred N. van Kempen.
|
2017-11-05 20:43:01 -05:00
|
|
|
*/
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdint.h>
|
2017-11-05 20:43:01 -05:00
|
|
|
#include <stdlib.h>
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <wchar.h>
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <86box/86box.h>
|
2020-02-29 19:12:23 +01:00
|
|
|
#include "cpu.h"
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <86box/timer.h>
|
|
|
|
|
#include <86box/io.h>
|
|
|
|
|
#include <86box/dma.h>
|
|
|
|
|
#include <86box/pic.h>
|
|
|
|
|
#include <86box/pit.h>
|
|
|
|
|
#include <86box/mem.h>
|
|
|
|
|
#include <86box/nmi.h>
|
|
|
|
|
#include <86box/rom.h>
|
|
|
|
|
#include <86box/device.h>
|
2020-06-25 22:43:20 +02:00
|
|
|
#include <86box/chipset.h>
|
|
|
|
|
#include <86box/sio.h>
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <86box/nvr.h>
|
|
|
|
|
#include <86box/gameport.h>
|
|
|
|
|
#include <86box/lpt.h>
|
|
|
|
|
#include <86box/serial.h>
|
|
|
|
|
#include <86box/keyboard.h>
|
|
|
|
|
#include <86box/hdc.h>
|
|
|
|
|
#include <86box/hdc_ide.h>
|
|
|
|
|
#include <86box/fdd.h>
|
|
|
|
|
#include <86box/fdc.h>
|
2021-07-04 17:40:39 +02:00
|
|
|
#include <86box/port_6x.h>
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <86box/video.h>
|
|
|
|
|
#include <86box/machine.h>
|
2022-01-29 23:17:27 -05:00
|
|
|
#include <86box/sound.h>
|
2024-01-10 01:26:50 +06:00
|
|
|
#include <86box/plat_unused.h>
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2017-11-05 20:43:01 -05:00
|
|
|
typedef struct {
|
2022-07-27 15:17:53 -04:00
|
|
|
int model;
|
|
|
|
|
|
|
|
|
|
rom_t mid_rom, high_rom;
|
|
|
|
|
|
|
|
|
|
uint8_t ps1_91,
|
|
|
|
|
ps1_92,
|
|
|
|
|
ps1_94,
|
|
|
|
|
ps1_102,
|
|
|
|
|
ps1_103,
|
|
|
|
|
ps1_104,
|
|
|
|
|
ps1_105,
|
|
|
|
|
ps1_190;
|
|
|
|
|
int ps1_e0_addr;
|
|
|
|
|
uint8_t ps1_e0_regs[256];
|
|
|
|
|
|
|
|
|
|
serial_t *uart;
|
2025-08-02 14:51:28 +02:00
|
|
|
lpt_t *lpt;
|
2017-11-05 20:43:01 -05:00
|
|
|
} ps1_t;
|
2016-06-26 00:34:39 +02:00
|
|
|
|
2017-11-05 20:43:01 -05:00
|
|
|
static void
|
|
|
|
|
recalc_memory(ps1_t *ps)
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2017-11-05 20:43:01 -05:00
|
|
|
/* Enable first 512K */
|
|
|
|
|
mem_set_mem_state(0x00000, 0x80000,
|
2022-07-27 15:17:53 -04:00
|
|
|
(ps->ps1_e0_regs[0] & 0x01) ? (MEM_READ_INTERNAL | MEM_WRITE_INTERNAL) : (MEM_READ_EXTANY | MEM_WRITE_EXTANY));
|
2017-11-05 20:43:01 -05:00
|
|
|
|
|
|
|
|
/* Enable 512-640K */
|
|
|
|
|
mem_set_mem_state(0x80000, 0x20000,
|
2022-07-27 15:17:53 -04:00
|
|
|
(ps->ps1_e0_regs[1] & 0x01) ? (MEM_READ_INTERNAL | MEM_WRITE_INTERNAL) : (MEM_READ_EXTANY | MEM_WRITE_EXTANY));
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
|
2017-11-05 20:43:01 -05:00
|
|
|
static void
|
|
|
|
|
ps1_write(uint16_t port, uint8_t val, void *priv)
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_t *ps = (ps1_t *) priv;
|
2017-11-05 20:43:01 -05:00
|
|
|
|
|
|
|
|
switch (port) {
|
2022-07-27 15:17:53 -04:00
|
|
|
case 0x0092:
|
|
|
|
|
if (ps->model != 2011) {
|
|
|
|
|
if (val & 1) {
|
|
|
|
|
softresetx86();
|
|
|
|
|
cpu_set_edx();
|
|
|
|
|
}
|
|
|
|
|
ps->ps1_92 = val & ~1;
|
|
|
|
|
} else {
|
|
|
|
|
ps->ps1_92 = val;
|
|
|
|
|
}
|
|
|
|
|
mem_a20_alt = val & 2;
|
|
|
|
|
mem_a20_recalc();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0094:
|
|
|
|
|
ps->ps1_94 = val;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x00e0:
|
|
|
|
|
if (ps->model != 2011) {
|
|
|
|
|
ps->ps1_e0_addr = val;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x00e1:
|
|
|
|
|
if (ps->model != 2011) {
|
|
|
|
|
ps->ps1_e0_regs[ps->ps1_e0_addr] = val;
|
|
|
|
|
recalc_memory(ps);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0102:
|
|
|
|
|
if (!(ps->ps1_94 & 0x80)) {
|
2025-08-02 14:51:28 +02:00
|
|
|
lpt_port_remove(ps->lpt);
|
2022-07-27 15:17:53 -04:00
|
|
|
serial_remove(ps->uart);
|
|
|
|
|
if (val & 0x04) {
|
|
|
|
|
if (val & 0x08)
|
|
|
|
|
serial_setup(ps->uart, COM1_ADDR, COM1_IRQ);
|
|
|
|
|
else
|
|
|
|
|
serial_setup(ps->uart, COM2_ADDR, COM2_IRQ);
|
|
|
|
|
}
|
|
|
|
|
if (val & 0x10) {
|
|
|
|
|
switch ((val >> 5) & 3) {
|
|
|
|
|
case 0:
|
2025-08-02 14:51:28 +02:00
|
|
|
lpt_port_setup(ps->lpt, LPT_MDA_ADDR);
|
2022-07-27 15:17:53 -04:00
|
|
|
break;
|
|
|
|
|
case 1:
|
2025-08-02 14:51:28 +02:00
|
|
|
lpt_port_setup(ps->lpt, LPT1_ADDR);
|
2022-07-27 15:17:53 -04:00
|
|
|
break;
|
|
|
|
|
case 2:
|
2025-08-02 14:51:28 +02:00
|
|
|
lpt_port_setup(ps->lpt, LPT2_ADDR);
|
2022-07-27 15:17:53 -04:00
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-07-27 15:17:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ps->ps1_102 = val;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0103:
|
|
|
|
|
ps->ps1_103 = val;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0104:
|
|
|
|
|
ps->ps1_104 = val;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0105:
|
|
|
|
|
ps->ps1_105 = val;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0190:
|
|
|
|
|
ps->ps1_190 = val;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2017-11-05 20:43:01 -05:00
|
|
|
}
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
|
|
|
|
|
2017-11-05 20:43:01 -05:00
|
|
|
static uint8_t
|
|
|
|
|
ps1_read(uint16_t port, void *priv)
|
2016-06-26 00:34:39 +02:00
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_t *ps = (ps1_t *) priv;
|
2017-11-05 20:43:01 -05:00
|
|
|
uint8_t ret = 0xff;
|
|
|
|
|
|
|
|
|
|
switch (port) {
|
2022-07-27 15:17:53 -04:00
|
|
|
case 0x0091:
|
|
|
|
|
ret = ps->ps1_91;
|
|
|
|
|
ps->ps1_91 = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0092:
|
|
|
|
|
ret = ps->ps1_92;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0094:
|
|
|
|
|
ret = ps->ps1_94;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x00e1:
|
|
|
|
|
if (ps->model != 2011) {
|
|
|
|
|
ret = ps->ps1_e0_regs[ps->ps1_e0_addr];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0102:
|
|
|
|
|
if (ps->model == 2011)
|
|
|
|
|
ret = ps->ps1_102 | 0x08;
|
|
|
|
|
else
|
|
|
|
|
ret = ps->ps1_102;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0103:
|
|
|
|
|
ret = ps->ps1_103;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0104:
|
|
|
|
|
ret = ps->ps1_104;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0105:
|
|
|
|
|
if (ps->model == 2011)
|
|
|
|
|
ret = ps->ps1_105;
|
|
|
|
|
else
|
|
|
|
|
ret = ps->ps1_105 | 0x80;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x0190:
|
|
|
|
|
ret = ps->ps1_190;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2017-11-05 20:43:01 -05:00
|
|
|
}
|
|
|
|
|
|
2023-05-11 03:02:36 -04:00
|
|
|
return ret;
|
2016-06-26 00:34:39 +02:00
|
|
|
}
|
2017-05-29 01:18:32 +02:00
|
|
|
|
2024-01-10 01:26:50 +06:00
|
|
|
static const device_config_t ps1_2011_config[] = {
|
|
|
|
|
// clang-format off
|
|
|
|
|
{
|
|
|
|
|
.name = "bios_language",
|
|
|
|
|
.description = "BIOS Language",
|
|
|
|
|
.type = CONFIG_BIOS,
|
|
|
|
|
.default_string = "english_us",
|
|
|
|
|
.default_int = 0,
|
|
|
|
|
.file_filter = "",
|
2025-01-11 18:13:56 -05:00
|
|
|
.spinner = { 0 },
|
2024-01-10 01:26:50 +06:00
|
|
|
.bios = {
|
|
|
|
|
{ .name = "English (US)", .internal_name = "english_us", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 1, .local = 0, .size = 262144, .files = { "roms/machines/ibmps1es/FC0000_US.BIN", "" } },
|
|
|
|
|
{ .name = "English (UK)", .internal_name = "english_uk", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 2, .local = 0, .size = 262144, .files = { "roms/machines/ibmps1es/F80000_UK.BIN", "roms/machines/ibmps1es/FC0000_UK.BIN", "" } },
|
|
|
|
|
{ .name = "English (Canada)", .internal_name = "english_ca", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 2, .local = 0, .size = 262144, .files = { "roms/machines/ibmps1es/F80000_CA.BIN", "roms/machines/ibmps1es/FC0000_CA.BIN", "" } },
|
|
|
|
|
{ .name = "Portuguese", .internal_name = "portuguese", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 2, .local = 0, .size = 262144, .files = { "roms/machines/ibmps1es/F80000_PT.BIN", "roms/machines/ibmps1es/FC0000_PT.BIN", "" } },
|
|
|
|
|
{ .name = "German", .internal_name = "german", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 2, .local = 0, .size = 262144, .files = { "roms/machines/ibmps1es/F80000_DE.BIN", "roms/machines/ibmps1es/FC0000_DE.BIN", "" } },
|
|
|
|
|
{ .name = "Swedish", .internal_name = "swedish", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 2, .local = 0, .size = 262144, .files = { "roms/machines/ibmps1es/F80000_SE.BIN", "roms/machines/ibmps1es/FC0000_SE.BIN", "" } },
|
|
|
|
|
{ .name = "French", .internal_name = "french", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 2, .local = 0, .size = 262144, .files = { "roms/machines/ibmps1es/F80000_FR.BIN", "roms/machines/ibmps1es/FC0000_FR.BIN", "" } },
|
|
|
|
|
{ .name = "Italian", .internal_name = "italian", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 1, .local = 0, .size = 524288, .files = { "roms/machines/ibmps1es/f80000.bin", "" } },
|
|
|
|
|
{ .name = "Spanish", .internal_name = "spanish", .bios_type = BIOS_NORMAL,
|
|
|
|
|
.files_no = 1, .local = 0, .size = 524288, .files = { "roms/machines/ibmps1es/F80000_ES.bin", "" } },
|
|
|
|
|
{ .files_no = 0 }
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{ .name = "", .description = "", .type = CONFIG_END }
|
|
|
|
|
// clang-format on
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const device_t ps1_2011_device = {
|
|
|
|
|
.name = "PS/1 2011",
|
|
|
|
|
.internal_name = "ps/1_2011",
|
|
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0,
|
|
|
|
|
.init = NULL,
|
|
|
|
|
.close = NULL,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2024-01-10 01:26:50 +06:00
|
|
|
.speed_changed = NULL,
|
|
|
|
|
.force_redraw = NULL,
|
2025-03-29 18:47:21 +01:00
|
|
|
.config = ps1_2011_config
|
2024-01-10 01:26:50 +06:00
|
|
|
};
|
|
|
|
|
|
2017-11-05 20:43:01 -05:00
|
|
|
static void
|
|
|
|
|
ps1_setup(int model)
|
2017-05-29 01:18:32 +02:00
|
|
|
{
|
2017-11-05 20:43:01 -05:00
|
|
|
ps1_t *ps;
|
2022-07-27 15:17:53 -04:00
|
|
|
void *priv;
|
2017-11-05 20:43:01 -05:00
|
|
|
|
2025-01-07 00:42:06 -05:00
|
|
|
ps = (ps1_t *) calloc(1, sizeof(ps1_t));
|
2017-11-05 20:43:01 -05:00
|
|
|
ps->model = model;
|
|
|
|
|
|
|
|
|
|
io_sethandler(0x0091, 1,
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_read, NULL, NULL, ps1_write, NULL, NULL, ps);
|
2017-11-05 20:43:01 -05:00
|
|
|
io_sethandler(0x0092, 1,
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_read, NULL, NULL, ps1_write, NULL, NULL, ps);
|
2017-11-05 20:43:01 -05:00
|
|
|
io_sethandler(0x0094, 1,
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_read, NULL, NULL, ps1_write, NULL, NULL, ps);
|
2017-11-05 20:43:01 -05:00
|
|
|
io_sethandler(0x0102, 4,
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_read, NULL, NULL, ps1_write, NULL, NULL, ps);
|
2017-11-05 20:43:01 -05:00
|
|
|
io_sethandler(0x0190, 1,
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_read, NULL, NULL, ps1_write, NULL, NULL, ps);
|
2017-11-05 20:43:01 -05:00
|
|
|
|
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
|
|
|
ps->uart = device_add_inst(&ns16450_device, 1);
|
2025-08-02 14:51:28 +02:00
|
|
|
ps->lpt = device_add_inst(&lpt_port_device, 1);
|
|
|
|
|
lpt_port_remove(ps->lpt);
|
|
|
|
|
lpt_port_setup(ps->lpt, LPT_MDA_ADDR);
|
2017-11-05 20:43:01 -05:00
|
|
|
|
2021-04-28 20:26:01 +02:00
|
|
|
mem_remap_top(384);
|
|
|
|
|
|
2024-12-03 02:07:02 +01:00
|
|
|
device_add(&fdc_ps2_device);
|
|
|
|
|
|
2018-04-25 23:51:13 +02:00
|
|
|
if (model == 2011) {
|
2025-02-19 12:56:22 +01:00
|
|
|
const device_t *d = device_context_get_device();
|
|
|
|
|
const char * bios = device_get_config_bios("bios_language");
|
|
|
|
|
const char * first = device_get_bios_file(d, bios, 0);
|
|
|
|
|
const char * second = device_get_bios_file(d, bios, 1);
|
|
|
|
|
|
|
|
|
|
if (!strcmp(bios, "english_us")) {
|
2024-01-10 01:26:50 +06:00
|
|
|
/* US English */
|
2025-02-19 12:56:22 +01:00
|
|
|
rom_init(&ps->high_rom, first,
|
2024-01-10 01:26:50 +06:00
|
|
|
0xfc0000, 0x40000, 0x3ffff, 0, MEM_MAPPING_EXTERNAL);
|
2025-02-19 12:56:22 +01:00
|
|
|
} else if (second == NULL) {
|
2024-01-10 01:26:50 +06:00
|
|
|
/* Combined ROM. */
|
2025-02-19 12:56:22 +01:00
|
|
|
rom_init(&ps->high_rom, first,
|
2024-01-10 01:26:50 +06:00
|
|
|
0xf80000, 0x80000, 0x7ffff, 0, MEM_MAPPING_EXTERNAL);
|
|
|
|
|
} else {
|
|
|
|
|
/* Split ROM. */
|
2025-02-19 12:56:22 +01:00
|
|
|
rom_init(&ps->mid_rom, first,
|
2024-01-10 01:26:50 +06:00
|
|
|
0xf80000, 0x40000, 0x3ffff, 0, MEM_MAPPING_EXTERNAL);
|
|
|
|
|
|
2025-02-19 12:56:22 +01:00
|
|
|
rom_init(&ps->high_rom, second,
|
2024-01-10 01:26:50 +06:00
|
|
|
0xfc0000, 0x40000, 0x3ffff, 0, MEM_MAPPING_EXTERNAL);
|
|
|
|
|
}
|
2017-11-05 20:43:01 -05:00
|
|
|
|
2025-08-02 14:51:28 +02:00
|
|
|
lpt_set_next_inst(255);
|
2017-11-05 20:43:01 -05:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&ps1snd_device);
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
/* Enable the builtin HDC. */
|
2024-07-20 03:08:04 -04:00
|
|
|
if (hdc_current[0] == HDC_INTERNAL) {
|
2022-07-27 15:17:53 -04:00
|
|
|
priv = device_add(&ps1_hdc_device);
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
ps1_hdc_inform(priv, &ps->ps1_91);
|
|
|
|
|
}
|
2022-02-20 02:26:27 -05:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
/* Enable the PS/1 VGA controller. */
|
|
|
|
|
device_add(&ps1vga_device);
|
2021-01-12 16:31:55 +01:00
|
|
|
} else if (model == 2121) {
|
2022-07-27 15:17:53 -04:00
|
|
|
io_sethandler(0x00e0, 2,
|
|
|
|
|
ps1_read, NULL, NULL, ps1_write, NULL, NULL, ps);
|
2017-11-05 20:43:01 -05:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
if (rom_present("roms/machines/ibmps1_2121/F80000.BIN")) {
|
|
|
|
|
rom_init(&ps->mid_rom,
|
|
|
|
|
"roms/machines/ibmps1_2121/F80000.BIN",
|
|
|
|
|
0xf80000, 0x40000, 0x3ffff, 0, MEM_MAPPING_EXTERNAL);
|
|
|
|
|
}
|
|
|
|
|
rom_init(&ps->high_rom,
|
|
|
|
|
"roms/machines/ibmps1_2121/FC0000.BIN",
|
|
|
|
|
0xfc0000, 0x40000, 0x3ffff, 0, MEM_MAPPING_EXTERNAL);
|
2017-11-05 20:43:01 -05:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
/* Initialize the video controller. */
|
2023-02-06 04:12:46 -05:00
|
|
|
if (gfxcard[0] == VID_INTERNAL)
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&ibm_ps1_2121_device);
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&ide_isa_device);
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&ps1snd_device);
|
2017-11-05 20:43:01 -05:00
|
|
|
}
|
2025-02-19 12:56:22 +01:00
|
|
|
|
|
|
|
|
device_add(&ps_nvr_device);
|
2017-05-29 01:18:32 +02:00
|
|
|
}
|
2017-09-02 20:39:57 +02:00
|
|
|
|
2017-10-07 22:18:30 -04:00
|
|
|
static void
|
2018-03-19 01:02:04 +01:00
|
|
|
ps1_common_init(const machine_t *model)
|
2017-09-02 20:39:57 +02:00
|
|
|
{
|
2017-11-05 20:43:01 -05:00
|
|
|
machine_common_init(model);
|
|
|
|
|
|
2020-07-10 02:05:49 +02:00
|
|
|
refresh_at_enable = 1;
|
2022-07-23 13:38:10 +02:00
|
|
|
pit_devs[0].set_out_func(pit_devs[0].data, 1, pit_refresh_timer_at);
|
2017-11-05 20:43:01 -05:00
|
|
|
|
|
|
|
|
dma16_init();
|
|
|
|
|
pic2_init();
|
|
|
|
|
|
2025-08-16 00:48:29 -04:00
|
|
|
device_add_params(machine_get_kbc_device(machine), (void *) model->kbc_params);
|
2021-07-04 17:40:39 +02:00
|
|
|
device_add(&port_6x_device);
|
2017-11-05 20:43:01 -05:00
|
|
|
|
|
|
|
|
/* Audio uses ports 200h and 202-207h, so only initialize gameport on 201h. */
|
2021-05-20 22:51:55 -03:00
|
|
|
standalone_gameport_type = &gameport_201_device;
|
2017-09-02 20:39:57 +02:00
|
|
|
}
|
|
|
|
|
|
2025-08-16 00:48:29 -04:00
|
|
|
uint8_t
|
|
|
|
|
machine_ps1_p1_handler(void)
|
|
|
|
|
{
|
|
|
|
|
const uint8_t current_drive = fdc_get_current_drive();
|
|
|
|
|
|
|
|
|
|
/* (B0 or F0) | (fdd_is_525(current_drive) on bit 6) */
|
|
|
|
|
return 0xb0 | (fdd_is_525(current_drive) ? 0x40 : 0x00);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
int
|
|
|
|
|
machine_ps1_m2011_init(const machine_t *model)
|
2018-04-25 23:51:13 +02:00
|
|
|
{
|
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
|
|
|
int ret;
|
2024-01-10 01:26:50 +06:00
|
|
|
const char* fn;
|
|
|
|
|
uint32_t offset;
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2024-01-10 01:26:50 +06:00
|
|
|
if (!device_available(model->device)) {
|
|
|
|
|
/* No ROMs available. */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2024-01-10 01:26:50 +06:00
|
|
|
device_context(model->device);
|
|
|
|
|
if ((fn = device_get_bios_file(model->device, device_get_config_bios("bios_language"), 1)) == NULL) {
|
|
|
|
|
/* Combined ROM or US English. */
|
|
|
|
|
fn = device_get_bios_file(model->device, device_get_config_bios("bios_language"), 0);
|
|
|
|
|
offset = (!strcmp("english_us", device_get_config_bios("bios_language"))) ? 0x20000 : 0x60000;
|
|
|
|
|
} else {
|
|
|
|
|
/* Separated ROM. */
|
|
|
|
|
offset = 0x20000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!fn) {
|
|
|
|
|
fn = device_get_bios_file(model->device, "us_english", 0);
|
|
|
|
|
offset = 0x20000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = bios_load_linear(fn, 0x000e0000, 131072, offset);
|
|
|
|
|
device_context_restore();
|
|
|
|
|
|
|
|
|
|
if (bios_only || !ret) {
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2024-01-10 01:26:50 +06:00
|
|
|
}
|
2018-04-25 23:51:13 +02:00
|
|
|
|
2017-11-05 20:43:01 -05:00
|
|
|
ps1_common_init(model);
|
2017-10-07 22:18:30 -04:00
|
|
|
|
2024-01-10 01:26:50 +06:00
|
|
|
device_context(model->device);
|
|
|
|
|
|
|
|
|
|
ps1_setup(2011);
|
|
|
|
|
|
|
|
|
|
device_context_restore();
|
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
|
|
|
|
|
|
|
|
return ret;
|
2017-09-02 20:39:57 +02:00
|
|
|
}
|
|
|
|
|
|
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
|
|
|
int
|
2018-03-19 01:02:04 +01:00
|
|
|
machine_ps1_m2121_init(const machine_t *model)
|
2017-09-02 20:39:57 +02:00
|
|
|
{
|
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
|
|
|
int ret;
|
|
|
|
|
|
2021-11-21 13:33:22 -03:00
|
|
|
ret = bios_load_linear("roms/machines/ibmps1_2121/FC0000.BIN",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000e0000, 131072, 0x20000);
|
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
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
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
|
|
|
|
2017-11-05 20:43:01 -05:00
|
|
|
ps1_common_init(model);
|
|
|
|
|
|
|
|
|
|
ps1_setup(2121);
|
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
|
|
|
|
|
|
|
|
return ret;
|
2017-09-02 20:39:57 +02:00
|
|
|
}
|