2017-10-11 05:40:44 -04:00
|
|
|
/*
|
2023-01-06 15:36:05 -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-10-11 05:40:44 -04:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2017-10-11 05:40:44 -04:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Emulation of the Brooktree BT484-485A true colour RAMDAC
|
|
|
|
|
* family.
|
2017-10-11 05:40:44 -04:00
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-10-11 05:40:44 -04:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* TheCollector1995,
|
2017-10-11 05:40:44 -04:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Copyright 2016-2018 Miran Grca.
|
|
|
|
|
* Copyright 2018 TheCollector1995.
|
2017-10-11 05:40:44 -04:00
|
|
|
*/
|
2017-09-25 04:31:20 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdint.h>
|
2018-10-05 01:54:54 +02: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>
|
|
|
|
|
#include <86box/device.h>
|
|
|
|
|
#include <86box/mem.h>
|
|
|
|
|
#include <86box/timer.h>
|
|
|
|
|
#include <86box/video.h>
|
|
|
|
|
#include <86box/vid_svga.h>
|
2020-02-29 19:12:23 +01:00
|
|
|
|
2023-07-31 16:50:43 -04:00
|
|
|
typedef struct bt48x_ramdac_t {
|
2022-08-31 19:19:29 -04:00
|
|
|
PALETTE extpal;
|
|
|
|
|
uint32_t extpallook[256];
|
|
|
|
|
uint8_t cursor32_data[256];
|
|
|
|
|
uint8_t cursor64_data[1024];
|
2023-07-31 16:50:43 -04:00
|
|
|
int hwc_y;
|
|
|
|
|
int hwc_x;
|
2022-08-31 19:19:29 -04:00
|
|
|
uint8_t cmd_r0;
|
|
|
|
|
uint8_t cmd_r1;
|
|
|
|
|
uint8_t cmd_r2;
|
|
|
|
|
uint8_t cmd_r3;
|
|
|
|
|
uint8_t cmd_r4;
|
|
|
|
|
uint8_t status;
|
|
|
|
|
uint8_t type;
|
2020-02-29 19:12:23 +01:00
|
|
|
} bt48x_ramdac_t;
|
2018-10-05 01:54:54 +02:00
|
|
|
|
|
|
|
|
enum {
|
2022-08-31 19:19:29 -04:00
|
|
|
BT484 = 0,
|
|
|
|
|
ATT20C504,
|
|
|
|
|
BT485,
|
|
|
|
|
ATT20C505,
|
|
|
|
|
BT485A
|
2018-10-05 01:54:54 +02:00
|
|
|
};
|
2016-07-23 15:34:06 +02:00
|
|
|
|
2018-10-02 00:06:30 +02:00
|
|
|
static void
|
2018-10-05 01:54:54 +02:00
|
|
|
bt48x_set_bpp(bt48x_ramdac_t *ramdac, svga_t *svga)
|
2018-10-02 00:06:30 +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
|
|
|
if ((!(ramdac->cmd_r2 & 0x20)) || ((ramdac->type >= BT485A) && ((ramdac->cmd_r3 & 0x60) == 0x60)))
|
2022-08-31 19:19:29 -04:00
|
|
|
svga->bpp = 8;
|
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
|
|
|
else if ((ramdac->type >= BT485A) && ((ramdac->cmd_r3 & 0x60) == 0x40))
|
2022-08-31 19:19:29 -04:00
|
|
|
svga->bpp = 24;
|
|
|
|
|
else
|
|
|
|
|
switch (ramdac->cmd_r1 & 0x60) {
|
|
|
|
|
case 0x00:
|
|
|
|
|
svga->bpp = 32;
|
|
|
|
|
break;
|
|
|
|
|
case 0x20:
|
|
|
|
|
if (ramdac->cmd_r1 & 0x08)
|
|
|
|
|
svga->bpp = 16;
|
|
|
|
|
else
|
|
|
|
|
svga->bpp = 15;
|
|
|
|
|
break;
|
|
|
|
|
case 0x40:
|
|
|
|
|
svga->bpp = 8;
|
|
|
|
|
break;
|
|
|
|
|
case 0x60:
|
|
|
|
|
svga->bpp = 4;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
2018-10-02 00:06:30 +02:00
|
|
|
svga_recalctimings(svga);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-30 20:29:44 +02:00
|
|
|
void
|
2023-07-31 16:50:43 -04:00
|
|
|
bt48x_ramdac_out(uint16_t addr, int rs2, int rs3, uint8_t val, void *priv, svga_t *svga)
|
2016-07-23 15:34:06 +02:00
|
|
|
{
|
2023-07-31 16:50:43 -04:00
|
|
|
bt48x_ramdac_t *ramdac = (bt48x_ramdac_t *) priv;
|
2022-08-31 19:19:29 -04:00
|
|
|
uint32_t o32;
|
|
|
|
|
uint8_t *cd;
|
|
|
|
|
uint16_t index;
|
|
|
|
|
uint8_t rs = (addr & 0x03);
|
|
|
|
|
uint16_t da_mask = 0x03ff;
|
2018-10-01 23:36:52 +02:00
|
|
|
rs |= (!!rs2 << 2);
|
|
|
|
|
rs |= (!!rs3 << 3);
|
2018-10-05 01:54:54 +02:00
|
|
|
if (ramdac->type < BT485)
|
2022-08-31 19:19:29 -04:00
|
|
|
da_mask = 0x00ff;
|
2018-10-01 23:36:52 +02:00
|
|
|
|
|
|
|
|
switch (rs) {
|
2022-08-31 19:19:29 -04:00
|
|
|
case 0x00: /* Palette Write Index Register (RS value = 0000) */
|
|
|
|
|
case 0x04: /* Ext Palette Write Index Register (RS value = 0100) */
|
|
|
|
|
case 0x03:
|
|
|
|
|
case 0x07: /* Ext Palette Read Index Register (RS value = 0111) */
|
|
|
|
|
svga->dac_pos = 0;
|
|
|
|
|
svga->dac_status = addr & 0x03;
|
|
|
|
|
svga->dac_addr = val;
|
|
|
|
|
if (ramdac->type >= BT485)
|
2023-06-09 23:46:54 -04:00
|
|
|
svga->dac_addr |= ((ramdac->cmd_r3 & 0x03) << 8);
|
2022-08-31 19:19:29 -04:00
|
|
|
if (svga->dac_status)
|
|
|
|
|
svga->dac_addr = (svga->dac_addr + 1) & da_mask;
|
|
|
|
|
break;
|
|
|
|
|
case 0x01: /* Palette Data Register (RS value = 0001) */
|
|
|
|
|
case 0x02: /* Pixel Read Mask Register (RS value = 0010) */
|
|
|
|
|
svga_out(addr, val, svga);
|
|
|
|
|
break;
|
|
|
|
|
case 0x05: /* Ext Palette Data Register (RS value = 0101) */
|
|
|
|
|
svga->dac_status = 0;
|
|
|
|
|
svga->fullchange = changeframecount;
|
|
|
|
|
switch (svga->dac_pos) {
|
|
|
|
|
case 0:
|
|
|
|
|
svga->dac_r = val;
|
|
|
|
|
svga->dac_pos++;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
svga->dac_g = val;
|
|
|
|
|
svga->dac_pos++;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
index = svga->dac_addr & 3;
|
|
|
|
|
ramdac->extpal[index].r = svga->dac_r;
|
|
|
|
|
ramdac->extpal[index].g = svga->dac_g;
|
|
|
|
|
ramdac->extpal[index].b = val;
|
|
|
|
|
if (svga->ramdac_type == RAMDAC_8BIT)
|
|
|
|
|
ramdac->extpallook[index] = makecol32(ramdac->extpal[index].r, ramdac->extpal[index].g, ramdac->extpal[index].b);
|
|
|
|
|
else
|
|
|
|
|
ramdac->extpallook[index] = makecol32(video_6to8[ramdac->extpal[index].r & 0x3f], video_6to8[ramdac->extpal[index].g & 0x3f], video_6to8[ramdac->extpal[index].b & 0x3f]);
|
|
|
|
|
|
|
|
|
|
if (svga->ext_overscan && !index) {
|
|
|
|
|
o32 = svga->overscan_color;
|
|
|
|
|
svga->overscan_color = ramdac->extpallook[0];
|
|
|
|
|
if (o32 != svga->overscan_color)
|
|
|
|
|
svga_recalctimings(svga);
|
|
|
|
|
}
|
|
|
|
|
svga->dac_addr = (svga->dac_addr + 1) & 0xff;
|
|
|
|
|
svga->dac_pos = 0;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 0x06: /* Command Register 0 (RS value = 0110) */
|
|
|
|
|
ramdac->cmd_r0 = val;
|
|
|
|
|
svga->ramdac_type = (val & 0x02) ? RAMDAC_8BIT : RAMDAC_6BIT;
|
|
|
|
|
break;
|
|
|
|
|
case 0x08: /* Command Register 1 (RS value = 1000) */
|
|
|
|
|
ramdac->cmd_r1 = val;
|
|
|
|
|
bt48x_set_bpp(ramdac, svga);
|
|
|
|
|
break;
|
|
|
|
|
case 0x09: /* Command Register 2 (RS value = 1001) */
|
|
|
|
|
ramdac->cmd_r2 = val;
|
|
|
|
|
svga->dac_hwcursor.ena = !!(val & 0x03);
|
|
|
|
|
bt48x_set_bpp(ramdac, svga);
|
|
|
|
|
break;
|
|
|
|
|
case 0x0a:
|
|
|
|
|
if ((ramdac->type >= BT485) && (ramdac->cmd_r0 & 0x80)) {
|
2023-06-01 18:32:25 -04:00
|
|
|
switch (svga->dac_addr & ((ramdac->type >= BT485A) ? 0xff : 0x3f)) {
|
2022-08-31 19:19:29 -04:00
|
|
|
case 0x01:
|
|
|
|
|
/* Command Register 3 (RS value = 1010) */
|
|
|
|
|
ramdac->cmd_r3 = val;
|
|
|
|
|
if (ramdac->type >= BT485A)
|
|
|
|
|
bt48x_set_bpp(ramdac, svga);
|
|
|
|
|
svga->dac_hwcursor.cur_xsize = svga->dac_hwcursor.cur_ysize = (val & 4) ? 64 : 32;
|
|
|
|
|
svga->dac_hwcursor.x = ramdac->hwc_x - svga->dac_hwcursor.cur_xsize;
|
|
|
|
|
svga->dac_hwcursor.y = ramdac->hwc_y - svga->dac_hwcursor.cur_ysize;
|
|
|
|
|
svga->dac_addr = (svga->dac_addr & 0x00ff) | ((val & 0x03) << 8);
|
|
|
|
|
svga_recalctimings(svga);
|
|
|
|
|
break;
|
|
|
|
|
case 0x02:
|
|
|
|
|
case 0x20:
|
|
|
|
|
case 0x21:
|
|
|
|
|
case 0x22:
|
|
|
|
|
if (ramdac->type != BT485A)
|
|
|
|
|
break;
|
|
|
|
|
else if (svga->dac_addr == 2) {
|
|
|
|
|
ramdac->cmd_r4 = val;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 0x0b: /* Cursor RAM Data Register (RS value = 1011) */
|
|
|
|
|
index = svga->dac_addr & da_mask;
|
|
|
|
|
if ((ramdac->type >= BT485) && (svga->dac_hwcursor.cur_xsize == 64))
|
|
|
|
|
cd = (uint8_t *) ramdac->cursor64_data;
|
|
|
|
|
else {
|
|
|
|
|
index &= 0xff;
|
|
|
|
|
cd = (uint8_t *) ramdac->cursor32_data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cd[index] = val;
|
|
|
|
|
|
|
|
|
|
svga->dac_addr = (svga->dac_addr + 1) & da_mask;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0c: /* Cursor X Low Register (RS value = 1100) */
|
|
|
|
|
ramdac->hwc_x = (ramdac->hwc_x & 0x0f00) | val;
|
|
|
|
|
svga->dac_hwcursor.x = ramdac->hwc_x - svga->dac_hwcursor.cur_xsize;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0d: /* Cursor X High Register (RS value = 1101) */
|
|
|
|
|
ramdac->hwc_x = (ramdac->hwc_x & 0x00ff) | ((val & 0x0f) << 8);
|
|
|
|
|
svga->dac_hwcursor.x = ramdac->hwc_x - svga->dac_hwcursor.cur_xsize;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0e: /* Cursor Y Low Register (RS value = 1110) */
|
|
|
|
|
ramdac->hwc_y = (ramdac->hwc_y & 0x0f00) | val;
|
|
|
|
|
svga->dac_hwcursor.y = ramdac->hwc_y - svga->dac_hwcursor.cur_ysize;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0f: /* Cursor Y High Register (RS value = 1111) */
|
|
|
|
|
ramdac->hwc_y = (ramdac->hwc_y & 0x00ff) | ((val & 0x0f) << 8);
|
|
|
|
|
svga->dac_hwcursor.y = ramdac->hwc_y - svga->dac_hwcursor.cur_ysize;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2018-09-30 20:29:44 +02:00
|
|
|
}
|
2018-10-01 23:36:52 +02:00
|
|
|
|
2018-09-30 20:29:44 +02:00
|
|
|
return;
|
2016-07-23 15:34:06 +02:00
|
|
|
}
|
|
|
|
|
|
2018-09-30 20:29:44 +02:00
|
|
|
uint8_t
|
2023-07-31 16:50:43 -04:00
|
|
|
bt48x_ramdac_in(uint16_t addr, int rs2, int rs3, void *priv, svga_t *svga)
|
2016-07-23 15:34:06 +02:00
|
|
|
{
|
2023-07-31 16:50:43 -04:00
|
|
|
bt48x_ramdac_t *ramdac = (bt48x_ramdac_t *) priv;
|
2022-08-31 19:19:29 -04:00
|
|
|
uint8_t temp = 0xff;
|
2023-07-31 16:50:43 -04:00
|
|
|
const uint8_t *cd;
|
2022-08-31 19:19:29 -04:00
|
|
|
uint16_t index;
|
|
|
|
|
uint8_t rs = (addr & 0x03);
|
|
|
|
|
uint16_t da_mask = 0x03ff;
|
2018-10-01 23:36:52 +02:00
|
|
|
rs |= (!!rs2 << 2);
|
|
|
|
|
rs |= (!!rs3 << 3);
|
2018-10-05 01:54:54 +02:00
|
|
|
if (ramdac->type < BT485)
|
2022-08-31 19:19:29 -04:00
|
|
|
da_mask = 0x00ff;
|
2018-10-01 23:36:52 +02:00
|
|
|
|
|
|
|
|
switch (rs) {
|
2022-08-31 19:19:29 -04:00
|
|
|
case 0x00: /* Palette Write Index Register (RS value = 0000) */
|
|
|
|
|
case 0x01: /* Palette Data Register (RS value = 0001) */
|
|
|
|
|
case 0x02: /* Pixel Read Mask Register (RS value = 0010) */
|
|
|
|
|
case 0x04: /* Ext Palette Write Index Register (RS value = 0100) */
|
|
|
|
|
temp = svga_in(addr, svga);
|
|
|
|
|
break;
|
|
|
|
|
case 0x03: /* Palette Read Index Register (RS value = 0011) */
|
|
|
|
|
case 0x07: /* Ext Palette Read Index Register (RS value = 0111) */
|
|
|
|
|
temp = svga->dac_addr & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
case 0x05: /* Ext Palette Data Register (RS value = 0101) */
|
|
|
|
|
index = (svga->dac_addr - 1) & 3;
|
|
|
|
|
svga->dac_status = 3;
|
|
|
|
|
switch (svga->dac_pos) {
|
|
|
|
|
case 0:
|
|
|
|
|
svga->dac_pos++;
|
|
|
|
|
if (svga->ramdac_type == RAMDAC_8BIT)
|
|
|
|
|
temp = ramdac->extpal[index].r;
|
|
|
|
|
else
|
|
|
|
|
temp = ramdac->extpal[index].r & 0x3f;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
svga->dac_pos++;
|
|
|
|
|
if (svga->ramdac_type == RAMDAC_8BIT)
|
|
|
|
|
temp = ramdac->extpal[index].g;
|
|
|
|
|
else
|
|
|
|
|
temp = ramdac->extpal[index].g & 0x3f;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
svga->dac_pos = 0;
|
|
|
|
|
svga->dac_addr = svga->dac_addr + 1;
|
|
|
|
|
if (svga->ramdac_type == RAMDAC_8BIT)
|
|
|
|
|
temp = ramdac->extpal[index].b;
|
|
|
|
|
else
|
|
|
|
|
temp = ramdac->extpal[index].b & 0x3f;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 0x06: /* Command Register 0 (RS value = 0110) */
|
|
|
|
|
temp = ramdac->cmd_r0;
|
|
|
|
|
break;
|
|
|
|
|
case 0x08: /* Command Register 1 (RS value = 1000) */
|
|
|
|
|
temp = ramdac->cmd_r1;
|
|
|
|
|
break;
|
|
|
|
|
case 0x09: /* Command Register 2 (RS value = 1001) */
|
|
|
|
|
temp = ramdac->cmd_r2;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0a:
|
|
|
|
|
if ((ramdac->type >= BT485) && (ramdac->cmd_r0 & 0x80)) {
|
2023-06-01 18:32:25 -04:00
|
|
|
switch (svga->dac_addr & ((ramdac->type >= BT485A) ? 0xff : 0x3f)) {
|
2022-08-31 19:19:29 -04:00
|
|
|
default:
|
2023-06-09 23:46:54 -04:00
|
|
|
case 0x00:
|
2022-08-31 19:19:29 -04:00
|
|
|
temp = ramdac->status | (svga->dac_status ? 0x04 : 0x00);
|
|
|
|
|
break;
|
|
|
|
|
case 0x01:
|
|
|
|
|
temp = ramdac->cmd_r3 & 0xfc;
|
|
|
|
|
temp |= (svga->dac_addr & 0x300) >> 8;
|
|
|
|
|
break;
|
|
|
|
|
case 0x02:
|
|
|
|
|
case 0x20:
|
|
|
|
|
case 0x21:
|
|
|
|
|
case 0x22:
|
|
|
|
|
if (ramdac->type != BT485A)
|
|
|
|
|
break;
|
|
|
|
|
else if (svga->dac_addr == 2) {
|
|
|
|
|
temp = ramdac->cmd_r4;
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
/* TODO: Red, Green, and Blue Signature Analysis Registers */
|
|
|
|
|
temp = 0xff;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
temp = ramdac->status | (svga->dac_status ? 0x04 : 0x00);
|
|
|
|
|
break;
|
|
|
|
|
case 0x0b: /* Cursor RAM Data Register (RS value = 1011) */
|
|
|
|
|
index = (svga->dac_addr - 1) & da_mask;
|
|
|
|
|
if ((ramdac->type >= BT485) && (svga->dac_hwcursor.cur_xsize == 64))
|
|
|
|
|
cd = (uint8_t *) ramdac->cursor64_data;
|
|
|
|
|
else {
|
|
|
|
|
index &= 0xff;
|
|
|
|
|
cd = (uint8_t *) ramdac->cursor32_data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
temp = cd[index];
|
|
|
|
|
|
|
|
|
|
svga->dac_addr = (svga->dac_addr + 1) & da_mask;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0c: /* Cursor X Low Register (RS value = 1100) */
|
|
|
|
|
temp = ramdac->hwc_x & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0d: /* Cursor X High Register (RS value = 1101) */
|
|
|
|
|
temp = (ramdac->hwc_x >> 8) & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0e: /* Cursor Y Low Register (RS value = 1110) */
|
|
|
|
|
temp = ramdac->hwc_y & 0xff;
|
|
|
|
|
break;
|
|
|
|
|
case 0x0f: /* Cursor Y High Register (RS value = 1111) */
|
|
|
|
|
temp = (ramdac->hwc_y >> 8) & 0xff;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2018-09-30 20:29:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return temp;
|
2016-07-23 15:34:06 +02:00
|
|
|
}
|
2018-10-03 03:22:48 +02:00
|
|
|
|
2020-02-29 19:12:23 +01:00
|
|
|
void
|
2023-07-31 16:50:43 -04:00
|
|
|
bt48x_recalctimings(void *priv, svga_t *svga)
|
2020-02-29 19:12:23 +01:00
|
|
|
{
|
2023-07-31 16:50:43 -04:00
|
|
|
const bt48x_ramdac_t *ramdac = (bt48x_ramdac_t *) priv;
|
2020-02-29 19:12:23 +01:00
|
|
|
|
|
|
|
|
svga->interlace = ramdac->cmd_r2 & 0x08;
|
|
|
|
|
if (ramdac->cmd_r3 & 0x08)
|
2022-08-31 19:19:29 -04:00
|
|
|
svga->hdisp *= 2; /* x2 clock multiplier */
|
2020-02-29 19:12:23 +01:00
|
|
|
}
|
|
|
|
|
|
2018-10-05 01:54:54 +02:00
|
|
|
void
|
|
|
|
|
bt48x_hwcursor_draw(svga_t *svga, int displine)
|
2018-10-03 03:22:48 +02:00
|
|
|
{
|
2023-06-01 18:32:25 -04:00
|
|
|
int comb;
|
|
|
|
|
int b0;
|
|
|
|
|
int b1;
|
2022-08-31 19:19:29 -04:00
|
|
|
uint16_t dat[2];
|
|
|
|
|
int offset = svga->dac_hwcursor_latch.x - svga->dac_hwcursor_latch.xoff;
|
2023-06-01 18:32:25 -04:00
|
|
|
int pitch;
|
|
|
|
|
int bppl;
|
|
|
|
|
int mode;
|
|
|
|
|
int x_pos;
|
|
|
|
|
int y_pos;
|
|
|
|
|
uint32_t clr1;
|
|
|
|
|
uint32_t clr2;
|
|
|
|
|
uint32_t clr3;
|
|
|
|
|
uint32_t *p;
|
2023-07-31 16:50:43 -04:00
|
|
|
const uint8_t *cd;
|
2018-10-05 01:54:54 +02:00
|
|
|
bt48x_ramdac_t *ramdac = (bt48x_ramdac_t *) svga->ramdac;
|
|
|
|
|
|
|
|
|
|
clr1 = ramdac->extpallook[1];
|
|
|
|
|
clr2 = ramdac->extpallook[2];
|
|
|
|
|
clr3 = ramdac->extpallook[3];
|
|
|
|
|
|
|
|
|
|
/* The planes come in two parts, and each plane is 1bpp,
|
|
|
|
|
so a 32x32 cursor has 4 bytes per line, and a 64x64
|
|
|
|
|
cursor has 8 bytes per line. */
|
2022-08-31 19:19:29 -04:00
|
|
|
pitch = (svga->dac_hwcursor_latch.cur_xsize >> 3); /* Bytes per line. */
|
2018-10-05 01:54:54 +02:00
|
|
|
/* A 32x32 cursor has 128 bytes per line, and a 64x64
|
|
|
|
|
cursor has 512 bytes per line. */
|
2022-08-31 19:19:29 -04:00
|
|
|
bppl = (pitch * svga->dac_hwcursor_latch.cur_ysize); /* Bytes per plane. */
|
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
|
|
|
mode = ramdac->cmd_r2 & 0x03;
|
2018-10-05 01:54:54 +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
|
|
|
if (svga->interlace && svga->dac_hwcursor_oddeven)
|
2022-08-31 19:19:29 -04:00
|
|
|
svga->dac_hwcursor_latch.addr += pitch;
|
2018-10-05 01:54:54 +02:00
|
|
|
|
2022-07-03 01:07:13 +06:00
|
|
|
if (svga->dac_hwcursor_latch.cur_xsize == 64)
|
2022-08-31 19:19:29 -04:00
|
|
|
cd = (uint8_t *) ramdac->cursor64_data;
|
2018-10-05 01:54:54 +02:00
|
|
|
else
|
2022-08-31 19:19:29 -04:00
|
|
|
cd = (uint8_t *) ramdac->cursor32_data;
|
2018-10-03 04:18:29 +02:00
|
|
|
|
2023-06-01 18:32:25 -04:00
|
|
|
for (int x = 0; x < svga->dac_hwcursor_latch.cur_xsize; x += 16) {
|
2022-08-31 19:19:29 -04:00
|
|
|
dat[0] = (cd[svga->dac_hwcursor_latch.addr] << 8) | cd[svga->dac_hwcursor_latch.addr + 1];
|
|
|
|
|
dat[1] = (cd[svga->dac_hwcursor_latch.addr + bppl] << 8) | cd[svga->dac_hwcursor_latch.addr + bppl + 1];
|
|
|
|
|
|
2023-06-01 18:32:25 -04:00
|
|
|
for (uint8_t xx = 0; xx < 16; xx++) {
|
2022-08-31 19:19:29 -04:00
|
|
|
b0 = (dat[0] >> (15 - xx)) & 1;
|
|
|
|
|
b1 = (dat[1] >> (15 - xx)) & 1;
|
|
|
|
|
comb = (b0 | (b1 << 1));
|
|
|
|
|
|
|
|
|
|
y_pos = displine;
|
2024-07-14 23:58:29 +02:00
|
|
|
x_pos = (offset + svga->x_add) & 2047;
|
2022-08-31 19:19:29 -04:00
|
|
|
p = buffer32->line[y_pos];
|
|
|
|
|
|
|
|
|
|
if (offset >= svga->dac_hwcursor_latch.x) {
|
|
|
|
|
switch (mode) {
|
|
|
|
|
case 1: /* Three Color */
|
|
|
|
|
switch (comb) {
|
|
|
|
|
case 1:
|
|
|
|
|
p[x_pos] = clr1;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
p[x_pos] = clr2;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
p[x_pos] = clr3;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 2: /* PM/Windows */
|
|
|
|
|
switch (comb) {
|
|
|
|
|
case 0:
|
|
|
|
|
p[x_pos] = clr1;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
p[x_pos] = clr2;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
p[x_pos] ^= 0xffffff;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 3: /* X-Windows */
|
|
|
|
|
switch (comb) {
|
|
|
|
|
case 2:
|
|
|
|
|
p[x_pos] = clr1;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
p[x_pos] = clr2;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-08-31 19:19:29 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
offset++;
|
|
|
|
|
}
|
|
|
|
|
svga->dac_hwcursor_latch.addr += 2;
|
2018-10-03 04:18:29 +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
|
|
|
if (svga->interlace && !svga->dac_hwcursor_oddeven)
|
2022-08-31 19:19:29 -04:00
|
|
|
svga->dac_hwcursor_latch.addr += pitch;
|
2018-10-05 01:54:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
|
bt48x_ramdac_init(const device_t *info)
|
|
|
|
|
{
|
|
|
|
|
bt48x_ramdac_t *ramdac = (bt48x_ramdac_t *) malloc(sizeof(bt48x_ramdac_t));
|
|
|
|
|
memset(ramdac, 0, sizeof(bt48x_ramdac_t));
|
|
|
|
|
|
|
|
|
|
ramdac->type = info->local;
|
|
|
|
|
|
2018-10-03 04:18:29 +02:00
|
|
|
/* Set the RAM DAC status byte to the correct ID bits.
|
|
|
|
|
|
2022-08-31 19:19:29 -04:00
|
|
|
Both the BT484 and BT485 datasheets say this:
|
|
|
|
|
SR7-SR6: These bits are identification values. SR7=0 and SR6=1.
|
|
|
|
|
But all other sources seem to assume SR7=1 and SR6=0. */
|
2018-10-03 04:18:29 +02:00
|
|
|
switch (ramdac->type) {
|
2022-08-31 19:19:29 -04:00
|
|
|
case BT484:
|
|
|
|
|
ramdac->status = 0x40;
|
|
|
|
|
break;
|
|
|
|
|
case ATT20C504:
|
|
|
|
|
ramdac->status = 0x40;
|
|
|
|
|
break;
|
|
|
|
|
case BT485:
|
|
|
|
|
ramdac->status = 0x60;
|
|
|
|
|
break;
|
|
|
|
|
case ATT20C505:
|
|
|
|
|
ramdac->status = 0xd0;
|
|
|
|
|
break;
|
|
|
|
|
case BT485A:
|
|
|
|
|
ramdac->status = 0x20;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2018-10-03 04:18:29 +02:00
|
|
|
}
|
2018-10-05 01:54:54 +02:00
|
|
|
|
|
|
|
|
return ramdac;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
bt48x_ramdac_close(void *priv)
|
|
|
|
|
{
|
|
|
|
|
bt48x_ramdac_t *ramdac = (bt48x_ramdac_t *) priv;
|
|
|
|
|
|
|
|
|
|
if (ramdac)
|
2022-08-31 19:19:29 -04:00
|
|
|
free(ramdac);
|
2018-10-03 03:22:48 +02:00
|
|
|
}
|
2018-10-05 01:54:54 +02:00
|
|
|
|
2022-03-13 21:43:45 -04:00
|
|
|
const device_t bt484_ramdac_device = {
|
2022-08-31 19:19:29 -04:00
|
|
|
.name = "Brooktree Bt484 RAMDAC",
|
2022-03-13 21:43:45 -04:00
|
|
|
.internal_name = "bt484_ramdac",
|
2022-08-31 19:19:29 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = BT484,
|
|
|
|
|
.init = bt48x_ramdac_init,
|
|
|
|
|
.close = bt48x_ramdac_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 21:43:45 -04:00
|
|
|
.speed_changed = NULL,
|
2022-08-31 19:19:29 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-10-05 01:54:54 +02:00
|
|
|
};
|
|
|
|
|
|
2022-03-13 21:43:45 -04:00
|
|
|
const device_t att20c504_ramdac_device = {
|
2022-08-31 19:19:29 -04:00
|
|
|
.name = "AT&T 20c504 RAMDAC",
|
2022-03-13 21:43:45 -04:00
|
|
|
.internal_name = "att20c504_ramdac",
|
2022-08-31 19:19:29 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = ATT20C504,
|
|
|
|
|
.init = bt48x_ramdac_init,
|
|
|
|
|
.close = bt48x_ramdac_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 21:43:45 -04:00
|
|
|
.speed_changed = NULL,
|
2022-08-31 19:19:29 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-10-05 01:54:54 +02:00
|
|
|
};
|
|
|
|
|
|
2022-03-13 21:43:45 -04:00
|
|
|
const device_t bt485_ramdac_device = {
|
2022-08-31 19:19:29 -04:00
|
|
|
.name = "Brooktree Bt485 RAMDAC",
|
2022-03-13 21:43:45 -04:00
|
|
|
.internal_name = "bt485_ramdac",
|
2022-08-31 19:19:29 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = BT485,
|
|
|
|
|
.init = bt48x_ramdac_init,
|
|
|
|
|
.close = bt48x_ramdac_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 21:43:45 -04:00
|
|
|
.speed_changed = NULL,
|
2022-08-31 19:19:29 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-10-05 01:54:54 +02:00
|
|
|
};
|
|
|
|
|
|
2022-03-13 21:43:45 -04:00
|
|
|
const device_t att20c505_ramdac_device = {
|
2022-08-31 19:19:29 -04:00
|
|
|
.name = "AT&T 20c505 RAMDAC",
|
2022-03-13 21:43:45 -04:00
|
|
|
.internal_name = "att20c505_ramdac",
|
2022-08-31 19:19:29 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = ATT20C505,
|
|
|
|
|
.init = bt48x_ramdac_init,
|
|
|
|
|
.close = bt48x_ramdac_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 21:43:45 -04:00
|
|
|
.speed_changed = NULL,
|
2022-08-31 19:19:29 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-10-05 01:54:54 +02:00
|
|
|
};
|
|
|
|
|
|
2022-03-13 21:43:45 -04:00
|
|
|
const device_t bt485a_ramdac_device = {
|
2022-08-31 19:19:29 -04:00
|
|
|
.name = "Brooktree Bt485A RAMDAC",
|
2022-03-13 21:43:45 -04:00
|
|
|
.internal_name = "bt485a_ramdac",
|
2022-08-31 19:19:29 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = BT485A,
|
|
|
|
|
.init = bt48x_ramdac_init,
|
|
|
|
|
.close = bt48x_ramdac_close,
|
|
|
|
|
.reset = NULL,
|
2025-01-07 01:12:42 -05:00
|
|
|
.available = NULL,
|
2022-03-13 21:43:45 -04:00
|
|
|
.speed_changed = NULL,
|
2022-08-31 19:19:29 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2018-10-05 01:54:54 +02:00
|
|
|
};
|