mirror of
https://github.com/holub/mame
synced 2025-05-20 20:58:51 +03:00
fix compile error in debug build
This commit is contained in:
parent
ccaabffa9a
commit
a85f5f7da0
@ -1341,11 +1341,15 @@ if ( input_code_pressed(KEYCODE_Z) || input_code_pressed(KEYCODE_X) )
|
|||||||
|
|
||||||
if (msk != 0) megasys1_active_layers &= msk;
|
if (msk != 0) megasys1_active_layers &= msk;
|
||||||
#if 1
|
#if 1
|
||||||
popmessage("Cmd: %04X Pos:%04X Lim:%04X Inp:%04X",
|
{
|
||||||
scudhamm_motor_command,
|
const address_space *space = cpu_get_address_space(screen->machine->cpu[0], ADDRESS_SPACE_PROGRAM);
|
||||||
scudhamm_motor_pos_r(screen->machine,0,0xffff),
|
|
||||||
scudhamm_motor_status_r(screen->machine,0,0xffff),
|
popmessage("Cmd: %04X Pos:%04X Lim:%04X Inp:%04X",
|
||||||
scudhamm_analog_r(screen->machine,0,0xffff) );
|
scudhamm_motor_command,
|
||||||
|
scudhamm_motor_pos_r(space,0,0xffff),
|
||||||
|
scudhamm_motor_status_r(space,0,0xffff),
|
||||||
|
scudhamm_analog_r(space,0,0xffff) );
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user