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:
@@ -149,7 +149,6 @@ static void sw_write(void *p)
|
||||
|
||||
if (time_since_last > 9900 && time_since_last < 9940)
|
||||
{
|
||||
// pclog("sw sends ID packet\n");
|
||||
sw->poll_mode = 0;
|
||||
sw->poll_left = 49;
|
||||
sw->poll_data = 0x2400ull | (0x1830ull << 15) | (0x19b0ull << 30);
|
||||
@@ -157,8 +156,6 @@ static void sw_write(void *p)
|
||||
else
|
||||
{
|
||||
int c;
|
||||
|
||||
// pclog("sw sends data packet %08x %i\n", cpu_state.pc, data_packets++);
|
||||
|
||||
sw->poll_mode = sw->data_mode;
|
||||
sw->data_mode = !sw->data_mode;
|
||||
@@ -236,16 +233,17 @@ static void sw_a0_over(void *p)
|
||||
|
||||
joystick_if_t joystick_sw_pad =
|
||||
{
|
||||
.name = "Microsoft SideWinder Pad",
|
||||
.init = sw_init,
|
||||
.close = sw_close,
|
||||
.read = sw_read,
|
||||
.write = sw_write,
|
||||
.read_axis = sw_read_axis,
|
||||
.a0_over = sw_a0_over,
|
||||
.max_joysticks = 4,
|
||||
.axis_count = 2,
|
||||
.button_count = 10,
|
||||
.axis_names = {"X axis", "Y axis"},
|
||||
.button_names = {"A", "B", "C", "X", "Y", "Z", "L", "R", "Start", "M"}
|
||||
"Microsoft SideWinder Pad",
|
||||
sw_init,
|
||||
sw_close,
|
||||
sw_read,
|
||||
sw_write,
|
||||
sw_read_axis,
|
||||
sw_a0_over,
|
||||
4,
|
||||
2,
|
||||
10,
|
||||
0,
|
||||
{"X axis", "Y axis"},
|
||||
{"A", "B", "C", "X", "Y", "Z", "L", "R", "Start", "M"}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user