openMSX
YamahaFDC.hh
Go to the documentation of this file.
1#ifndef YAMAHAFDC_HH
2#define YAMAHAFDC_HH
3
4#include "WD2793BasedFDC.hh"
5
6namespace openmsx {
7
8class YamahaFDC final : public WD2793BasedFDC
9{
10public:
11 explicit YamahaFDC(const DeviceConfig& config);
12
13 void reset(EmuTime::param time) override;
14 [[nodiscard]] byte readMem(word address, EmuTime::param time) override;
15 [[nodiscard]] byte peekMem(word address, EmuTime::param time) const override;
16 void writeMem(word address, byte value, EmuTime::param time) override;
17 [[nodiscard]] const byte* getReadCacheLine(word start) const override;
18 [[nodiscard]] byte* getWriteCacheLine(word address) const override;
19
20 template<typename Archive>
21 void serialize(Archive& ar, unsigned version);
22};
23
24} // namespace openmsx
25
26#endif
void serialize(Archive &ar, unsigned version)
Definition YamahaFDC.cc:188
void reset(EmuTime::param time) override
This method is called on reset.
Definition YamahaFDC.cc:54
byte * getWriteCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
Definition YamahaFDC.cc:177
const byte * getReadCacheLine(word start) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
Definition YamahaFDC.cc:123
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
Definition YamahaFDC.cc:60
byte peekMem(word address, EmuTime::param time) const override
Read a byte from a given memory location.
Definition YamahaFDC.cc:90
void writeMem(word address, byte value, EmuTime::param time) override
Write a given byte to a given location at a certain time to this device.
Definition YamahaFDC.cc:135
This file implemented 3 utility functions:
Definition Autofire.cc:11
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29