c0e249e993
This reverts commitdaf3b57e89
, reversing changes made to7a6e0b7d77
.
13 lines
No EOL
196 B
C++
13 lines
No EOL
196 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "RamHandler.h"
|
|
|
|
class RomHandler : public RamHandler
|
|
{
|
|
public:
|
|
using RamHandler::RamHandler;
|
|
|
|
void Write(uint32_t addr, uint8_t value) override
|
|
{
|
|
}
|
|
}; |