├── .gdbinit ├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── apps ├── CMakeLists.txt └── cli │ ├── CMakeLists.txt │ └── src │ ├── lib │ └── cxxopts.hpp │ ├── main.cpp │ ├── pch.cpp │ └── pch.hpp ├── cmake ├── FindSDL2.cmake ├── PrecompiledHeader.cmake └── VSHelpers.cmake └── modules ├── CMakeLists.txt └── core ├── CMakeLists.txt ├── cmake └── Config.cmake.in ├── include └── strikebox │ ├── alloc.h │ ├── core.h │ ├── debug.h │ ├── dynamic_variant.h │ ├── hw │ ├── ata │ │ ├── ata.h │ │ ├── ata_channel.h │ │ ├── ata_common.h │ │ ├── ata_defs.h │ │ ├── ata_device.h │ │ ├── cmds │ │ │ ├── ata_command.h │ │ │ ├── cmd_identify_device.h │ │ │ ├── cmd_identify_packet_device.h │ │ │ ├── cmd_init_dev_params.h │ │ │ ├── cmd_packet.h │ │ │ ├── cmd_read_dma.h │ │ │ ├── cmd_security_unlock.h │ │ │ ├── cmd_set_features.h │ │ │ ├── cmd_write_dma.h │ │ │ ├── proto_dma.h │ │ │ ├── proto_nondata.h │ │ │ ├── proto_packet.h │ │ │ ├── proto_pio_data_in.h │ │ │ └── proto_pio_data_out.h │ │ └── drvs │ │ │ ├── ata_device_driver.h │ │ │ ├── drv_null.h │ │ │ ├── drv_vdvd_base.h │ │ │ ├── drv_vdvd_dummy.h │ │ │ ├── drv_vdvd_image.h │ │ │ ├── drv_vhd_base.h │ │ │ ├── drv_vhd_dummy.h │ │ │ ├── drv_vhd_image.h │ │ │ └── util.h │ ├── atapi │ │ ├── atapi_common.h │ │ ├── atapi_defs.h │ │ ├── atapi_utils.h │ │ ├── atapi_xbox.h │ │ └── cmds │ │ │ ├── atapi_command.h │ │ │ ├── cmd_mode_sense_10.h │ │ │ ├── cmd_read_10.h │ │ │ ├── cmd_read_capacity.h │ │ │ ├── cmd_read_dvd_structure.h │ │ │ ├── cmd_test_unit_ready.h │ │ │ ├── proto_data_in.h │ │ │ └── proto_nondata.h │ ├── basic │ │ ├── char.h │ │ ├── char_null.h │ │ ├── cmos.h │ │ ├── gsi.h │ │ ├── i8254.h │ │ ├── i8259.h │ │ ├── interrupt.h │ │ ├── ioapic.h │ │ ├── irq.h │ │ ├── mcpx.h │ │ ├── serial.h │ │ └── superio.h │ ├── bus │ │ ├── isabus.h │ │ ├── pcibus.h │ │ └── smbus.h │ ├── defs.h │ ├── gpu │ │ ├── defs.h │ │ ├── engine.h │ │ ├── engines │ │ │ ├── pbus.h │ │ │ ├── pcounter.h │ │ │ ├── pcrtc.h │ │ │ ├── pfb.h │ │ │ ├── pfifo.h │ │ │ ├── pgraph.h │ │ │ ├── pmc.h │ │ │ ├── pnvio.h │ │ │ ├── pramdac.h │ │ │ ├── pramin.h │ │ │ ├── prma.h │ │ │ ├── prmcio.h │ │ │ ├── prmdio.h │ │ │ ├── prom.h │ │ │ ├── pstraps.h │ │ │ ├── ptimer.h │ │ │ ├── pvideo.h │ │ │ └── user.h │ │ ├── nv2a.h │ │ └── state.h │ ├── pci │ │ ├── ac97.h │ │ ├── agpbridge.h │ │ ├── bmide.h │ │ ├── bmide_channel.h │ │ ├── bmide_defs.h │ │ ├── hostbridge.h │ │ ├── lpc.h │ │ ├── mcpx_ram.h │ │ ├── nv2a.h │ │ ├── nvapu.h │ │ ├── nvnet.h │ │ ├── pci.h │ │ ├── pci_common.h │ │ ├── pci_irq.h │ │ ├── pci_regs.h │ │ ├── pcibridge.h │ │ └── usb_pci.h │ ├── sm │ │ ├── adm1032.h │ │ ├── eeprom.h │ │ ├── led.h │ │ ├── sm.h │ │ ├── smc.h │ │ ├── tvenc.h │ │ └── tvenc_conexant.h │ └── utils.h │ ├── io.h │ ├── log.h │ ├── mem.h │ ├── settings.h │ ├── status.h │ ├── thread.h │ ├── timer.h │ ├── util.h │ ├── util │ ├── fifo.h │ └── invoke_later.h │ └── xbox.h └── src ├── common ├── pch.cpp ├── pch.hpp └── strikebox │ ├── core.cpp │ ├── debug.cpp │ ├── hw │ ├── ata │ │ ├── ata.cpp │ │ ├── ata_channel.cpp │ │ ├── ata_common.cpp │ │ ├── ata_device.cpp │ │ ├── cmds │ │ │ ├── ata_command.cpp │ │ │ ├── cmd_identify_device.cpp │ │ │ ├── cmd_identify_packet_device.cpp │ │ │ ├── cmd_init_dev_params.cpp │ │ │ ├── cmd_packet.cpp │ │ │ ├── cmd_read_dma.cpp │ │ │ ├── cmd_security_unlock.cpp │ │ │ ├── cmd_set_features.cpp │ │ │ ├── cmd_write_dma.cpp │ │ │ ├── proto_dma.cpp │ │ │ ├── proto_nondata.cpp │ │ │ ├── proto_packet.cpp │ │ │ ├── proto_pio_data_in.cpp │ │ │ └── proto_pio_data_out.cpp │ │ └── drvs │ │ │ ├── ata_device_driver.cpp │ │ │ ├── drv_null.cpp │ │ │ ├── drv_vdvd_base.cpp │ │ │ ├── drv_vdvd_dummy.cpp │ │ │ ├── drv_vdvd_image.cpp │ │ │ ├── drv_vhd_base.cpp │ │ │ ├── drv_vhd_dummy.cpp │ │ │ ├── drv_vhd_image.cpp │ │ │ └── util.cpp │ ├── atapi │ │ ├── atapi_common.cpp │ │ └── cmds │ │ │ ├── atapi_command.cpp │ │ │ ├── cmd_mode_sense_10.cpp │ │ │ ├── cmd_read_10.cpp │ │ │ ├── cmd_read_capacity.cpp │ │ │ ├── cmd_read_dvd_structure.cpp │ │ │ ├── cmd_test_unit_ready.cpp │ │ │ ├── proto_data_in.cpp │ │ │ └── proto_nondata.cpp │ ├── basic │ │ ├── char.cpp │ │ ├── char_null.cpp │ │ ├── cmos.cpp │ │ ├── gsi.cpp │ │ ├── i8254.cpp │ │ ├── i8259.cpp │ │ ├── irq.cpp │ │ ├── mcpx.cpp │ │ ├── serial.cpp │ │ └── superio.cpp │ ├── bus │ │ ├── isabus.cpp │ │ ├── pcibus.cpp │ │ └── smbus.cpp │ ├── gpu │ │ ├── engine.cpp │ │ ├── engines │ │ │ ├── pbus.cpp │ │ │ ├── pcounter.cpp │ │ │ ├── pcrtc.cpp │ │ │ ├── pfb.cpp │ │ │ ├── pfifo.cpp │ │ │ ├── pgraph.cpp │ │ │ ├── pmc.cpp │ │ │ ├── pnvio.cpp │ │ │ ├── pramdac.cpp │ │ │ ├── pramin.cpp │ │ │ ├── prma.cpp │ │ │ ├── prmcio.cpp │ │ │ ├── prmdio.cpp │ │ │ ├── prom.cpp │ │ │ ├── pstraps.cpp │ │ │ ├── ptimer.cpp │ │ │ ├── pvideo.cpp │ │ │ └── user.cpp │ │ └── state.cpp │ ├── pci │ │ ├── ac97.cpp │ │ ├── agpbridge.cpp │ │ ├── bmide.cpp │ │ ├── bmide_channel.cpp │ │ ├── hostbridge.cpp │ │ ├── lpc.cpp │ │ ├── mcpx_ram.cpp │ │ ├── nv2a.cpp │ │ ├── nvapu.cpp │ │ ├── nvnet.cpp │ │ ├── pci.cpp │ │ ├── pci_irq.cpp │ │ ├── pcibridge.cpp │ │ └── usb_pci.cpp │ └── sm │ │ ├── adm1032.cpp │ │ ├── eeprom.cpp │ │ ├── sm.cpp │ │ ├── smc.cpp │ │ ├── tvenc.cpp │ │ └── tvenc_conexant.cpp │ ├── io.cpp │ ├── log.cpp │ ├── timer.cpp │ ├── util │ ├── fifo.cpp │ └── invoke_later.cpp │ └── xbox.cpp ├── linux └── thread.cpp └── windows ├── strikebox └── hw │ └── basic │ └── win32 │ ├── char_serial.cpp │ ├── char_serial.h │ ├── mt_serial.cpp │ └── mt_serial.h └── thread.cpp /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/README.md -------------------------------------------------------------------------------- /apps/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Add apps 2 | add_subdirectory(cli) 3 | -------------------------------------------------------------------------------- /apps/cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/apps/cli/CMakeLists.txt -------------------------------------------------------------------------------- /apps/cli/src/lib/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/apps/cli/src/lib/cxxopts.hpp -------------------------------------------------------------------------------- /apps/cli/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/apps/cli/src/main.cpp -------------------------------------------------------------------------------- /apps/cli/src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/apps/cli/src/pch.cpp -------------------------------------------------------------------------------- /apps/cli/src/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/apps/cli/src/pch.hpp -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/PrecompiledHeader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/cmake/PrecompiledHeader.cmake -------------------------------------------------------------------------------- /cmake/VSHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/cmake/VSHelpers.cmake -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Add modules 2 | add_subdirectory(core) 3 | -------------------------------------------------------------------------------- /modules/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/CMakeLists.txt -------------------------------------------------------------------------------- /modules/core/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/cmake/Config.cmake.in -------------------------------------------------------------------------------- /modules/core/include/strikebox/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/alloc.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/core.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/debug.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/dynamic_variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/dynamic_variant.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/ata.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/ata_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/ata_channel.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/ata_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/ata_common.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/ata_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/ata_defs.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/ata_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/ata_device.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/ata_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/ata_command.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_identify_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_identify_device.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_identify_packet_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_identify_packet_device.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_init_dev_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_init_dev_params.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_packet.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_read_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_read_dma.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_security_unlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_security_unlock.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_set_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_set_features.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/cmd_write_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/cmd_write_dma.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/proto_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/proto_dma.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/proto_nondata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/proto_nondata.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/proto_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/proto_packet.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/proto_pio_data_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/proto_pio_data_in.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/cmds/proto_pio_data_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/cmds/proto_pio_data_out.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/ata_device_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/ata_device_driver.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/drv_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/drv_null.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/drv_vdvd_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/drv_vdvd_base.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/drv_vdvd_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/drv_vdvd_dummy.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/drv_vdvd_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/drv_vdvd_image.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/drv_vhd_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/drv_vhd_base.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/drv_vhd_dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/drv_vhd_dummy.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/drv_vhd_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/drv_vhd_image.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/ata/drvs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/ata/drvs/util.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/atapi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/atapi_common.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/atapi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/atapi_defs.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/atapi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/atapi_utils.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/atapi_xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/atapi_xbox.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/atapi_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/atapi_command.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/cmd_mode_sense_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/cmd_mode_sense_10.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/cmd_read_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/cmd_read_10.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/cmd_read_capacity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/cmd_read_capacity.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/cmd_read_dvd_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/cmd_read_dvd_structure.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/cmd_test_unit_ready.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/cmd_test_unit_ready.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/proto_data_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/proto_data_in.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/atapi/cmds/proto_nondata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/atapi/cmds/proto_nondata.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/char.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/char_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/char_null.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/cmos.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/gsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/gsi.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/i8254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/i8254.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/i8259.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/i8259.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/interrupt.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/ioapic.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace strikebox { 4 | 5 | #define IOAPIC_NUM_PINS 24 6 | 7 | } 8 | -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/irq.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/mcpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/mcpx.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/serial.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/basic/superio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/basic/superio.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/bus/isabus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/bus/isabus.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/bus/pcibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/bus/pcibus.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/bus/smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/bus/smbus.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/defs.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/defs.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engine.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pbus.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pcounter.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pcrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pcrtc.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pfb.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pfifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pfifo.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pgraph.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pmc.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pnvio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pnvio.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pramdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pramdac.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pramin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pramin.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/prma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/prma.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/prmcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/prmcio.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/prmdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/prmdio.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/prom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/prom.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pstraps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pstraps.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/ptimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/ptimer.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/pvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/pvideo.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/engines/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/engines/user.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/nv2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/nv2a.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/gpu/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/gpu/state.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/ac97.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/ac97.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/agpbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/agpbridge.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/bmide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/bmide.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/bmide_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/bmide_channel.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/bmide_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/bmide_defs.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/hostbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/hostbridge.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/lpc.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/mcpx_ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/mcpx_ram.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/nv2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/nv2a.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/nvapu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/nvapu.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/nvnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/nvnet.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/pci.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/pci_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/pci_common.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/pci_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/pci_irq.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/pci_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/pci_regs.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/pcibridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/pcibridge.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/pci/usb_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/pci/usb_pci.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/sm/adm1032.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/sm/adm1032.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/sm/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/sm/eeprom.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/sm/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/sm/led.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/sm/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/sm/sm.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/sm/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/sm/smc.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/sm/tvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/sm/tvenc.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/sm/tvenc_conexant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/sm/tvenc_conexant.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/hw/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/hw/utils.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/io.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/log.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/mem.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/settings.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/status.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/thread.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/timer.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/util.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/util/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/util/fifo.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/util/invoke_later.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/util/invoke_later.h -------------------------------------------------------------------------------- /modules/core/include/strikebox/xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/include/strikebox/xbox.h -------------------------------------------------------------------------------- /modules/core/src/common/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/pch.cpp -------------------------------------------------------------------------------- /modules/core/src/common/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/pch.hpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/core.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/debug.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/ata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/ata.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/ata_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/ata_channel.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/ata_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/ata_common.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/ata_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/ata_device.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/ata_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/ata_command.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_identify_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_identify_device.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_identify_packet_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_identify_packet_device.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_init_dev_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_init_dev_params.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_packet.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_read_dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_read_dma.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_security_unlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_security_unlock.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_set_features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_set_features.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/cmd_write_dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/cmd_write_dma.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/proto_dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/proto_dma.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/proto_nondata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/proto_nondata.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/proto_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/proto_packet.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/proto_pio_data_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/proto_pio_data_in.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/cmds/proto_pio_data_out.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/cmds/proto_pio_data_out.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/ata_device_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/ata_device_driver.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/drv_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/drv_null.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/drv_vdvd_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/drv_vdvd_base.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/drv_vdvd_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/drv_vdvd_dummy.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/drv_vdvd_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/drv_vdvd_image.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/drv_vhd_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/drv_vhd_base.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/drv_vhd_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/drv_vhd_dummy.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/drv_vhd_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/drv_vhd_image.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/ata/drvs/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/ata/drvs/util.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/atapi_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/atapi_common.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/atapi_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/atapi_command.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/cmd_mode_sense_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/cmd_mode_sense_10.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/cmd_read_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/cmd_read_10.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/cmd_read_capacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/cmd_read_capacity.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/cmd_read_dvd_structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/cmd_read_dvd_structure.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/cmd_test_unit_ready.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/cmd_test_unit_ready.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/proto_data_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/proto_data_in.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/atapi/cmds/proto_nondata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/atapi/cmds/proto_nondata.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/char.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/char_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/char_null.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/cmos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/cmos.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/gsi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/gsi.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/i8254.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/i8254.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/i8259.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/i8259.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/irq.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/mcpx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/mcpx.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/serial.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/basic/superio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/basic/superio.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/bus/isabus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/bus/isabus.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/bus/pcibus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/bus/pcibus.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/bus/smbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/bus/smbus.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engine.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pbus.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pcounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pcounter.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pcrtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pcrtc.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pfb.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pfifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pfifo.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pgraph.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pmc.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pnvio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pnvio.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pramdac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pramdac.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pramin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pramin.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/prma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/prma.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/prmcio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/prmcio.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/prmdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/prmdio.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/prom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/prom.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pstraps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pstraps.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/ptimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/ptimer.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/pvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/pvideo.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/engines/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/engines/user.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/gpu/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/gpu/state.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/ac97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/ac97.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/agpbridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/agpbridge.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/bmide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/bmide.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/bmide_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/bmide_channel.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/hostbridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/hostbridge.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/lpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/lpc.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/mcpx_ram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/mcpx_ram.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/nv2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/nv2a.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/nvapu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/nvapu.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/nvnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/nvnet.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/pci.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/pci_irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/pci_irq.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/pcibridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/pcibridge.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/pci/usb_pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/pci/usb_pci.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/sm/adm1032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/sm/adm1032.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/sm/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/sm/eeprom.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/sm/sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/sm/sm.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/sm/smc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/sm/smc.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/sm/tvenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/sm/tvenc.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/hw/sm/tvenc_conexant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/hw/sm/tvenc_conexant.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/io.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/log.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/timer.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/util/fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/util/fifo.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/util/invoke_later.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/util/invoke_later.cpp -------------------------------------------------------------------------------- /modules/core/src/common/strikebox/xbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/common/strikebox/xbox.cpp -------------------------------------------------------------------------------- /modules/core/src/linux/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/linux/thread.cpp -------------------------------------------------------------------------------- /modules/core/src/windows/strikebox/hw/basic/win32/char_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/windows/strikebox/hw/basic/win32/char_serial.cpp -------------------------------------------------------------------------------- /modules/core/src/windows/strikebox/hw/basic/win32/char_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/windows/strikebox/hw/basic/win32/char_serial.h -------------------------------------------------------------------------------- /modules/core/src/windows/strikebox/hw/basic/win32/mt_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/windows/strikebox/hw/basic/win32/mt_serial.cpp -------------------------------------------------------------------------------- /modules/core/src/windows/strikebox/hw/basic/win32/mt_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/windows/strikebox/hw/basic/win32/mt_serial.h -------------------------------------------------------------------------------- /modules/core/src/windows/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrikerX3/StrikeBox/HEAD/modules/core/src/windows/thread.cpp --------------------------------------------------------------------------------