~ubuntu-branches/ubuntu/raring/mame/raring-proposed

« back to all changes in this revision

Viewing changes to mess/src/mess/machine/i82439tx.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jordi Mallach, Emmanuel Kasper
  • Date: 2011-12-19 22:56:27 UTC
  • mfrom: (0.1.2)
  • Revision ID: package-import@ubuntu.com-20111219225627-ub5oga1oys4ogqzm
Tags: 0.144-1
[ Jordi Mallach ]
* Fix syntax errors in DEP5 copyright file (lintian).
* Use a versioned copyright Format specification field.
* Update Vcs-* URLs.
* Move transitional packages to the new metapackages section, and make
  them priority extra.
* Remove references to GNU/Linux and MESS sources from copyright.
* Add build variables for s390x.
* Use .xz tarballs as it cuts 4MB for the upstream sources.
* Add nplayers.ini as a patch. Update copyright file to add CC-BY-SA-3.0.

[ Emmanuel Kasper ]
* New upstream release. Closes: #651538.
* Add Free Desktop compliant png icons of various sizes taken from
  the hydroxygen iconset
* Mess is now built from a new source package, to avoid possible source
  incompatibilities between mame and the mess overlay.
* Mame-tools are not built from the mame source package anymore, but
  from the mess source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 
3
 
    Intel 82439TX System Controller (MTXC)
4
 
 
5
 
    Part of the Intel 430TX chipset
6
 
 
7
 
***************************************************************************/
8
 
 
9
 
#ifndef __I82439TX_H__
10
 
#define __I82439TX_H__
11
 
 
12
 
 
13
 
/***************************************************************************
14
 
    TYPE DEFINITIONS
15
 
***************************************************************************/
16
 
 
17
 
typedef struct _i82439tx_config i82439tx_config;
18
 
struct _i82439tx_config
19
 
{
20
 
        const char *cputag;
21
 
        const char *rom_region;
22
 
};
23
 
 
24
 
 
25
 
/***************************************************************************
26
 
    FUNCTION PROTOTYPES
27
 
***************************************************************************/
28
 
UINT32 i82439tx_pci_read(device_t *busdevice, device_t *device, int function, int offset, UINT32 mem_mask);
29
 
void i82439tx_pci_write(device_t *busdevice, device_t *device, int function, int offset, UINT32 data, UINT32 mem_mask);
30
 
 
31
 
 
32
 
/***************************************************************************
33
 
    DEVICE CONFIGURATION MACROS
34
 
***************************************************************************/
35
 
 
36
 
DECLARE_LEGACY_DEVICE(I82439TX, i82439tx);
37
 
 
38
 
#define MCFG_I82439TX_ADD(_tag, _cputag, _rom_region) \
39
 
        MCFG_DEVICE_ADD(_tag, I82439TX, 0) \
40
 
        MCFG_DEVICE_CONFIG_DATAPTR(i82439tx_config, cputag, _cputag) \
41
 
        MCFG_DEVICE_CONFIG_DATAPTR(i82439tx_config, rom_region, _rom_region)
42
 
 
43
 
 
44
 
#endif /* __I82439TX_H__ */