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

« back to all changes in this revision

Viewing changes to src/emu/cpu/sh2/sh2drc.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:
19
19
#include "debugger.h"
20
20
#include "sh2.h"
21
21
#include "sh2comn.h"
22
 
#include "profiler.h"
23
22
 
24
23
CPU_DISASSEMBLE( sh2 );
25
24
extern unsigned DasmSH2(char *buffer, unsigned pc, UINT16 opcode);
781
780
        UINT32 *m;
782
781
 
783
782
        void (*f)(UINT32 data);
784
 
        device_irq_callback save_irqcallback;
 
783
        device_irq_acknowledge_callback save_irqcallback;
785
784
 
786
785
        m = sh2->m;
787
786
        tsave = sh2->timer;
3194
3193
    sh2_internal_map - maps SH2 built-ins
3195
3194
-------------------------------------------------*/
3196
3195
 
3197
 
static ADDRESS_MAP_START( sh2_internal_map, AS_PROGRAM, 32 )
3198
 
        AM_RANGE(0x40000000, 0xbfffffff) AM_READ(sh2_internal_a5)
3199
 
        AM_RANGE(0xe0000000, 0xffffffff) AM_READWRITE(sh2_internal_r, sh2_internal_w)
 
3196
static ADDRESS_MAP_START( sh2_internal_map, AS_PROGRAM, 32, legacy_cpu_device )
 
3197
        AM_RANGE(0x40000000, 0xbfffffff) AM_READ_LEGACY(sh2_internal_a5)
 
3198
        AM_RANGE(0xe0000000, 0xffffffff) AM_READWRITE_LEGACY(sh2_internal_r, sh2_internal_w)
3200
3199
ADDRESS_MAP_END
3201
3200
 
3202
3201
/*-------------------------------------------------