SDL renderer improvements and fixes and added SDL OpenGL option;
Various performance improvements; Fixed USB UHCI HCHalt; Cirrus Logic CL-GD 5422/24 fixes and removed them from the Dev branch; The Storage controllers sections of Settings now has its own corresponding section of the configuration file; Fixed the AT clock divisors for some Pentium OverDrive CPU's; Added the ACPI RTC status (no ACPI RTC alarm event yet).
This commit is contained in:
@@ -102,8 +102,10 @@ uhci_reg_writew(uint16_t addr, uint16_t val, void *p)
|
||||
|
||||
switch (addr) {
|
||||
case 0x00:
|
||||
if ((regs[0x00] & 0x0001) && !(val & 0x0001))
|
||||
regs[0x02] |= 0x20;
|
||||
if ((val & 0x0001) && !(regs[0x00] & 0x0001))
|
||||
regs[0x01] &= ~0x20;
|
||||
else if (!(val & 0x0001))
|
||||
regs[0x01] |= 0x20;
|
||||
regs[0x00] = (val & 0x00ff);
|
||||
break;
|
||||
case 0x06:
|
||||
|
||||
Reference in New Issue
Block a user