2019-02-17 14:42:35 -05:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
2019-02-26 22:27:09 -05:00
|
|
|
#include "RamHandler.h"
|
2019-02-17 14:42:35 -05:00
|
|
|
|
2019-02-26 22:27:09 -05:00
|
|
|
class RomHandler : public RamHandler
|
2019-02-17 14:42:35 -05:00
|
|
|
{
|
|
|
|
public:
|
2019-02-26 22:27:09 -05:00
|
|
|
using RamHandler::RamHandler;
|
2019-02-17 14:42:35 -05:00
|
|
|
|
|
|
|
void Write(uint32_t addr, uint8_t value) override
|
|
|
|
{
|
|
|
|
}
|
2021-03-10 11:13:28 -05:00
|
|
|
};
|