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

« back to all changes in this revision

Viewing changes to mess/src/mess/includes/llc.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
 
 * includes/llc.h
4
 
 *
5
 
 ****************************************************************************/
6
 
 
7
 
#ifndef LLC_H_
8
 
#define LLC_H_
9
 
 
10
 
#include "machine/z80pio.h"
11
 
#include "machine/z80ctc.h"
12
 
 
13
 
class llc_state : public driver_device
14
 
{
15
 
public:
16
 
        llc_state(const machine_config &mconfig, device_type type, const char *tag)
17
 
                : driver_device(mconfig, type, tag) { }
18
 
 
19
 
        UINT8 *m_video_ram;
20
 
        UINT8 m_s_code;
21
 
        UINT8 m_llc1_key_state;
22
 
};
23
 
 
24
 
 
25
 
/*----------- defined in machine/llc.c -----------*/
26
 
extern DRIVER_INIT( llc1 );
27
 
extern MACHINE_START( llc1 );
28
 
extern MACHINE_RESET( llc1 );
29
 
 
30
 
extern const z80pio_interface llc1_z80pio_intf;
31
 
extern const z80pio_interface llc2_z80pio_intf;
32
 
 
33
 
extern const z80ctc_interface llc1_ctc_intf;
34
 
extern const z80ctc_interface llc2_ctc_intf;
35
 
 
36
 
extern DRIVER_INIT( llc2 );
37
 
extern MACHINE_RESET( llc2 );
38
 
extern WRITE8_HANDLER(llc2_rom_disable_w);
39
 
extern WRITE8_HANDLER(llc2_basic_enable_w);
40
 
 
41
 
/*----------- defined in video/llc.c -----------*/
42
 
 
43
 
extern VIDEO_START( llc1 );
44
 
extern SCREEN_UPDATE( llc1 );
45
 
extern VIDEO_START( llc2 );
46
 
extern SCREEN_UPDATE( llc2 );
47
 
 
48
 
#endif