fix dc blocklength
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2827
This commit is contained in:
parent
0280c7ee4c
commit
2d4ce67ff8
1 changed files with 1 additions and 4 deletions
|
@ -1953,10 +1953,7 @@ restart_prefix:
|
|||
if (!decode.page.invmap) opcode=decode_fetchb();
|
||||
else {
|
||||
if (decode.page.index<4096) {
|
||||
if (GCC_UNLIKELY(decode.page.invmap[decode.page.index]>=4)) {
|
||||
decode.page.index++;
|
||||
goto illegalopcode;
|
||||
}
|
||||
if (GCC_UNLIKELY(decode.page.invmap[decode.page.index]>=4)) goto illegalopcode;
|
||||
opcode=decode_fetchb();
|
||||
} else {
|
||||
opcode=decode_fetchb();
|
||||
|
|
Loading…
Add table
Reference in a new issue