blob: 71ef1369e6682306b6316ab12b0f3f6ce1cb6296 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*********************************************************************
sgi.h
Silicon Graphics MC (Memory Controller) code
*********************************************************************/
#ifndef _SGIMC_H
#define _SGIMC_H
void sgi_mc_init(running_machine &machine);
DECLARE_READ32_HANDLER(sgi_mc_r);
DECLARE_WRITE32_HANDLER(sgi_mc_w);
#endif /* _SGIMC_H */
|