~ubuntu-branches/debian/sid/mame/sid

« back to all changes in this revision

Viewing changes to src/mame/drivers/pcat_dyn.c

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Emmanuel Kasper, Jordi Mallach
  • Date: 2012-06-05 20:02:23 UTC
  • mfrom: (0.3.1) (0.1.4)
  • Revision ID: package-import@ubuntu.com-20120605200223-gnlpogjrg6oqe9md
Tags: 0.146-1
[ Emmanuel Kasper ]
* New upstream release
* Drop patch to fix man pages section and patches to link with flac 
  and jpeg system lib: all this has been pushed upstream by Cesare Falco
* Add DM-Upload-Allowed: yes field.

[ Jordi Mallach ]
* Create a "gnu" TARGETOS stanza that defines NO_AFFINITY_NP.
* Stop setting TARGETOS to "unix" in d/rules. It should be autodetected,
  and set to the appropriate value.
* mame_manpage_section.patch: Change mame's manpage section to 6 (games),
  in the TH declaration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
//ce9b8
50
50
/* TODO: understand the proper ROM loading.*/
51
 
static ADDRESS_MAP_START( pcat_map, AS_PROGRAM, 32 )
 
51
static ADDRESS_MAP_START( pcat_map, AS_PROGRAM, 32, pcat_dyn_state )
52
52
        AM_RANGE(0x00000000, 0x0009ffff) AM_RAM
53
53
        AM_RANGE(0x000a0000, 0x000bffff) AM_RAM
54
54
        AM_RANGE(0x000c0000, 0x000c7fff) AM_ROM AM_REGION("video_bios", 0)
63
63
        AM_RANGE(0xffff0000, 0xffffffff) AM_ROM AM_REGION("bios", 0 )
64
64
ADDRESS_MAP_END
65
65
 
66
 
static ADDRESS_MAP_START( pcat_io, AS_IO, 32 )
 
66
static ADDRESS_MAP_START( pcat_io, AS_IO, 32, pcat_dyn_state )
67
67
        AM_IMPORT_FROM(pcat32_io_common)
68
 
        AM_RANGE(0x0070, 0x007f) AM_DEVREADWRITE8_MODERN("rtc", mc146818_device, read, write, 0xffffffff)
 
68
        AM_RANGE(0x0070, 0x007f) AM_DEVREADWRITE8("rtc", mc146818_device, read, write, 0xffffffff)
69
69
ADDRESS_MAP_END
70
70
 
71
71
#define AT_KEYB_HELPER(bit, text, key1) \