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:
22
src/intel.c
22
src/intel.c
@@ -12,7 +12,6 @@
|
||||
|
||||
uint8_t batman_brdconfig(uint16_t port, void *p)
|
||||
{
|
||||
// pclog("batman_brdconfig read port=%04x\n", port);
|
||||
switch (port)
|
||||
{
|
||||
case 0x73:
|
||||
@@ -24,7 +23,7 @@ uint8_t batman_brdconfig(uint16_t port, void *p)
|
||||
}
|
||||
|
||||
static uint16_t batman_timer_latch;
|
||||
static int64_t batman_timer = 0;
|
||||
static int batman_timer = 0;
|
||||
static void batman_timer_over(void *p)
|
||||
{
|
||||
batman_timer = 0;
|
||||
@@ -65,22 +64,3 @@ void intel_batman_init()
|
||||
io_sethandler(0x0078, 0x0002, batman_timer_read, NULL, NULL, batman_timer_write, NULL, NULL, NULL);
|
||||
timer_add(batman_timer_over, &batman_timer, &batman_timer, NULL);
|
||||
}
|
||||
|
||||
|
||||
#if 0
|
||||
uint8_t endeavor_brdconfig(uint16_t port, void *p)
|
||||
{
|
||||
// pclog("endeavor_brdconfig read port=%04x\n", port);
|
||||
switch (port)
|
||||
{
|
||||
case 0x79:
|
||||
return 0xff;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
void intel_endeavor_init()
|
||||
{
|
||||
io_sethandler(0x0079, 0x0001, endeavor_brdconfig, NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user