you probably want something like: ``` let mut x = p_outset.read_volatile(); x |= 1 << 20; x |= 0 << 27; // this does nothing? p_outset.write_volatile(x); ```