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

« back to all changes in this revision

Viewing changes to mess/src/mess/includes/radio86.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/radio86.h
4
 
 *
5
 
 ****************************************************************************/
6
 
 
7
 
#ifndef radio86_H_
8
 
#define radio86_H_
9
 
 
10
 
#include "machine/i8255.h"
11
 
#include "machine/8257dma.h"
12
 
#include "video/i8275.h"
13
 
 
14
 
class radio86_state : public driver_device
15
 
{
16
 
public:
17
 
        radio86_state(const machine_config &mconfig, device_type type, const char *tag)
18
 
                : driver_device(mconfig, type, tag) { }
19
 
 
20
 
        UINT8 m_tape_value;
21
 
        UINT8 m_mikrosha_font_page;
22
 
        int m_keyboard_mask;
23
 
        UINT8* m_radio_ram_disk;
24
 
        UINT8 m_romdisk_lsb;
25
 
        UINT8 m_romdisk_msb;
26
 
        UINT8 m_disk_sel;
27
 
};
28
 
 
29
 
 
30
 
/*----------- defined in drivers/radio86.c -----------*/
31
 
 
32
 
INPUT_PORTS_EXTERN( radio86 );
33
 
INPUT_PORTS_EXTERN( ms7007 );
34
 
 
35
 
 
36
 
/*----------- defined in machine/radio86.c -----------*/
37
 
 
38
 
extern DRIVER_INIT( radio86 );
39
 
extern DRIVER_INIT( radioram );
40
 
extern MACHINE_RESET( radio86 );
41
 
 
42
 
extern READ8_HANDLER (radio_cpu_state_r );
43
 
 
44
 
extern READ8_HANDLER (radio_io_r );
45
 
extern WRITE8_HANDLER(radio_io_w );
46
 
 
47
 
extern const i8255_interface radio86_ppi8255_interface_1;
48
 
extern const i8255_interface radio86_ppi8255_interface_2;
49
 
extern const i8255_interface rk7007_ppi8255_interface;
50
 
 
51
 
extern const i8255_interface mikrosha_ppi8255_interface_1;
52
 
extern const i8255_interface mikrosha_ppi8255_interface_2;
53
 
 
54
 
extern const i8275_interface radio86_i8275_interface;
55
 
extern const i8275_interface partner_i8275_interface;
56
 
extern const i8275_interface mikrosha_i8275_interface;
57
 
extern const i8275_interface apogee_i8275_interface;
58
 
 
59
 
extern WRITE8_HANDLER ( radio86_pagesel );
60
 
extern const i8257_interface radio86_dma;
61
 
 
62
 
 
63
 
extern void radio86_init_keyboard(running_machine &machine);
64
 
 
65
 
 
66
 
/*----------- defined in video/radio86.c -----------*/
67
 
 
68
 
extern I8275_DISPLAY_PIXELS(radio86_display_pixels);
69
 
extern I8275_DISPLAY_PIXELS(partner_display_pixels);
70
 
extern I8275_DISPLAY_PIXELS(mikrosha_display_pixels);
71
 
extern I8275_DISPLAY_PIXELS(apogee_display_pixels);
72
 
 
73
 
extern SCREEN_UPDATE( radio86 );
74
 
extern PALETTE_INIT( radio86 );
75
 
 
76
 
#endif /* radio86_H_ */