2020-02-28 16:04:28 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
2021-10-23 19:00:31 +00:00
|
|
|
Copyright (C) 2018-21 divingkatae and maximum
|
2020-02-28 16:04:28 +00:00
|
|
|
(theweirdo) spatium
|
|
|
|
|
|
|
|
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-08-18 23:34:24 +00:00
|
|
|
#ifndef MMIO_DEVICE_H
|
|
|
|
#define MMIO_DEVICE_H
|
|
|
|
|
2021-10-23 18:17:47 +00:00
|
|
|
#include <devices/common/hwcomponent.h>
|
|
|
|
|
2019-08-18 23:34:24 +00:00
|
|
|
#include <cinttypes>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
/** Abstract class representing a simple, memory-mapped I/O device */
|
2020-03-14 13:23:46 +00:00
|
|
|
class MMIODevice : public HWComponent {
|
2019-08-18 23:34:24 +00:00
|
|
|
public:
|
2022-01-10 16:40:52 +00:00
|
|
|
MMIODevice() = default;
|
2022-08-22 10:16:31 +00:00
|
|
|
virtual uint32_t read(uint32_t rgn_start, uint32_t offset, int size) = 0;
|
|
|
|
virtual void write(uint32_t rgn_start, uint32_t offset, uint32_t value, int size) = 0;
|
2020-05-12 18:55:45 +00:00
|
|
|
virtual ~MMIODevice() = default;
|
2019-08-18 23:34:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MMIO_DEVICE_H */
|