Revision 9d926598 target-sparc/op_helper.c

b/target-sparc/op_helper.c
2671 2671
    env->tl--;
2672 2672
    env->tsptr = &env->ts[env->tl & MAXTL_MASK];
2673 2673
}
2674

  
2675
void helper_set_softint(uint64_t value)
2676
{
2677
    env->softint |= (uint32_t)value;
2678
}
2679

  
2680
void helper_clear_softint(uint64_t value)
2681
{
2682
    env->softint &= (uint32_t)~value;
2683
}
2684

  
2685
void helper_write_softint(uint64_t value)
2686
{
2687
    env->softint = (uint32_t)value;
2688
}
2674 2689
#endif
2675 2690

  
2676 2691
void helper_flush(target_ulong addr)

Also available in: Unified diff