summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-02-13 08:54:29 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-02-13 08:54:29 +0000
commit072b71602b9a65be92b44f707c9d42bef6e5d7bf (patch)
tree347aeb14d59b3f9a60502816b65384cb3a8dd8f4 /src/emu
parent63576c78f0c4c9d423414d490327e005c9720ab9 (diff)
Cleanups and version bump for 0.123u1.mame0123u1
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/cpu/m6502/m65ce02.c6
-rw-r--r--src/emu/drivers/xtal.h2
-rw-r--r--src/emu/timer.c6
3 files changed, 7 insertions, 7 deletions
diff --git a/src/emu/cpu/m6502/m65ce02.c b/src/emu/cpu/m6502/m65ce02.c
index 2ef267eb63b..5aab6f54425 100644
--- a/src/emu/cpu/m6502/m65ce02.c
+++ b/src/emu/cpu/m6502/m65ce02.c
@@ -237,7 +237,7 @@ static void m65ce02_set_irq_line(int irqline, int state)
/**************************************************************************
* Generic set_info
**************************************************************************/
-
+
static void m65ce02_set_info(UINT32 state, cpuinfo *info)
{
switch( state )
@@ -264,7 +264,7 @@ static void m65ce02_set_info(UINT32 state, cpuinfo *info)
case CPUINFO_PTR_M6502_WRITEINDEXED_CALLBACK: m65ce02.wrmem_id = (write8_handler) info->f; break;
}
}
-
+
/**************************************************************************
* Generic get_info
**************************************************************************/
@@ -314,7 +314,7 @@ void m65ce02_get_info(UINT32 state, cpuinfo *info)
case CPUINFO_INT_REGISTER+M65CE02_B: info->i = m65ce02.zp.b.h; break;
case CPUINFO_INT_REGISTER+M65CE02_EA: info->i = m65ce02.ea.w.l; break;
case CPUINFO_INT_REGISTER+M65CE02_ZP: info->i = m65ce02.zp.w.l; break;
-
+
/* --- the following bits of info are returned as pointers to data or functions --- */
case CPUINFO_PTR_SET_INFO: info->setinfo = m65ce02_set_info; break;
case CPUINFO_PTR_GET_CONTEXT: info->getcontext = m65ce02_get_context; break;
diff --git a/src/emu/drivers/xtal.h b/src/emu/drivers/xtal.h
index f35f5d179c8..a2f02cb74c4 100644
--- a/src/emu/drivers/xtal.h
+++ b/src/emu/drivers/xtal.h
@@ -55,7 +55,7 @@ enum
XTAL_6MHz = 6000000,
XTAL_6_144MHz = 6144000, /* Used on Alpha Denshi early 80's games sound board */
XTAL_7_15909MHz = 7159090, /* Blood Bros */
- XTAL_7_3728MHz = 7372800,
+ XTAL_7_3728MHz = 7372800,
XTAL_8MHz = 8000000,
XTAL_9_987MHz = 9987000, /* Crazy Balloon */
XTAL_10MHz = 10000000,
diff --git a/src/emu/timer.c b/src/emu/timer.c
index 5d873e14a00..1f04b121e5e 100644
--- a/src/emu/timer.c
+++ b/src/emu/timer.c
@@ -526,7 +526,7 @@ static void timer_remove(emu_timer *which)
***************************************************************************/
/*-------------------------------------------------
- timer_adjust_oneshot - adjust the time when this timer
+ timer_adjust_oneshot - adjust the time when this timer
will fire and disable any periodic firings
-------------------------------------------------*/
@@ -537,8 +537,8 @@ void timer_adjust_oneshot(emu_timer *which, attotime duration, INT32 param)
/*-------------------------------------------------
- timer_adjust_periodic - adjust the time when
- this timer will fire and specify a period for
+ timer_adjust_periodic - adjust the time when
+ this timer will fire and specify a period for
subsequent firings
-------------------------------------------------*/