Skip to content

Commit

Permalink
Add TODO note here for SGI 320
Browse files Browse the repository at this point in the history
  • Loading branch information
Cacodemon345 committed Dec 9, 2024
1 parent b8d022b commit d5e1a85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/usb/usb_hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ usb_device_hid_handle_data(usb_device_c *device, USBPacket *p)
if (p->devep == 1) {
if ((device->type == USB_HID_TYPE_MOUSE) || (device->type == USB_HID_TYPE_TABLET)) {
//pclog("USB MOUSE POLLING\n");
ret = usb_mouse_poll((usb_device_hid *) device, p->data, 0);
ret = usb_mouse_poll((usb_device_hid *) device, p->data, 1);
} else {
goto fail;
}
Expand Down
5 changes: 5 additions & 0 deletions src/usb/usb_uhci_bochs.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/* TODO: Investigate NAK behaviour on real PIIX hardware.
SGI Visual Workstation 320's firmware expects some very weird unknown behaviour on NAKs
that the UHCI spec doesn't clearly specify.
*/

#include <stdarg.h>
#include <stdio.h>
#include <stdint.h>
Expand Down

0 comments on commit d5e1a85

Please sign in to comment.