blob: bd96d81d7eb5c1494d7e35e8368af5b1fb2cfe27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// license:BSD-3-Clause
// copyright-holders:AJR
#ifndef MAME_BUS_NSCSI_CDU561_H
#define MAME_BUS_NSCSI_CDU561_H
#pragma once
#include "machine/nscsi_bus.h"
class cdu561_25_device : public device_t, public nscsi_slot_card_interface
{
public:
cdu561_25_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
static constexpr feature_type unemulated_features() { return feature::DISK; }
protected:
virtual void device_start() override;
virtual void device_add_mconfig(machine_config &config) override;
virtual const tiny_rom_entry *device_rom_region() const override;
private:
void mem_map(address_map &map);
};
DECLARE_DEVICE_TYPE(CDU561_25, cdu561_25_device)
#endif // MAME_BUS_NSCSI_CDU561_25_H
|