pub struct DataBus { pub data: u8, } impl DataBus { pub fn new() -> Self { DataBus { data: 0x00 } } }