diff options
author | 2008-07-17 08:09:52 +0000 | |
---|---|---|
committer | 2008-07-17 08:09:52 +0000 | |
commit | 5244807bf307a2cd81a8f2f5e4f5feaa9d452280 (patch) | |
tree | 87c7dd64a5ca6d40bef8697b990c7fcf3d757334 /src/emu/romload.c | |
parent | b5f2aa1240d8f727bb2d376c08cb85ae4cd7d48a (diff) |
Cleanups.
Diffstat (limited to 'src/emu/romload.c')
-rw-r--r-- | src/emu/romload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/romload.c b/src/emu/romload.c index dead855a571..53016deacd4 100644 --- a/src/emu/romload.c +++ b/src/emu/romload.c @@ -1051,7 +1051,7 @@ static UINT32 normalize_flags_for_cpu(running_machine *machine, UINT32 startflag { int cputype = machine->config->cpu[cpunum].type; int buswidth; - + /* set the endianness */ startflags &= ~ROMREGION_ENDIANMASK; if (cputype_endianness(cputype) == CPU_IS_LE) @@ -1070,7 +1070,7 @@ static UINT32 normalize_flags_for_cpu(running_machine *machine, UINT32 startflag startflags |= ROMREGION_32BIT; else startflags |= ROMREGION_64BIT; - + return startflags; } |