├── .clang-format ├── .gdbinit ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Dockerfile ├── README.md ├── config_fatfs ├── ffconf.h └── ffsystem.c ├── config_freertos ├── CMakeLists.txt ├── FreeRTOSConfig.h ├── freertos_irq.h ├── irq.S ├── irq.c └── pic_ack.patch ├── config_tinyusb ├── chip.h └── tusb_config.h ├── lib ├── PureDOOM │ └── PureDOOM.h ├── fatfs │ ├── 00history.txt │ ├── 00readme.txt │ ├── LICENSE.txt │ ├── diskio.h │ ├── ff.c │ ├── ff.h │ └── ffunicode.c ├── font │ └── unscii_16.h ├── libfatx │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── ext.c │ ├── ext.h │ ├── fatx.c │ ├── fatx.h │ ├── fatx_attr.c │ ├── fatx_dev.c │ ├── fatx_dir.c │ ├── fatx_disk.c │ ├── fatx_fat.c │ ├── fatx_file.c │ ├── fatx_internal.h │ ├── fatx_log.c │ ├── fatx_log.h │ ├── fatx_misc.c │ ├── fatx_partition.c │ └── fatx_version.h ├── lz4 │ ├── LICENSE │ ├── lz4.c │ └── lz4.h ├── midi │ ├── LICENSE │ ├── midiplay.c │ ├── midiplay.h │ ├── synth.c │ └── synth.h ├── pc │ ├── CMakeLists.txt │ ├── ata.c │ ├── ata.h │ ├── atapi.h │ ├── cpu.h │ ├── dma8237.c │ ├── dma8237.h │ ├── ia32_compact.h │ ├── ia32_msr.h │ ├── idt.c │ ├── idt.h │ ├── io.h │ ├── lock.h │ ├── microcode.c │ ├── microcode.h │ ├── pci_io.c │ ├── pci_io.h │ ├── pic8259.c │ ├── pic8259.h │ ├── pit8254.h │ ├── smbus.c │ └── smbus.h └── xbox │ ├── 2bboot.c │ ├── 2bmain.nasm │ ├── 2bxcodes.nasm │ ├── CMakeLists.txt │ ├── audio.c │ ├── audio.h │ ├── eeprom.c │ ├── eeprom.h │ ├── encoder.c │ ├── encoder.h │ ├── led.c │ ├── led.h │ ├── nic.c │ ├── nic.h │ ├── pci.c │ ├── pci.h │ ├── serial.c │ ├── serial.h │ ├── smc.c │ ├── smc.h │ ├── video.c │ ├── video.h │ ├── xbox.c │ ├── xbox.h │ ├── xtime.c │ └── xtime.h ├── rom.ld ├── scripts ├── calculate_usage.py └── compress_rom.py ├── src ├── debug.c ├── display.c ├── doom.c ├── doom_audio.c ├── doom_input.c ├── fileio.c ├── fileio.h ├── fs_io │ ├── ata_ll.c │ ├── fat.c │ ├── fatx.c │ ├── iso9660.c │ └── usb_ll.c ├── interrupts.c ├── main.c ├── main.h ├── system.c └── usb.c └── toolchain-xboxbios.cmake /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/.clang-format -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/.gdbinit -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/README.md -------------------------------------------------------------------------------- /config_fatfs/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_fatfs/ffconf.h -------------------------------------------------------------------------------- /config_fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_fatfs/ffsystem.c -------------------------------------------------------------------------------- /config_freertos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_freertos/CMakeLists.txt -------------------------------------------------------------------------------- /config_freertos/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_freertos/FreeRTOSConfig.h -------------------------------------------------------------------------------- /config_freertos/freertos_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_freertos/freertos_irq.h -------------------------------------------------------------------------------- /config_freertos/irq.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_freertos/irq.S -------------------------------------------------------------------------------- /config_freertos/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_freertos/irq.c -------------------------------------------------------------------------------- /config_freertos/pic_ack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_freertos/pic_ack.patch -------------------------------------------------------------------------------- /config_tinyusb/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_tinyusb/chip.h -------------------------------------------------------------------------------- /config_tinyusb/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/config_tinyusb/tusb_config.h -------------------------------------------------------------------------------- /lib/PureDOOM/PureDOOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/PureDOOM/PureDOOM.h -------------------------------------------------------------------------------- /lib/fatfs/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/fatfs/00history.txt -------------------------------------------------------------------------------- /lib/fatfs/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/fatfs/00readme.txt -------------------------------------------------------------------------------- /lib/fatfs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/fatfs/LICENSE.txt -------------------------------------------------------------------------------- /lib/fatfs/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/fatfs/diskio.h -------------------------------------------------------------------------------- /lib/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/fatfs/ff.c -------------------------------------------------------------------------------- /lib/fatfs/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/fatfs/ff.h -------------------------------------------------------------------------------- /lib/fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/fatfs/ffunicode.c -------------------------------------------------------------------------------- /lib/font/unscii_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/font/unscii_16.h -------------------------------------------------------------------------------- /lib/libfatx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/CMakeLists.txt -------------------------------------------------------------------------------- /lib/libfatx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/LICENSE.txt -------------------------------------------------------------------------------- /lib/libfatx/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/ext.c -------------------------------------------------------------------------------- /lib/libfatx/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/ext.h -------------------------------------------------------------------------------- /lib/libfatx/fatx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx.c -------------------------------------------------------------------------------- /lib/libfatx/fatx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx.h -------------------------------------------------------------------------------- /lib/libfatx/fatx_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_attr.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_dev.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_dir.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_disk.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_fat.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_file.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_internal.h -------------------------------------------------------------------------------- /lib/libfatx/fatx_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_log.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_log.h -------------------------------------------------------------------------------- /lib/libfatx/fatx_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_misc.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_partition.c -------------------------------------------------------------------------------- /lib/libfatx/fatx_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/libfatx/fatx_version.h -------------------------------------------------------------------------------- /lib/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/lz4/LICENSE -------------------------------------------------------------------------------- /lib/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/lz4/lz4.c -------------------------------------------------------------------------------- /lib/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/lz4/lz4.h -------------------------------------------------------------------------------- /lib/midi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/midi/LICENSE -------------------------------------------------------------------------------- /lib/midi/midiplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/midi/midiplay.c -------------------------------------------------------------------------------- /lib/midi/midiplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/midi/midiplay.h -------------------------------------------------------------------------------- /lib/midi/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/midi/synth.c -------------------------------------------------------------------------------- /lib/midi/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/midi/synth.h -------------------------------------------------------------------------------- /lib/pc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/pc/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/ata.c -------------------------------------------------------------------------------- /lib/pc/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/ata.h -------------------------------------------------------------------------------- /lib/pc/atapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/atapi.h -------------------------------------------------------------------------------- /lib/pc/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/cpu.h -------------------------------------------------------------------------------- /lib/pc/dma8237.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/dma8237.c -------------------------------------------------------------------------------- /lib/pc/dma8237.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/dma8237.h -------------------------------------------------------------------------------- /lib/pc/ia32_compact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/ia32_compact.h -------------------------------------------------------------------------------- /lib/pc/ia32_msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/ia32_msr.h -------------------------------------------------------------------------------- /lib/pc/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/idt.c -------------------------------------------------------------------------------- /lib/pc/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/idt.h -------------------------------------------------------------------------------- /lib/pc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/io.h -------------------------------------------------------------------------------- /lib/pc/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/lock.h -------------------------------------------------------------------------------- /lib/pc/microcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/microcode.c -------------------------------------------------------------------------------- /lib/pc/microcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/microcode.h -------------------------------------------------------------------------------- /lib/pc/pci_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/pci_io.c -------------------------------------------------------------------------------- /lib/pc/pci_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/pci_io.h -------------------------------------------------------------------------------- /lib/pc/pic8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/pic8259.c -------------------------------------------------------------------------------- /lib/pc/pic8259.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/pic8259.h -------------------------------------------------------------------------------- /lib/pc/pit8254.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/pit8254.h -------------------------------------------------------------------------------- /lib/pc/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/smbus.c -------------------------------------------------------------------------------- /lib/pc/smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/pc/smbus.h -------------------------------------------------------------------------------- /lib/xbox/2bboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/2bboot.c -------------------------------------------------------------------------------- /lib/xbox/2bmain.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/2bmain.nasm -------------------------------------------------------------------------------- /lib/xbox/2bxcodes.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/2bxcodes.nasm -------------------------------------------------------------------------------- /lib/xbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/CMakeLists.txt -------------------------------------------------------------------------------- /lib/xbox/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/audio.c -------------------------------------------------------------------------------- /lib/xbox/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/audio.h -------------------------------------------------------------------------------- /lib/xbox/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/eeprom.c -------------------------------------------------------------------------------- /lib/xbox/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/eeprom.h -------------------------------------------------------------------------------- /lib/xbox/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/encoder.c -------------------------------------------------------------------------------- /lib/xbox/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/encoder.h -------------------------------------------------------------------------------- /lib/xbox/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/led.c -------------------------------------------------------------------------------- /lib/xbox/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/led.h -------------------------------------------------------------------------------- /lib/xbox/nic.c: -------------------------------------------------------------------------------- 1 | #include "xbox.h" -------------------------------------------------------------------------------- /lib/xbox/nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/nic.h -------------------------------------------------------------------------------- /lib/xbox/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/pci.c -------------------------------------------------------------------------------- /lib/xbox/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/pci.h -------------------------------------------------------------------------------- /lib/xbox/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/serial.c -------------------------------------------------------------------------------- /lib/xbox/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/serial.h -------------------------------------------------------------------------------- /lib/xbox/smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/smc.c -------------------------------------------------------------------------------- /lib/xbox/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/smc.h -------------------------------------------------------------------------------- /lib/xbox/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/video.c -------------------------------------------------------------------------------- /lib/xbox/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/video.h -------------------------------------------------------------------------------- /lib/xbox/xbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/xbox.c -------------------------------------------------------------------------------- /lib/xbox/xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/xbox.h -------------------------------------------------------------------------------- /lib/xbox/xtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/xtime.c -------------------------------------------------------------------------------- /lib/xbox/xtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/lib/xbox/xtime.h -------------------------------------------------------------------------------- /rom.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/rom.ld -------------------------------------------------------------------------------- /scripts/calculate_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/scripts/calculate_usage.py -------------------------------------------------------------------------------- /scripts/compress_rom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/scripts/compress_rom.py -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/display.c -------------------------------------------------------------------------------- /src/doom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/doom.c -------------------------------------------------------------------------------- /src/doom_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/doom_audio.c -------------------------------------------------------------------------------- /src/doom_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/doom_input.c -------------------------------------------------------------------------------- /src/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/fileio.c -------------------------------------------------------------------------------- /src/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/fileio.h -------------------------------------------------------------------------------- /src/fs_io/ata_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/fs_io/ata_ll.c -------------------------------------------------------------------------------- /src/fs_io/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/fs_io/fat.c -------------------------------------------------------------------------------- /src/fs_io/fatx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/fs_io/fatx.c -------------------------------------------------------------------------------- /src/fs_io/iso9660.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/fs_io/iso9660.c -------------------------------------------------------------------------------- /src/fs_io/usb_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/fs_io/usb_ll.c -------------------------------------------------------------------------------- /src/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/interrupts.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/main.h -------------------------------------------------------------------------------- /src/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/system.c -------------------------------------------------------------------------------- /src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/src/usb.c -------------------------------------------------------------------------------- /toolchain-xboxbios.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxDoomBIOS/HEAD/toolchain-xboxbios.cmake --------------------------------------------------------------------------------