mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
Fix a bunch of type mismatch-related warnings (Jan Kiszka).
Fix a typo in my previous comming (spotted by Laurent Desnouges). git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4877 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
c5f2f66835
commit
526ccb7a26
7 changed files with 23 additions and 21 deletions
|
@ -594,7 +594,7 @@ void OPPROTO op_shlr16_Rn(void)
|
|||
|
||||
void OPPROTO op_tasb_rN(void)
|
||||
{
|
||||
cond_t((env->gregs[PARAM1] && 0xff) == 0);
|
||||
cond_t((env->gregs[PARAM1] & 0xff) == 0);
|
||||
*(int8_t *) &env->gregs[PARAM1] |= 0x80;
|
||||
RETURN();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue