19 lines
376 B
C++
19 lines
376 B
C++
#ifndef FAKE_GPIO_HPP
|
|
#define FAKE_GPIO_HPP
|
|
|
|
|
|
#include <cstdint>
|
|
#include "GPIO.hpp"
|
|
|
|
struct FakeGpio {
|
|
void set_data_bus(uint8_t val){}
|
|
void set_a0(Port port){}
|
|
void set_a1(Bank address_bank){}
|
|
void set_cs(State state){}
|
|
void set_wr(State state){}
|
|
void set_ic(State state){}
|
|
void set_rd(State state){}
|
|
void delay_ticks(uint32_t n){}
|
|
};
|
|
|
|
#endif |