BIOS: Add check for older BIOS from PS3

Same revision number as newer PS3, but different file size and 512KB
hash.
This commit is contained in:
Albert Liu
2021-01-04 23:38:42 -08:00
parent e3de44d127
commit 79012d5288
3 changed files with 9 additions and 8 deletions

View File

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