BIOS: Add support for loading PS2 BIOSes

This commit is contained in:
Albert Liu
2020-12-25 07:33:33 -08:00
parent 4db29f9399
commit 0e2276fc7a
4 changed files with 9 additions and 6 deletions

View File

@ -9,7 +9,8 @@ namespace BIOS {
enum : u32
{
BIOS_BASE = 0x1FC00000,
BIOS_SIZE = 0x80000
BIOS_SIZE = 0x80000,
BIOS_SIZE_PS2 = 0x400000
};
using Image = std::vector<u8>;