macro_rules! GEN_MASK { ($h: expr, $l: expr) => { ... }; }
Gen a mask from the $h-bit (MSB) to $l-bit (LSB) with 1.
assert_eq!(GEN_MASK(30, 21), 0x7fe00000);