No description
Find a file
Jiaxun Yang 106549a436 usb-ohci: Fix logical condition in start_ohci function
Correct the logical condition in the start_ohci function to ensure
proper evaluation of the status variable.

Fix warning:

./src/hw/usb-ohci.c:192:13: warning: logical not is only applied to the left hand side of this bitwise operator [-Wlogical-not-parentheses]
  192 |         if (! status & OHCI_HCR)

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
2026-01-20 12:30:51 -05:00
docs docs: Add mkdocs build tools for building the seabios.org website 2025-08-06 19:15:32 -04:00
scripts Remove remaining ACPI tooling bits 2026-01-20 12:29:53 -05:00
src usb-ohci: Fix logical condition in start_ohci function 2026-01-20 12:30:51 -05:00
vgasrc vgabios: Fix generating modes list for static_functionality 2024-10-25 11:55:25 -04:00
.gitignore Start using Kconfig to configure SeaBIOS settings. 2011-01-29 09:44:33 -05:00
COPYING Initial checkin. 2008-02-25 22:25:15 -05:00
COPYING.LESSER Change license from GPLv3 to LGPLv3. 2009-01-15 20:52:58 -05:00
Makefile Remove remaining ACPI tooling bits 2026-01-20 12:29:53 -05:00
README Simplify README files - point to online documentation instead 2014-12-15 21:46:56 -05:00

Welcome to the SeaBIOS project!  This project implements an X86 legacy
bios that is built with standard GNU tools.

Please see build and developer information at:

  http://seabios.org/Developer_Documentation

For the impatient, SeaBIOS is built for QEMU and tested on QEMU with:

  make
  qemu -bios out/bios.bin

SeaBIOS can be configured with kconfig.  To change the default
configuration one can run "make menuconfig" prior to running "make".

For other types of builds, and for more detailed developer
documentation, please see the online documentation listed above.