├── Build └── .gitignore ├── Input ├── .gitignore └── Readme.md ├── LICENSE-GPLv2.md ├── LICENSE.md ├── PrometheOSUtility ├── .gitignore ├── BundlerMinifierVsix.vsix ├── PrometheOSPacker │ ├── Helpers │ │ ├── Block.cs │ │ ├── FlashBin.cs │ │ ├── Minify.cs │ │ ├── Package.cs │ │ └── Utility.cs │ ├── Program.cs │ ├── PrometheOSPacker.csproj │ └── bundle │ │ ├── cerbiosini.html │ │ ├── cerbiosini.js │ │ ├── download.html │ │ ├── download.js │ │ ├── downloads.html │ │ ├── downloads.js │ │ ├── downloads_tools.html │ │ ├── downloads_tools.js │ │ ├── favicon.ico │ │ ├── flash.html │ │ ├── flash.js │ │ ├── index.html │ │ ├── index.js │ │ ├── index_tools.html │ │ ├── index_tools.js │ │ ├── launch.html │ │ ├── launch.js │ │ ├── main.css │ │ ├── pico.css │ │ ├── remoteview.html │ │ ├── remoteview.js │ │ ├── remove.html │ │ └── remove.js ├── PrometheOSUtility.sln └── PrometheOSWeb │ ├── Program.cs │ ├── PrometheOSWeb.csproj │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── cerbiosini.html │ ├── cerbiosini.js │ ├── download.html │ ├── download.js │ ├── downloads.html │ ├── downloads.js │ ├── downloads_tools.html │ ├── downloads_tools.js │ ├── favicon.ico │ ├── flash.html │ ├── flash.js │ ├── index.html │ ├── index.js │ ├── index_tools.html │ ├── index_tools.js │ ├── launch.html │ ├── launch.js │ ├── main.css │ ├── pico.css │ ├── remoteview.html │ ├── remoteview.js │ ├── remove.html │ └── remove.js ├── PrometheOSXbe ├── .gitignore ├── Artwork │ └── Icon │ │ ├── Bundler.exe │ │ ├── Icon.png │ │ ├── Icon.psd │ │ ├── runme.bat │ │ ├── titleimage.bmp │ │ ├── titleimage.h │ │ ├── titleimage.rdf │ │ └── titleimage.xpr ├── Assets │ ├── ArialBold.sfd │ ├── ArialRoundedMTBold.ttf │ ├── Controller - Microsoft Xbox One.otf │ ├── file-fill.svg │ └── folder.svg ├── PrometheOSXbe.sln ├── PrometheOSXbe │ ├── Assets │ │ ├── Font │ │ │ └── freesans_sfn.h │ │ └── Web │ │ │ ├── cerbiosini_html.h │ │ │ ├── cerbiosini_js.h │ │ │ ├── download_html.h │ │ │ ├── download_js.h │ │ │ ├── downloads_html.h │ │ │ ├── downloads_js.h │ │ │ ├── downloads_tools_html.h │ │ │ ├── downloads_tools_js.h │ │ │ ├── favicon_ico.h │ │ │ ├── flash_html.h │ │ │ ├── flash_js.h │ │ │ ├── index_html.h │ │ │ ├── index_js.h │ │ │ ├── index_tools_html.h │ │ │ ├── index_tools_js.h │ │ │ ├── launch_html.h │ │ │ ├── launch_js.h │ │ │ ├── main_css.h │ │ │ ├── pico_css.h │ │ │ ├── remoteview_html.h │ │ │ ├── remoteview_js.h │ │ │ ├── remove_html.h │ │ │ └── remove_js.h │ ├── DisplayDrivers │ │ ├── displayDriver.cpp │ │ ├── displayDriver.h │ │ ├── displayFactory.cpp │ │ ├── displayFactory.h │ │ ├── displayHD44780Aladdin.cpp │ │ ├── displayHD44780Aladdin.h │ │ ├── displayHD44780LPC.cpp │ │ ├── displayHD44780LPC.h │ │ ├── displayHD44780Modxo.cpp │ │ ├── displayHD44780Modxo.h │ │ ├── displayHD44780Xecuter.cpp │ │ ├── displayHD44780Xecuter.h │ │ ├── displayLCDXXXXLPC.cpp │ │ ├── displayLCDXXXXLPC.h │ │ ├── displayLCDXXXXModxo.cpp │ │ ├── displayLCDXXXXModxo.h │ │ ├── displaySPI2PARAladdin.cpp │ │ ├── displaySPI2PARAladdin.h │ │ ├── displaySPI2PARModxo.cpp │ │ ├── displaySPI2PARModxo.h │ │ ├── displaySPI2PARSmartxx.cpp │ │ ├── displaySPI2PARSmartxx.h │ │ ├── displaySPI2PARXenium.cpp │ │ ├── displaySPI2PARXenium.h │ │ ├── displaySPI2PARXtremium.cpp │ │ └── displaySPI2PARXtremium.h │ ├── Plugins │ │ ├── PEProcess.cpp │ │ ├── PEProcess.h │ │ ├── PESymbol.cpp │ │ └── PESymbol.h │ ├── PrometheOSXbe.vcproj │ ├── Scenes │ │ ├── audioSettingsScene.cpp │ │ ├── audioSettingsScene.h │ │ ├── audioVideoOptionsScene.cpp │ │ ├── audioVideoOptionsScene.h │ │ ├── autoBootScene.cpp │ │ ├── autoBootScene.h │ │ ├── backupEepromScene.cpp │ │ ├── backupEepromScene.h │ │ ├── bootOptionsScene.cpp │ │ ├── bootOptionsScene.h │ │ ├── cerbiosIniEditorScene.cpp │ │ ├── cerbiosIniEditorScene.h │ │ ├── dlcSignerScene.cpp │ │ ├── dlcSignerScene.h │ │ ├── editFlowScene.cpp │ │ ├── editFlowScene.h │ │ ├── editScene.cpp │ │ ├── editScene.h │ │ ├── filePickerScene.cpp │ │ ├── filePickerScene.h │ │ ├── flashBackupScene.cpp │ │ ├── flashBackupScene.h │ │ ├── flashBankScene.cpp │ │ ├── flashBankScene.h │ │ ├── flashFlowScene.cpp │ │ ├── flashFlowScene.h │ │ ├── flashUpdateFlowScene.cpp │ │ ├── flashUpdateFlowScene.h │ │ ├── flashUpdateScene.cpp │ │ ├── flashUpdateScene.h │ │ ├── formatDriveScene.cpp │ │ ├── formatDriveScene.h │ │ ├── frontLedSelectorScene.cpp │ │ ├── frontLedSelectorScene.h │ │ ├── hddLockUnlockScene.cpp │ │ ├── hddLockUnlockScene.h │ │ ├── hddPasswordScene.cpp │ │ ├── hddPasswordScene.h │ │ ├── hdmiAdvancedScene.cpp │ │ ├── hdmiAdvancedScene.h │ │ ├── hdmiInterpolationScene.cpp │ │ ├── hdmiInterpolationScene.h │ │ ├── hdmiVideoSettingsScene.cpp │ │ ├── hdmiVideoSettingsScene.h │ │ ├── invadersScene.cpp │ │ ├── invadersScene.h │ │ ├── keyboardScene.cpp │ │ ├── keyboardScene.h │ │ ├── keypadScene.cpp │ │ ├── keypadScene.h │ │ ├── launchScene.cpp │ │ ├── launchScene.h │ │ ├── launcherFlowScene.cpp │ │ ├── launcherFlowScene.h │ │ ├── lcdOptionsScene.cpp │ │ ├── lcdOptionsScene.h │ │ ├── ledColorSelectorScene.cpp │ │ ├── ledColorSelectorScene.h │ │ ├── ledOptionsScene.cpp │ │ ├── ledOptionsScene.h │ │ ├── mainScene.cpp │ │ ├── mainScene.h │ │ ├── menuScene.cpp │ │ ├── menuScene.h │ │ ├── miscellaneousOptionsScene.cpp │ │ ├── miscellaneousOptionsScene.h │ │ ├── networkSettingsScene.cpp │ │ ├── networkSettingsScene.h │ │ ├── regionSettingsScene.cpp │ │ ├── regionSettingsScene.h │ │ ├── removeScene.cpp │ │ ├── removeScene.h │ │ ├── restoreEepromFlowScene.cpp │ │ ├── restoreEepromFlowScene.h │ │ ├── restoreEepromScene.cpp │ │ ├── restoreEepromScene.h │ │ ├── rtcScene.cpp │ │ ├── rtcScene.h │ │ ├── scene.h │ │ ├── sceneManager.cpp │ │ ├── sceneManager.h │ │ ├── skinSelectionScene.cpp │ │ ├── skinSelectionScene.h │ │ ├── snakeScene.cpp │ │ ├── snakeScene.h │ │ ├── soundPackSelectionScene.cpp │ │ ├── soundPackSelectionScene.h │ │ ├── systemInfoScene.cpp │ │ ├── systemInfoScene.h │ │ ├── videoSettingsScene.cpp │ │ └── videoSettingsScene.h │ ├── Threads │ │ ├── countdown.cpp │ │ ├── countdown.h │ │ ├── driveMounter.cpp │ │ ├── driveMounter.h │ │ ├── flashBackup.cpp │ │ ├── flashBackup.h │ │ ├── flashBank.cpp │ │ ├── flashBank.h │ │ ├── flashUpdate.cpp │ │ ├── flashUpdate.h │ │ ├── hddFormat.cpp │ │ ├── hddFormat.h │ │ ├── hddInfo.cpp │ │ ├── hddInfo.h │ │ ├── hddLockUnlock.cpp │ │ ├── hddLockUnlock.h │ │ ├── lcdRender.cpp │ │ └── lcdRender.h │ ├── XKUtils │ │ ├── XKCRC.cpp │ │ ├── XKCRC.h │ │ ├── XKEEPROM.cpp │ │ ├── XKEEPROM.h │ │ ├── XKExports.h │ │ ├── XKGeneral.cpp │ │ ├── XKGeneral.h │ │ ├── XKHDD.cpp │ │ ├── XKHDD.h │ │ ├── XKRC4.cpp │ │ ├── XKRC4.h │ │ ├── XKSHA1.cpp │ │ ├── XKSHA1.h │ │ └── XKflash.h │ ├── alignment.h │ ├── audioPlayer.cpp │ ├── audioPlayer.h │ ├── cerbiosIniHelper.cpp │ ├── cerbiosIniHelper.h │ ├── component.cpp │ ├── component.h │ ├── context.cpp │ ├── context.h │ ├── crc32.cpp │ ├── crc32.h │ ├── drawing.cpp │ ├── drawing.h │ ├── drive.cpp │ ├── drive.h │ ├── driveManager.cpp │ ├── driveManager.h │ ├── extensions.h │ ├── fileSystem.cpp │ ├── fileSystem.h │ ├── ftpServer.cpp │ ├── ftpServer.h │ ├── globalDefines.h │ ├── globalTypes.h │ ├── harddrive.cpp │ ├── harddrive.h │ ├── hddVscUnlocker.cpp │ ├── hddVscUnlocker.h │ ├── hdmiDevice.cpp │ ├── hdmiDevice.h │ ├── hdmiSettingsManager.cpp │ ├── hdmiSettingsManager.h │ ├── httpServer.cpp │ ├── httpServer.h │ ├── inputManager.cpp │ ├── inputManager.h │ ├── json.h │ ├── main.cpp │ ├── math.cpp │ ├── math.h │ ├── meshUtility.cpp │ ├── meshUtility.h │ ├── modchip.cpp │ ├── modchip.h │ ├── modchipAladdin1mb.cpp │ ├── modchipAladdin1mb.h │ ├── modchipAladdin2mb.cpp │ ├── modchipAladdin2mb.h │ ├── modchipDummy.cpp │ ├── modchipDummy.h │ ├── modchipModxo.cpp │ ├── modchipModxo.h │ ├── modchipSmartxx.cpp │ ├── modchipSmartxx.h │ ├── modchipXchanger.cpp │ ├── modchipXchanger.h │ ├── modchipXecuter.cpp │ ├── modchipXecuter.h │ ├── modchipXenium.cpp │ ├── modchipXenium.h │ ├── modchipXtremium.cpp │ ├── modchipXtremium.h │ ├── network.cpp │ ├── network.h │ ├── pointerMap.h │ ├── pointerVector.h │ ├── resources.h │ ├── rtcManager.cpp │ ├── rtcManager.h │ ├── settingsManager.cpp │ ├── settingsManager.h │ ├── socketUtility.cpp │ ├── socketUtility.h │ ├── ssfn.h │ ├── stb.h │ ├── stb_image.h │ ├── stb_image_write.h │ ├── stb_vorbis.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ ├── stringUtility.cpp │ ├── stringUtility.h │ ├── temperatureManager.cpp │ ├── temperatureManager.h │ ├── theme.cpp │ ├── theme.h │ ├── timeUtility.cpp │ ├── timeUtility.h │ ├── timezone.cpp │ ├── timezone.h │ ├── titleimage.xpr │ ├── utils.cpp │ ├── utils.h │ ├── versioning.cpp │ ├── versioning.h │ ├── xboxConfig.cpp │ ├── xboxConfig.h │ └── xboxinternals.h └── Tools │ └── SSFN │ ├── Arial Bold+Iicons.sfn │ ├── CROSSOVER.ttf │ ├── Controller - Microsoft Xbox One.otf │ ├── sfnconv.exe │ └── sfnedit.exe └── README.md /Build/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.uf2 3 | ^.xbe 4 | -------------------------------------------------------------------------------- /Input/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.uf2 3 | *.xbe 4 | -------------------------------------------------------------------------------- /Input/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/Input/Readme.md -------------------------------------------------------------------------------- /LICENSE-GPLv2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/LICENSE-GPLv2.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PrometheOSUtility/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/.gitignore -------------------------------------------------------------------------------- /PrometheOSUtility/BundlerMinifierVsix.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/BundlerMinifierVsix.vsix -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/Helpers/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/Helpers/Block.cs -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/Helpers/FlashBin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/Helpers/FlashBin.cs -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/Helpers/Minify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/Helpers/Minify.cs -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/Helpers/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/Helpers/Package.cs -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/Helpers/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/Helpers/Utility.cs -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/Program.cs -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/PrometheOSPacker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/PrometheOSPacker.csproj -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/cerbiosini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/cerbiosini.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/cerbiosini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/cerbiosini.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/download.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/download.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/downloads.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/downloads.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/downloads_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/downloads_tools.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/downloads_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/downloads_tools.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/favicon.ico -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/flash.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/flash.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/index.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/index.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/index_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/index_tools.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/index_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/index_tools.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/launch.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/launch.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/main.css -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/pico.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/pico.css -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/remoteview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/remoteview.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/remoteview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/remoteview.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/remove.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSPacker/bundle/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSPacker/bundle/remove.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSUtility.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSUtility.sln -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/Program.cs -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/PrometheOSWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/PrometheOSWeb.csproj -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/Properties/launchSettings.json -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/appsettings.Development.json -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/appsettings.json -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/cerbiosini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/cerbiosini.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/cerbiosini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/cerbiosini.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/download.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/download.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/downloads.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/downloads.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/downloads_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/downloads_tools.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/downloads_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/downloads_tools.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/favicon.ico -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/flash.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/flash.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/index.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/index.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/index_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/index_tools.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/index_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/index_tools.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/launch.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/launch.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/main.css -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/pico.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/pico.css -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/remoteview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/remoteview.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/remoteview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/remoteview.js -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/remove.html -------------------------------------------------------------------------------- /PrometheOSUtility/PrometheOSWeb/wwwroot/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSUtility/PrometheOSWeb/wwwroot/remove.js -------------------------------------------------------------------------------- /PrometheOSXbe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/.gitignore -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/Bundler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Artwork/Icon/Bundler.exe -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Artwork/Icon/Icon.png -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Artwork/Icon/Icon.psd -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/runme.bat: -------------------------------------------------------------------------------- 1 | bundler titleimage.rdf 2 | -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/titleimage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Artwork/Icon/titleimage.bmp -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/titleimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Artwork/Icon/titleimage.h -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/titleimage.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Artwork/Icon/titleimage.rdf -------------------------------------------------------------------------------- /PrometheOSXbe/Artwork/Icon/titleimage.xpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Artwork/Icon/titleimage.xpr -------------------------------------------------------------------------------- /PrometheOSXbe/Assets/ArialBold.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Assets/ArialBold.sfd -------------------------------------------------------------------------------- /PrometheOSXbe/Assets/ArialRoundedMTBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Assets/ArialRoundedMTBold.ttf -------------------------------------------------------------------------------- /PrometheOSXbe/Assets/Controller - Microsoft Xbox One.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Assets/Controller - Microsoft Xbox One.otf -------------------------------------------------------------------------------- /PrometheOSXbe/Assets/file-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Assets/file-fill.svg -------------------------------------------------------------------------------- /PrometheOSXbe/Assets/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Assets/folder.svg -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe.sln -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Font/freesans_sfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Font/freesans_sfn.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/cerbiosini_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/cerbiosini_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/cerbiosini_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/cerbiosini_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/download_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/download_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/download_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/download_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_tools_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_tools_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_tools_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/downloads_tools_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/favicon_ico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/favicon_ico.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/flash_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/flash_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/flash_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/flash_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/index_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/index_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/index_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/index_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/index_tools_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/index_tools_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/index_tools_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/index_tools_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/launch_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/launch_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/launch_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/launch_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/main_css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/main_css.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/pico_css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/pico_css.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/remoteview_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/remoteview_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/remoteview_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/remoteview_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/remove_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/remove_html.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Assets/Web/remove_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Assets/Web/remove_js.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayDriver.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayDriver.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayFactory.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayFactory.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Aladdin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Aladdin.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Aladdin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Aladdin.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780LPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780LPC.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780LPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780LPC.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Modxo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Modxo.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Modxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Modxo.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Xecuter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Xecuter.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Xecuter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayHD44780Xecuter.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXLPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXLPC.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXLPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXLPC.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXModxo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXModxo.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXModxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displayLCDXXXXModxo.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARAladdin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARAladdin.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARAladdin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARAladdin.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARModxo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARModxo.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARModxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARModxo.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARSmartxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARSmartxx.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARSmartxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARSmartxx.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXenium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXenium.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXenium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXenium.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXtremium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXtremium.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXtremium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/DisplayDrivers/displaySPI2PARXtremium.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Plugins/PEProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Plugins/PEProcess.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Plugins/PEProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Plugins/PEProcess.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Plugins/PESymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Plugins/PESymbol.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Plugins/PESymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Plugins/PESymbol.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/PrometheOSXbe.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/PrometheOSXbe.vcproj -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/audioSettingsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/audioSettingsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/audioSettingsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/audioSettingsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/audioVideoOptionsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/audioVideoOptionsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/audioVideoOptionsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/audioVideoOptionsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/autoBootScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/autoBootScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/autoBootScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/autoBootScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/backupEepromScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/backupEepromScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/backupEepromScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/backupEepromScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/bootOptionsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/bootOptionsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/bootOptionsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/bootOptionsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/cerbiosIniEditorScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/cerbiosIniEditorScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/cerbiosIniEditorScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/cerbiosIniEditorScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/dlcSignerScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/dlcSignerScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/dlcSignerScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/dlcSignerScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/editFlowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/editFlowScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/editFlowScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/editFlowScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/editScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/editScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/editScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/editScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/filePickerScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/filePickerScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/filePickerScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/filePickerScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashBackupScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashBackupScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashBackupScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashBackupScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashBankScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashBankScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashBankScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashBankScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashFlowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashFlowScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashFlowScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashFlowScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateFlowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateFlowScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateFlowScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateFlowScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/flashUpdateScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/formatDriveScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/formatDriveScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/formatDriveScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/formatDriveScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/frontLedSelectorScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/frontLedSelectorScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/frontLedSelectorScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/frontLedSelectorScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hddLockUnlockScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hddLockUnlockScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hddLockUnlockScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hddLockUnlockScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hddPasswordScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hddPasswordScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hddPasswordScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hddPasswordScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hdmiAdvancedScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hdmiAdvancedScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hdmiAdvancedScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hdmiAdvancedScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hdmiInterpolationScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hdmiInterpolationScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hdmiInterpolationScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hdmiInterpolationScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hdmiVideoSettingsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hdmiVideoSettingsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/hdmiVideoSettingsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/hdmiVideoSettingsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/invadersScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/invadersScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/invadersScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/invadersScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/keyboardScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/keyboardScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/keyboardScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/keyboardScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/keypadScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/keypadScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/keypadScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/keypadScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/launchScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/launchScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/launchScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/launchScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/launcherFlowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/launcherFlowScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/launcherFlowScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/launcherFlowScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/lcdOptionsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/lcdOptionsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/lcdOptionsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/lcdOptionsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/ledColorSelectorScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/ledColorSelectorScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/ledColorSelectorScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/ledColorSelectorScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/ledOptionsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/ledOptionsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/ledOptionsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/ledOptionsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/mainScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/mainScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/mainScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/mainScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/menuScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/menuScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/menuScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/menuScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/miscellaneousOptionsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/miscellaneousOptionsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/miscellaneousOptionsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/miscellaneousOptionsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/networkSettingsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/networkSettingsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/networkSettingsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/networkSettingsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/regionSettingsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/regionSettingsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/regionSettingsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/regionSettingsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/removeScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/removeScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/removeScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/removeScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromFlowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromFlowScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromFlowScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromFlowScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/restoreEepromScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/rtcScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/rtcScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/rtcScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/rtcScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/scene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/sceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/sceneManager.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/sceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/sceneManager.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/skinSelectionScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/skinSelectionScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/skinSelectionScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/skinSelectionScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/snakeScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/snakeScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/snakeScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/snakeScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/soundPackSelectionScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/soundPackSelectionScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/soundPackSelectionScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/soundPackSelectionScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/systemInfoScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/systemInfoScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/systemInfoScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/systemInfoScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/videoSettingsScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/videoSettingsScene.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Scenes/videoSettingsScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Scenes/videoSettingsScene.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/countdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/countdown.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/countdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/countdown.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/driveMounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/driveMounter.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/driveMounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/driveMounter.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/flashBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/flashBackup.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/flashBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/flashBackup.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/flashBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/flashBank.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/flashBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/flashBank.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/flashUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/flashUpdate.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/flashUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/flashUpdate.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/hddFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/hddFormat.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/hddFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/hddFormat.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/hddInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/hddInfo.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/hddInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/hddInfo.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/hddLockUnlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/hddLockUnlock.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/hddLockUnlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/hddLockUnlock.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/lcdRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/lcdRender.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/Threads/lcdRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/Threads/lcdRender.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKCRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKCRC.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKCRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKCRC.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKEEPROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKEEPROM.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKEEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKEEPROM.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKExports.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKGeneral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKGeneral.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKGeneral.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKHDD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKHDD.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKHDD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKHDD.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKRC4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKRC4.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKRC4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKRC4.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKSHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKSHA1.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKSHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKSHA1.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/XKUtils/XKflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/XKUtils/XKflash.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/alignment.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/audioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/audioPlayer.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/audioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/audioPlayer.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/cerbiosIniHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/cerbiosIniHelper.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/cerbiosIniHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/cerbiosIniHelper.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/component.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/component.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/context.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/context.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/crc32.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/crc32.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/drawing.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/drawing.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/drive.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/drive.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/driveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/driveManager.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/driveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/driveManager.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/extensions.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/fileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/fileSystem.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/fileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/fileSystem.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/ftpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/ftpServer.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/ftpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/ftpServer.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/globalDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/globalDefines.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/globalTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/globalTypes.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/harddrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/harddrive.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/harddrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/harddrive.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/hddVscUnlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/hddVscUnlocker.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/hddVscUnlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/hddVscUnlocker.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/hdmiDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/hdmiDevice.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/hdmiDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/hdmiDevice.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/hdmiSettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/hdmiSettingsManager.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/hdmiSettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/hdmiSettingsManager.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/httpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/httpServer.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/httpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/httpServer.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/inputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/inputManager.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/inputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/inputManager.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/json.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/main.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/math.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/math.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/meshUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/meshUtility.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/meshUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/meshUtility.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchip.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchip.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipAladdin1mb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipAladdin1mb.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipAladdin1mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipAladdin1mb.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipAladdin2mb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipAladdin2mb.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipAladdin2mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipAladdin2mb.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipDummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipDummy.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipDummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipDummy.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipModxo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipModxo.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipModxo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipModxo.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipSmartxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipSmartxx.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipSmartxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipSmartxx.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXchanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXchanger.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXchanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXchanger.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXecuter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXecuter.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXecuter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXecuter.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXenium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXenium.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXenium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXenium.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXtremium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXtremium.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/modchipXtremium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/modchipXtremium.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/network.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/network.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/pointerMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/pointerMap.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/pointerVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/pointerVector.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/resources.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/rtcManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/rtcManager.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/rtcManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/rtcManager.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/settingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/settingsManager.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/settingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/settingsManager.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/socketUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/socketUtility.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/socketUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/socketUtility.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/ssfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/ssfn.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/stb.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/stb_image.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/stb_image_write.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stb_vorbis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/stb_vorbis.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/stdafx.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stdafx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stringUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/stringUtility.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/stringUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/stringUtility.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/temperatureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/temperatureManager.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/temperatureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/temperatureManager.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/theme.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/theme.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/timeUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/timeUtility.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/timeUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/timeUtility.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/timezone.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/timezone.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/titleimage.xpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/titleimage.xpr -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/utils.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/utils.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/versioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/versioning.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/versioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/versioning.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/xboxConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/xboxConfig.cpp -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/xboxConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/xboxConfig.h -------------------------------------------------------------------------------- /PrometheOSXbe/PrometheOSXbe/xboxinternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/PrometheOSXbe/xboxinternals.h -------------------------------------------------------------------------------- /PrometheOSXbe/Tools/SSFN/Arial Bold+Iicons.sfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Tools/SSFN/Arial Bold+Iicons.sfn -------------------------------------------------------------------------------- /PrometheOSXbe/Tools/SSFN/CROSSOVER.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Tools/SSFN/CROSSOVER.ttf -------------------------------------------------------------------------------- /PrometheOSXbe/Tools/SSFN/Controller - Microsoft Xbox One.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Tools/SSFN/Controller - Microsoft Xbox One.otf -------------------------------------------------------------------------------- /PrometheOSXbe/Tools/SSFN/sfnconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Tools/SSFN/sfnconv.exe -------------------------------------------------------------------------------- /PrometheOSXbe/Tools/SSFN/sfnedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/PrometheOSXbe/Tools/SSFN/sfnedit.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/PrometheOS-Firmware/HEAD/README.md --------------------------------------------------------------------------------