summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/tms9900
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/tms9900')
-rw-r--r--src/emu/cpu/tms9900/9900dasm.c4
-rw-r--r--src/emu/cpu/tms9900/99xxcore.h4
-rw-r--r--src/emu/cpu/tms9900/tms9900.h2
-rw-r--r--src/emu/cpu/tms9900/tms9900l.h20
-rw-r--r--src/emu/cpu/tms9900/tms9995.h2
5 files changed, 16 insertions, 16 deletions
diff --git a/src/emu/cpu/tms9900/9900dasm.c b/src/emu/cpu/tms9900/9900dasm.c
index 2391ac660cf..19fd5f5e6d7 100644
--- a/src/emu/cpu/tms9900/9900dasm.c
+++ b/src/emu/cpu/tms9900/9900dasm.c
@@ -27,7 +27,7 @@
#define MASK 0x0000ffff
#define BITS(val,n1,n2) ((val>>(15-(n2))) & (MASK>>(15-((n2)-(n1)))))
-enum format_t
+enum format_t
{
format_1, /* 2 address instructions */
format_2a, /* jump instructions */
@@ -73,7 +73,7 @@ enum
sd_11_15 = 0x200 /* bits 11-15 should be cleared in lwpi, limi, idle, rset, rtwp, ckon, ckof, lrex */
};
-struct description_t
+struct description_t
{
const char *mnemonic;
format_t format;
diff --git a/src/emu/cpu/tms9900/99xxcore.h b/src/emu/cpu/tms9900/99xxcore.h
index 6d50dfb148b..2e8f7c06ba0 100644
--- a/src/emu/cpu/tms9900/99xxcore.h
+++ b/src/emu/cpu/tms9900/99xxcore.h
@@ -394,7 +394,7 @@ a ST_MASK */
#define R14 28
#define R15 30
-struct map_file_t
+struct map_file_t
{
UINT16 L[3], B[3]; /* actual registers */
UINT32 limit[3], bias[3]; /* equivalent in a more convenient form */
@@ -1993,7 +1993,7 @@ static void set_flag1(tms99xx_state *cpustate, int val)
#endif
-enum cru_error_code
+enum cru_error_code
{
CRU_OK = 0,
CRU_PRIVILEGE_VIOLATION = -1
diff --git a/src/emu/cpu/tms9900/tms9900.h b/src/emu/cpu/tms9900/tms9900.h
index 43f57c5e600..f80f452a5f9 100644
--- a/src/emu/cpu/tms9900/tms9900.h
+++ b/src/emu/cpu/tms9900/tms9900.h
@@ -109,7 +109,7 @@ static const char opname[][5] =
"*int"
};
-struct tms99xx_config
+struct tms99xx_config
{
devcb_write8 external_callback;
devcb_read8 irq_level;
diff --git a/src/emu/cpu/tms9900/tms9900l.h b/src/emu/cpu/tms9900/tms9900l.h
index 3ca20312bed..324d9ab02bc 100644
--- a/src/emu/cpu/tms9900/tms9900l.h
+++ b/src/emu/cpu/tms9900/tms9900l.h
@@ -61,7 +61,7 @@ DECLARE_LEGACY_CPU_DEVICE(TI990_10L, ti990_10l);
structure with the parameters ti990_10_reset wants.
*/
-struct ti990_10reset_param
+struct ti990_10reset_param
{
ti99xx_idle_func idle_callback;
ti99xx_rset_func rset_callback;
@@ -87,7 +87,7 @@ DECLARE_LEGACY_CPU_DEVICE(TMS9900L, tms9900l);
/*
structure with optional parameters for tms9900_reset.
*/
-struct tms9900reset_param
+struct tms9900reset_param
{
ti99xx_idle_func idle_callback;
};
@@ -99,7 +99,7 @@ struct tms9900reset_param
/*
structure with optional parameters for tms9940_reset.
*/
-struct tms9940reset_param
+struct tms9940reset_param
{
ti99xx_idle_func idle_callback;
};
@@ -111,7 +111,7 @@ DECLARE_LEGACY_CPU_DEVICE(TMS9980L, tms9980al);
/*
structure with optional parameters for tms9980a_reset.
*/
-struct tms9980areset_param
+struct tms9980areset_param
{
ti99xx_idle_func idle_callback;
};
@@ -123,7 +123,7 @@ struct tms9980areset_param
/*//
structure with optional parameters for tms9985_reset.
*/
-struct tms9985reset_param
+struct tms9985reset_param
{
ti99xx_idle_func idle_callback;
};
@@ -135,7 +135,7 @@ struct tms9985reset_param
/*
structure with optional parameters for tms9989_reset.
*/
-struct tms9989reset_param
+struct tms9989reset_param
{
ti99xx_idle_func idle_callback;
};
@@ -147,7 +147,7 @@ DECLARE_LEGACY_CPU_DEVICE(TMS9995L, tms9995l);
/*
structure with the parameters tms9995_reset wants.
*/
-struct tms9995reset_param
+struct tms9995reset_param
{
/* auto_wait_state : a non-zero value makes tms9995 generate a wait state automatically on each
memory access */
@@ -175,7 +175,7 @@ extern WRITE8_HANDLER(tms9995_internal2_w);
/*
structure with optional parameters for tms99000_reset.
*/
-struct tms99000reset_param
+struct tms99000reset_param
{
ti99xx_idle_func idle_callback;
};
@@ -187,7 +187,7 @@ struct tms99000reset_param
/*
structure with optional parameters for tms99105a_reset.
*/
-struct tms99105areset_param
+struct tms99105areset_param
{
ti99xx_idle_func idle_callback;
};
@@ -199,7 +199,7 @@ struct tms99105areset_param
/*
structure with optional parameters for tms99110a_reset.
*/
-struct tms99110areset_param
+struct tms99110areset_param
{
ti99xx_idle_func idle_callback;
};
diff --git a/src/emu/cpu/tms9900/tms9995.h b/src/emu/cpu/tms9900/tms9995.h
index 72933e78c02..bf084773067 100644
--- a/src/emu/cpu/tms9900/tms9995.h
+++ b/src/emu/cpu/tms9900/tms9995.h
@@ -60,7 +60,7 @@ enum
Configuration for the TMS9995. The connections are provided by the
main board which contains the processor.
*/
-struct tms9995_config
+struct tms9995_config
{
devcb_write8 external_callback;
devcb_write_line iaq_line;