Skip to content

Commit

Permalink
Fix careless typo introduced by commit 2dc33fe
Browse files Browse the repository at this point in the history
Closes #560
  • Loading branch information
Fish-Git committed Apr 9, 2023
1 parent bba608a commit 376d445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sie.c
Expand Up @@ -1483,7 +1483,7 @@ void ARCH_DEP( sie_exit )( REGS* regs, int icode )
STATEBK->f = 0;

/* Set the interception code in the SIE block */
switch (icode < 0 ? icode : icode & 0xFF)
switch (icode < 0 ? icode : icode & 0x7F)
{
/* If host interrupt pending, then backup psw so that the SIE
instruction gets re-executed again to re-enter SIE mode
Expand Down

0 comments on commit 376d445

Please sign in to comment.