rusty_mos

Macro GEN_MASK

Source
macro_rules! GEN_MASK {
    ($h: expr, $l: expr) => { ... };
}
Expand description

Gen a mask from the $h-bit (MSB) to $l-bit (LSB) with 1.

ยงExamples

assert_eq!(GEN_MASK(30, 21), 0x7fe00000);