Skip to content

Commit 66bddc0

Browse files
committed
MT02916
1 parent c3f4e12 commit 66bddc0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/emu/cpu/drcfe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ static opcode_desc *describe_one(drcfe_state *drcfe, offs_t curpc, const opcode_
294294
desc->flags |= OPFLAG_VALIDATE_TLB | OPFLAG_CAN_CAUSE_EXCEPTION;
295295

296296
/* validate stuff */
297-
assert(desc->length > 0);
297+
assert(desc->length > 0 || (desc->flags & OPFLAG_VIRTUAL_NOOP) != 0);
298298

299299
/* if we are a branch with delay slots, recursively walk those */
300300
if (desc->flags & OPFLAG_IS_BRANCH)

0 commit comments

Comments
 (0)