Lines Matching full:bit0
935 uint32_t bit0, bit7; in exec_rol() local
940 bit0 = ((uint8_t)decode->op[0].val & 1); in exec_rol()
942 SET_FLAGS_OxxxxC(env, bit0 ^ bit7, bit0); in exec_rol()
953 bit0 = (res & 1); in exec_rol()
955 SET_FLAGS_OxxxxC(env, bit0 ^ bit7, bit0); in exec_rol()
961 uint32_t bit0, bit15; in exec_rol() local
966 bit0 = ((uint16_t)decode->op[0].val & 0x1); in exec_rol()
969 SET_FLAGS_OxxxxC(env, bit0 ^ bit15, bit0); in exec_rol()
977 bit0 = (res & 0x1); in exec_rol()
980 SET_FLAGS_OxxxxC(env, bit0 ^ bit15, bit0); in exec_rol()
986 uint32_t bit0, bit31; in exec_rol() local
995 bit0 = (res & 0x1); in exec_rol()
998 SET_FLAGS_OxxxxC(env, bit0 ^ bit31, bit0); in exec_rol()