Skip to content

Commit 289a309

Browse files
committed
Cleanups and version bump.
1 parent 367c1d7 commit 289a309

44 files changed

Lines changed: 2168 additions & 2168 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/emu/cpu/drcbex86.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2897,7 +2897,7 @@ static void emit_rol_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
28972897
{
28982898
emit_link skip1, skip2;
28992899
int tempreg = REG_EAX;
2900-
// emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
2900+
// emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
29012901
emit_mov_r32_p32(drcbe, dst, REG_ECX, param); // mov ecx,param
29022902
emit_test_r32_imm(dst, REG_ECX, 0x20); // test ecx,0x20
29032903
emit_jcc_short_link(dst, COND_Z, &skip1); // jz skip1
@@ -2922,7 +2922,7 @@ static void emit_rol_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
29222922
emit_shld_r32_r32_cl(dst, reglo, reghi); // shld reglo,reghi,cl
29232923
if (saveflags) emit_pushf(dst); // pushf
29242924
emit_shld_r32_r32_cl(dst, reghi, tempreg); // shld reghi,ebx,cl
2925-
// emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
2925+
// emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
29262926
}
29272927
if (saveflags)
29282928
emit_combine_z_flags(dst);
@@ -2972,7 +2972,7 @@ static void emit_ror_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
29722972
{
29732973
emit_link skip1, skip2;
29742974
int tempreg = REG_EAX;
2975-
// emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
2975+
// emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
29762976
emit_mov_r32_p32(drcbe, dst, REG_ECX, param); // mov ecx,param
29772977
emit_test_r32_imm(dst, REG_ECX, 0x20); // test ecx,0x20
29782978
emit_jcc_short_link(dst, COND_Z, &skip1); // jz skip1
@@ -2997,7 +2997,7 @@ static void emit_ror_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
29972997
emit_shrd_r32_r32_cl(dst, reglo, reghi); // shrd reglo,reghi,cl
29982998
if (saveflags) emit_pushf(dst); // pushf
29992999
emit_shrd_r32_r32_cl(dst, reghi, tempreg); // shrd reghi,ebx,cl
3000-
// emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
3000+
// emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
30013001
}
30023002
if (saveflags)
30033003
emit_combine_z_flags(dst);

src/emu/cpu/i86/i86.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ static void i8086_state_register(const device_config *device)
185185
state_save_register_device_item(device, 0, cpustate->nmi_state);
186186
state_save_register_device_item(device, 0, cpustate->irq_state);
187187
state_save_register_device_item(device, 0, cpustate->extra_cycles);
188-
state_save_register_device_item(device, 0, cpustate->halted);
188+
state_save_register_device_item(device, 0, cpustate->halted);
189189
state_save_register_device_item(device, 0, cpustate->test_state); /* PJB 03/05 */
190190
state_save_register_device_item(device, 0, cpustate->rep_in_progress); /* PJB 03/05 */
191191
}

src/emu/cpu/rsp/rsp.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ void rspdrc_add_dmem(const device_config *device, void *base);
113113
#define FSREG ((op >> 11) & 31)
114114
#define FDREG ((op >> 6) & 31)
115115

116-
#define IS_SINGLE(o) (((o) & (1 << 21)) == 0)
117-
#define IS_DOUBLE(o) (((o) & (1 << 21)) != 0)
116+
#define IS_SINGLE(o) (((o) & (1 << 21)) == 0)
117+
#define IS_DOUBLE(o) (((o) & (1 << 21)) != 0)
118118
#define IS_FLOAT(o) (((o) & (1 << 23)) == 0)
119-
#define IS_INTEGRAL(o) (((o) & (1 << 23)) != 0)
119+
#define IS_INTEGRAL(o) (((o) & (1 << 23)) != 0)
120120

121121
#define SIMMVAL ((INT16)op)
122122
#define UIMMVAL ((UINT16)op)

src/emu/cpu/rsp/rspdrc.c

Lines changed: 1791 additions & 1791 deletions
Large diffs are not rendered by default.

src/mame/drivers/arkanoid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1390,7 +1390,7 @@ GAME( 1986, arkangc2, arkanoid, bootleg, arkangc2, arkangc2, ROT90, "bootleg"
13901390
GAME( 1986, arkblock, arkanoid, bootleg, arkangc, arkblock, ROT90, "bootleg", "Block (Game Corporation bootleg, set 1)", GAME_SUPPORTS_SAVE )
13911391
GAME( 1986, arkbloc2, arkanoid, bootleg, arkangc, arkbloc2, ROT90, "bootleg", "Block (Game Corporation bootleg, set 2)", GAME_SUPPORTS_SAVE )
13921392
GAME( 1986, arkbloc3, arkanoid, bootleg, block2, block2, ROT90, "bootleg", "Block (Game Corporation bootleg, set 3)", GAME_SUPPORTS_SAVE )// Both these sets have an extra unknown rom
1393-
GAME( 1986, block2, arkanoid, bootleg, block2, block2, ROT90, "bootleg", "Block 2 (S.P.A. CO. bootleg)", GAME_SUPPORTS_SAVE ) // and scrambled gfx roms with 'space invader' themed gfx
1393+
GAME( 1986, block2, arkanoid, bootleg, block2, block2, ROT90, "bootleg", "Block 2 (S.P.A. CO. bootleg)", GAME_SUPPORTS_SAVE ) // and scrambled gfx roms with 'space invader' themed gfx
13941394
GAME( 1986, arkgcbl, arkanoid, bootleg, arkgcbl, arkgcbl, ROT90, "bootleg", "Arkanoid (bootleg on Block hardware, set 1)", GAME_SUPPORTS_SAVE )
13951395
GAME( 1986, arkgcbla, arkanoid, bootleg, arkgcbl, arkgcbl, ROT90, "bootleg", "Arkanoid (bootleg on Block hardware, set 2)", GAME_SUPPORTS_SAVE )
13961396
GAME( 1988, paddle2, arkanoid, bootleg, paddle2, paddle2, ROT90, "bootleg", "Paddle 2 (bootleg on Block hardware)", GAME_SUPPORTS_SAVE )

src/mame/drivers/cb2001.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ e0093 78 03 bc e0098
9494
probably "aa" is an undocumented opcode
9595
9696
1) aa 1e ## ## -> bb mov bw,####
97-
_ 1e ## ## -> 89 mov
97+
_ 1e ## ## -> 89 mov
9898
9999
2) aa 26 ## ## -> bc mov sp,####
100100
_ 26 ## -> b5 mov ch,##

src/mame/drivers/darius.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -809,8 +809,8 @@ static const ym2203_interface ym2203_interface_2 =
809809

810810
static const pc080sn_interface darius_pc080sn_intf =
811811
{
812-
1, /* gfxnum */
813-
-16, 8, 0, 1 /* x_offset, y_offset, y_invert, dblwidth */
812+
1, /* gfxnum */
813+
-16, 8, 0, 1 /* x_offset, y_offset, y_invert, dblwidth */
814814
};
815815

816816
static MACHINE_DRIVER_START( darius )

src/mame/drivers/deco32.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -774,14 +774,14 @@ static ADDRESS_MAP_START( dragngun_map, ADDRESS_SPACE_PROGRAM, 32 )
774774
AM_RANGE(0x138000, 0x138003) AM_NOP /* Palette dma complete in bit 0x8? ack? return 0 else tight loop */
775775
AM_RANGE(0x138008, 0x13800b) AM_WRITE(deco32_palette_dma_w)
776776

777-
// AM_RANGE(0x180000, 0x18001f) AM_RAM_WRITE(deco32_pf12_control_w) AM_BASE(&deco32_pf12_control)
777+
// AM_RANGE(0x180000, 0x18001f) AM_RAM_WRITE(deco32_pf12_control_w) AM_BASE(&deco32_pf12_control)
778778
AM_RANGE(0x180000, 0x18001f) AM_RAM AM_BASE(&deco32_pf12_control)
779779
AM_RANGE(0x190000, 0x191fff) AM_RAM_WRITE(deco32_pf1_data_w) AM_BASE(&deco32_pf1_data)
780780
AM_RANGE(0x194000, 0x195fff) AM_RAM_WRITE(deco32_pf2_data_w) AM_BASE(&deco32_pf2_data)
781781
AM_RANGE(0x1a0000, 0x1a0fff) AM_RAM AM_BASE(&deco32_pf1_rowscroll)
782782
AM_RANGE(0x1a4000, 0x1a4fff) AM_RAM AM_BASE(&deco32_pf2_rowscroll)
783783

784-
// AM_RANGE(0x1c0000, 0x1c001f) AM_RAM_WRITE(deco32_pf34_control_w) AM_BASE(&deco32_pf34_control)
784+
// AM_RANGE(0x1c0000, 0x1c001f) AM_RAM_WRITE(deco32_pf34_control_w) AM_BASE(&deco32_pf34_control)
785785
AM_RANGE(0x1c0000, 0x1c001f) AM_RAM AM_BASE(&deco32_pf34_control)
786786
AM_RANGE(0x1d0000, 0x1d1fff) AM_RAM_WRITE(deco32_pf3_data_w) AM_BASE(&deco32_pf3_data)
787787
AM_RANGE(0x1d4000, 0x1d5fff) AM_RAM_WRITE(deco32_pf4_data_w) AM_BASE(&deco32_pf4_data)
@@ -827,14 +827,14 @@ static ADDRESS_MAP_START( lockload_map, ADDRESS_SPACE_PROGRAM, 32 )
827827
AM_RANGE(0x170000, 0x170007) AM_READ(lockload_gun_mirror_r) /* Not on Dragongun */
828828
AM_RANGE(0x178008, 0x17800f) AM_WRITENOP /* Gun read ACK's */
829829

830-
// AM_RANGE(0x180000, 0x18001f) AM_RAM_WRITE(deco32_pf12_control_w) AM_BASE(&deco32_pf12_control)
830+
// AM_RANGE(0x180000, 0x18001f) AM_RAM_WRITE(deco32_pf12_control_w) AM_BASE(&deco32_pf12_control)
831831
AM_RANGE(0x180000, 0x18001f) AM_RAM AM_BASE(&deco32_pf12_control)
832832
AM_RANGE(0x190000, 0x191fff) AM_RAM_WRITE(deco32_pf1_data_w) AM_BASE(&deco32_pf1_data)
833833
AM_RANGE(0x194000, 0x195fff) AM_RAM_WRITE(deco32_pf2_data_w) AM_BASE(&deco32_pf2_data)
834834
AM_RANGE(0x1a0000, 0x1a0fff) AM_RAM AM_BASE(&deco32_pf1_rowscroll)
835835
AM_RANGE(0x1a4000, 0x1a4fff) AM_RAM AM_BASE(&deco32_pf2_rowscroll)
836836

837-
// AM_RANGE(0x1c0000, 0x1c001f) AM_RAM_WRITE(deco32_pf34_control_w) AM_BASE(&deco32_pf34_control)
837+
// AM_RANGE(0x1c0000, 0x1c001f) AM_RAM_WRITE(deco32_pf34_control_w) AM_BASE(&deco32_pf34_control)
838838
AM_RANGE(0x1c0000, 0x1c001f) AM_RAM AM_BASE(&deco32_pf34_control)
839839
AM_RANGE(0x1d0000, 0x1d1fff) AM_RAM_WRITE(deco32_pf3_data_w) AM_BASE(&deco32_pf3_data)
840840
AM_RANGE(0x1d4000, 0x1d5fff) AM_RAM_WRITE(deco32_pf4_data_w) AM_BASE(&deco32_pf4_data)

src/mame/drivers/galastrm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ static const tc0100scn_interface galastrm_tc0100scn_intf =
310310
static const tc0480scp_interface galastrm_tc0480scp_intf =
311311
{
312312
1, 3, /* gfxnum, txnum */
313-
0, /* pixels */
313+
0, /* pixels */
314314
-40, -3, /* x_offset, y_offset */
315315
0, 0, /* text_xoff, text_yoff */
316316
0, 0, /* flip_xoff, flip_yoff */

src/mame/drivers/goldstar.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5969,7 +5969,7 @@ there is extra hardware which causes it to run a different game contained in tha
59695969
59705970
the extra rom contains
59715971
5972-
MEGA DOUBLE POKER TM COPYRIGHT 1991
5972+
MEGA DOUBLE POKER TM COPYRIGHT 1991
59735973
59745974
as well as various
59755975
@@ -6016,7 +6016,7 @@ ROM_START( cmasterbv )
60166016
ROM_CONTINUE(0x5000,0x1000)
60176017

60186018
ROM_REGION( 0x20000, "extra", 0 ) // how do we use this?!!
6019-
ROM_LOAD( "mgraise.bin", 0x0000, 0x20000, CRC(019f37d4) SHA1(ab71fe0b41ff4415896a23f28b27a0e64950c68c) )
6019+
ROM_LOAD( "mgraise.bin", 0x0000, 0x20000, CRC(019f37d4) SHA1(ab71fe0b41ff4415896a23f28b27a0e64950c68c) )
60206020

60216021

60226022
ROM_REGION( 0x18000, "gfx1", 0 )
@@ -8638,7 +8638,7 @@ GAME( 1991, cmasterf, cmaster, cm, cmasterb, cmv4, ROT0, "Dyna",
86388638

86398639
GAME( 1991, cmast91, 0, cmast91, cmast91, cmast91, ROT0, "Dyna", "Cherry Master '91 (ver.1.30)", 0 )
86408640

8641-
GAME( 1992, cmast92, 0, cmast91, cmast91, cmast91, ROT0, "Dyna", "Cherry Master '92", GAME_NOT_WORKING ) // no gfx roms are dumped
8641+
GAME( 1992, cmast92, 0, cmast91, cmast91, cmast91, ROT0, "Dyna", "Cherry Master '92", GAME_NOT_WORKING ) // no gfx roms are dumped
86428642

86438643

86448644
GAME( 1989, lucky8, 0, lucky8, lucky8, 0, ROT0, "Wing Co.Ltd / GEI", "New Lucky 8 Lines (set 1)", 0 )

0 commit comments

Comments
 (0)