File:  [Isaki's NoNo m68k/m88k emulator] / nono / vm / partialram.h
Revision 1.1.1.4 (vendor branch): download - view: text, annotated - select for diffs
Wed Apr 29 17:06:01 2026 UTC (2 months, 3 weeks ago) by root
Branches: MAIN, Isaki
CVS tags: v027, HEAD
nono 1.7.0

//
// nono
// Copyright (C) 2020 nono project
// Licensed under nono-license.txt
//

//
// LUNA* の RAM のうち 16MB に満たないメモリブロックを担当する人
//

#pragma once

#include "device.h"

class MainRAMDevice;

class PartialRAMDevice : public IODevice
{
	using inherited = IODevice;
 public:
	PartialRAMDevice();
	~PartialRAMDevice() override;

	bool Init() override;

	busdata Read(busaddr addr) override;
	busdata Write(busaddr addr, uint32 data) override;
	busdata Peek1(uint32 addr) override;
	bool Poke1(uint32 addr, uint32 data) override;

 private:
	inline IODevice *SearchDevice(uint32 addr) const;

	uint32 ram_size {};

	MainRAMDevice *ramdev {};
	IODevice *nopdev {};
};

inline PartialRAMDevice *GetPartialRAMDevice() {
	return Object::GetObject<PartialRAMDevice>(OBJ_PARTIAL_RAM);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.