openMSX
NowindInterface.hh
Go to the documentation of this file.
1#ifndef NOWINDINTERFACE_HH
2#define NOWINDINTERFACE_HH
3
4#include "MSXDevice.hh"
5#include "NowindCommand.hh"
6#include "NowindHost.hh"
7#include "Rom.hh"
8#include "AmdFlash.hh"
9#include <bitset>
10#include <optional>
11#include <string>
12#include <vector>
13
14namespace openmsx {
15
16class NowindInterface final : public MSXDevice
17{
18public:
19 explicit NowindInterface(const DeviceConfig& config);
20 ~NowindInterface() override;
21
22 void reset(EmuTime::param time) override;
23 [[nodiscard]] byte peekMem(word address, EmuTime::param time) const override;
24 [[nodiscard]] byte readMem(word address, EmuTime::param time) override;
25 void writeMem(word address, byte value, EmuTime::param time) override;
26 [[nodiscard]] const byte* getReadCacheLine(word address) const override;
27 [[nodiscard]] byte* getWriteCacheLine(word address) const override;
28
29 template<typename Archive>
30 void serialize(Archive& ar, unsigned version);
31
32private:
33 Rom rom;
34 const std::vector<AmdFlash::SectorInfo> flashConfig;
35 AmdFlash flash;
36 NowindHost::Drives drives;
37 NowindHost host;
38 std::optional<NowindCommand> command; // because of delayed initialization
39 std::string basename;
40 byte bank;
41
42 static constexpr unsigned MAX_NOWINDS = 8; // a-h
43 using NowindsInUse = std::bitset<MAX_NOWINDS>;
44 std::shared_ptr<NowindsInUse> nowindsInUse;
45
46 friend class NowindCommand;
47};
48
49} // namespace openmsx
50
51#endif
An MSXDevice is an emulated hardware component connected to the bus of the emulated MSX.
Definition MSXDevice.hh:36
std::vector< std::unique_ptr< DiskContainer > > Drives
Definition NowindHost.hh:23
const byte * getReadCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for reading.
byte * getWriteCacheLine(word address) const override
Test that the memory in the interval [start, start + CacheLine::SIZE) is cacheable for writing.
void reset(EmuTime::param time) override
This method is called on reset.
byte peekMem(word address, EmuTime::param time) const override
Read a byte from a given memory location.
byte readMem(word address, EmuTime::param time) override
Read a byte from a location at a certain time from this device.
void serialize(Archive &ar, unsigned version)
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:9
uint16_t word
16 bit unsigned integer
Definition openmsx.hh:29