Vastly overhauled the UI, there's now a completely new Settings dialog as well as a status bar with disk activity icons and removable drive menus;

Thoroughly clean up the code to vastly reduce the number of compiler warnings and found and fixed several bugs in the process;
Applied all mainline PCem commits;
Added SCSI hard disk emulation;
Commented out all unfinished machines and graphics cards;
Added the AOpen AP53 and ASUS P/I-P55T2 machines as well as another Tyan 440FX machine, all three with AMI WinBIOS (patch from TheCollector1995);
Added the Diamond Stealth 3D 3000 (S3 ViRGE/VX) graphics card (patch from TheCollector1995);
Added the PS/2 XT IDE (AccuLogic) HDD Controller (patch from TheCollector1995);
Added Microsoft/Logitech Bus Mouse emulation (patch from waltje);
Overhauled the makefiles (patch from waltje);
Added the Adaptec AHA-1542CF SCSI controller (patch from waltje);
Added preliminary (but still unfinished) Adaptec AHA-154x SCSI controller BIOS support (patch from waltje);
Added an ISABugger debugging device (patch from waltje);
Added sanity checks to the Direct3D code.
This commit is contained in:
OBattler
2017-05-05 01:49:42 +02:00
parent d07d53962c
commit f6ef1f833c
346 changed files with 24292 additions and 18058 deletions

View File

@@ -4,6 +4,7 @@
#include <stdlib.h>
#include "ibm.h"
#include "device.h"
#include "io.h"
#include "tandy_eeprom.h"
typedef struct
@@ -34,7 +35,6 @@ void tandy_eeprom_write(uint16_t addr, uint8_t val, void *p)
if ((val & 4) && !eeprom->clock)
{
// pclog("eeprom_write %02x %i %i\n", val, eeprom->state, eeprom->count);
switch (eeprom->state)
{
case EEPROM_IDLE:
@@ -65,7 +65,6 @@ void tandy_eeprom_write(uint16_t addr, uint8_t val, void *p)
if (eeprom->count == 8)
{
eeprom->count = 0;
// pclog("EEPROM get operation %02x\n", eeprom->data);
eeprom->addr = eeprom->data & 0x3f;
switch (eeprom->data & 0xc0)
{
@@ -75,7 +74,6 @@ void tandy_eeprom_write(uint16_t addr, uint8_t val, void *p)
case 0x80:
eeprom->state = EEPROM_READ;
eeprom->data = eeprom->store[eeprom->addr];
// pclog("EEPROM read data %02x %04x\n", eeprom->addr, eeprom->data);
break;
default:
eeprom->state = EEPROM_IDLE;
@@ -101,7 +99,6 @@ void tandy_eeprom_write(uint16_t addr, uint8_t val, void *p)
{
eeprom->count = 0;
eeprom->state = EEPROM_IDLE;
// pclog("EEPROM write %04x to %02x\n", eeprom->data, eeprom->addr);
eeprom->store[eeprom->addr] = eeprom->data;
}
break;
@@ -113,7 +110,6 @@ void tandy_eeprom_write(uint16_t addr, uint8_t val, void *p)
int tandy_eeprom_read()
{
// pclog("tandy_eeprom_read: data_out=%x\n", eeprom_data_out);
return eeprom_data_out;
}