#pragma once #include /** Returns the byte present on D0~D7 */ uint8_t readParallel(); /** Writes a nibble on status pins */ void writeParallel(uint8_t nibble); void setupParallel(); /** Returns true and sets the byte if a strobe was received */ bool strobeOccurred(uint8_t &byte);