mirror of https://gitee.com/openkylin/qemu.git
target/s390x: fix pgm irq ilen for stsi
The instruction is 4 bytes long. Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20170721125609.11117-2-david@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
parent
e01151de16
commit
031631c3cf
|
@ -192,7 +192,7 @@ uint32_t HELPER(stsi)(CPUS390XState *env, uint64_t a0,
|
|||
if ((r0 & STSI_LEVEL_MASK) <= STSI_LEVEL_3 &&
|
||||
((r0 & STSI_R0_RESERVED_MASK) || (r1 & STSI_R1_RESERVED_MASK))) {
|
||||
/* valid function code, invalid reserved bits */
|
||||
program_interrupt(env, PGM_SPECIFICATION, 2);
|
||||
program_interrupt(env, PGM_SPECIFICATION, 4);
|
||||
}
|
||||
|
||||
sel1 = r0 & STSI_R0_SEL1_MASK;
|
||||
|
|
Loading…
Reference in New Issue