Previous 199869 Revisions Next

r19926 Saturday 29th December, 2012 at 17:33:13 UTC by Andrew Gardner
Didn't like those #defines in the headers. (nw)
[src/emu/sound]gaelco.h segapcm.c segapcm.h

trunk/src/emu/sound/gaelco.h
r19925r19926
33#ifndef __GALELCO_H__
44#define __GALELCO_H__
55
6#define GAELCO_NUM_CHANNELS    0x07
7#define VOLUME_LEVELS         0x10
6const int GAELCO_NUM_CHANNELS = 0x07;
7const int VOLUME_LEVELS = 0x10;
88
99
1010//**************************************************************************
trunk/src/emu/sound/segapcm.c
r19925r19926
55#include "emu.h"
66#include "segapcm.h"
77
8#define   BANK_256    (11)
9#define   BANK_512    (12)
10#define   BANK_12M    (13)
11#define   BANK_MASK7    (0x70<<16)
12#define   BANK_MASKF    (0xf0<<16)
13#define   BANK_MASKF8   (0xf8<<16)
814
15
916// device type definition
1017const device_type SEGAPCM = &device_creator<segapcm_device>;
1118
trunk/src/emu/sound/segapcm.h
r19925r19926
77#ifndef __SEGAPCM_H__
88#define __SEGAPCM_H__
99
10#define   BANK_256    (11)
11#define   BANK_512    (12)
12#define   BANK_12M    (13)
13#define   BANK_MASK7    (0x70<<16)
14#define   BANK_MASKF    (0xf0<<16)
15#define   BANK_MASKF8   (0xf8<<16)
1610
17
1811//**************************************************************************
1912//  INTERFACE CONFIGURATION MACROS
2013//**************************************************************************

Previous 199869 Revisions Next


© 1997-2024 The MAME Team