mirror of https://github.com/xemu-project/xemu.git
xec_bc mask fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1439 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
8993433789
commit
30aec8768f
|
@ -103,7 +103,7 @@ void do_store_xer (void)
|
|||
xer_so = (T0 >> XER_SO) & 0x01;
|
||||
xer_ov = (T0 >> XER_OV) & 0x01;
|
||||
xer_ca = (T0 >> XER_CA) & 0x01;
|
||||
xer_bc = (T0 >> XER_BC) & 0x1f;
|
||||
xer_bc = (T0 >> XER_BC) & 0x3f;
|
||||
}
|
||||
|
||||
void do_load_msr (void)
|
||||
|
|
Loading…
Reference in New Issue