diff options
author | 2009-10-03 06:53:27 +0000 | |
---|---|---|
committer | 2009-10-03 06:53:27 +0000 | |
commit | 08a4572e09a30c046bde0025243fc7639f407503 (patch) | |
tree | bf6b90bf6a5add2c48ae5c90fe39a59c80bb4290 /src/emu/cpu/sh2/sh2dasm.c | |
parent | 07720725b2a5244915bb9dfbd53638a49e15757a (diff) |
> -----Original Message-----
> From: Atari Ace [mailto:atari_ace@verizon.net]
> Sent: Wednesday, September 30, 2009 7:56 AM
> To: submit@mamedev.org
> Cc: atariace@hotmail.com
> Subject: [patch] More static qualifiers
>
> Hi mamedev,
>
> This patch makes more of MAME static, primarily targeting functions
> exported by header files that are in fact unused outside their own
> file, and the chip emulators in machine/snes.c. It also degenericizes
> some exported names in archimds, bublbobl, and lucky74.
>
> ~aa
Diffstat (limited to 'src/emu/cpu/sh2/sh2dasm.c')
-rw-r--r-- | src/emu/cpu/sh2/sh2dasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/sh2/sh2dasm.c b/src/emu/cpu/sh2/sh2dasm.c index b05dca16893..f4d430a5714 100644 --- a/src/emu/cpu/sh2/sh2dasm.c +++ b/src/emu/cpu/sh2/sh2dasm.c @@ -573,7 +573,7 @@ static UINT32 op1111(char *buffer, UINT32 pc, UINT16 opcode) return 0; } -unsigned DasmSH2(char *buffer, unsigned pc, UINT16 opcode) +static unsigned DasmSH2(char *buffer, unsigned pc, UINT16 opcode) { UINT32 flags; |