blob: 1f0600deaafb8aa61fe75ab87bd89926f55919c9 (
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
|
#pragma once
#ifndef __NORTHBRIDGE_H__
#define __NORTHBRIDGE_H__
#include "emu.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 clock, const char *shortname, const char *source);
protected:
// device-level overrides
virtual void device_start();
virtual void device_reset();
public:
required_device<cpu_device> m_maincpu;
required_device<ram_device> m_ram;
};
#endif /* __NORTHBRIDGE_H__ */
|