Dies ist eine alte Version des Dokuments!
Adressbyte generierung "wbus_addr()"
Hintergrund
Umsetzung
/** * Return ADDR byte of source/destination addresses given */ byte wbus_addr(byte addr_from, byte addr_to) { return( (addr_from<<4) | (addr_to & 0x0f) ); }