TommyPROM/PromAddressDriver.h
Tom Nisbet 25996ca934 Split code and add 8755 support
Classes now in separate files
PromDevice classes used to allow for a choice of hardware support
ErasedCheck command
Support for Intel 8755 EPROM
2018-05-10 23:43:31 -04:00

18 lines
348 B
C++

#ifndef INCLUDE_PROM_ADDRESS_DRIVER_H
#define INCLUDE_PROM_ADDRESS_DRIVER_H
#include "Arduino.h"
class PromAddressDriver {
public:
static void begin();
static void setAddress(word address);
private:
static void setAddressRegister(uint8_t clkPin, byte addr);
};
#endif // #define INCLUDE_PROM_ADDRESS_DRIVER_H