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