blob: 99bf8ad7922552e414cc2eb5fd5e9f2249cd4753 (
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
30
31
32
33
|
// license:BSD-3-Clause
// copyright-holders:Miodrag Milanovic
#pragma once
#ifndef __NORTHBRIDGE_H__
#define __NORTHBRIDGE_H__
#include "machine/ram.h"
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
// ======================> northbridge_device
class northbridge_device :
public device_t
{
public:
// construction/destruction
northbridge_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
protected:
// device-level overrides
virtual void device_start() override;
virtual void device_reset() override;
public:
required_device<cpu_device> m_maincpu;
required_device<ram_device> m_ram;
};
#endif /* __NORTHBRIDGE_H__ */
|