IN_RANGE
#define IN_RANGE(addr,sta,end) (((sta) <= (addr)) && ((addr) < (end)))
#define IN_RANGE(va, sta, end) (((sta) <= (va)) && ((va) < (end)))