Be less specific about the jump instruction when identifying a video BIOS.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4110
This commit is contained in:
parent
5bb10db88b
commit
f9ac735c98
1 changed files with 1 additions and 1 deletions
|
@ -908,7 +908,7 @@ public:
|
|||
/* try to identify ROM type */
|
||||
PhysPt rom_base = 0;
|
||||
if (data_read >= 0x4000 && rom_buffer[0] == 0x55 && rom_buffer[1] == 0xaa &&
|
||||
rom_buffer[3] == 0xeb && strncmp((char*)(&rom_buffer[0x1e]), "IBM", 3) == 0) {
|
||||
(rom_buffer[3] & 0xfc) == 0xe8 && strncmp((char*)(&rom_buffer[0x1e]), "IBM", 3) == 0) {
|
||||
|
||||
if (!IS_EGAVGA_ARCH) {
|
||||
WriteOut(MSG_Get("PROGRAM_LOADROM_INCOMPATIBLE"));
|
||||
|
|
Loading…
Add table
Reference in a new issue