The actual loop is currently ``` loop { din = sm.rx().pull(); if din < 0x00010000 { dout = din & 0x000000FF; sm.tx().push(dout); } } ```