mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
debuggdbstub: uncomment parameters (nw)
These unused parameters don't cause any warnings, so I suggest they shouldn't be commented; make the implementations match their declarations.
This commit is contained in:
parent
7be9bb7dee
commit
99648b1223
@ -40,7 +40,7 @@
|
||||
#define LOG_SYSCALL (1U << 4)
|
||||
#define LOG_STATS (1U << 5)
|
||||
|
||||
#define VERBOSE (LOG_GENERAL)
|
||||
#define VERBOSE (LOG_GENERAL|LOG_TLB|LOG_EXCEPTION)
|
||||
|
||||
// operating system specific system call logging
|
||||
#define SYSCALL_IRIX53 (1U << 0)
|
||||
@ -304,6 +304,7 @@ void r4000_base_device::execute_run()
|
||||
|
||||
void r4000_base_device::execute_set_input(int inputnum, int state)
|
||||
{
|
||||
logerror("interrupt %d state %d\n", inputnum, state);
|
||||
if (state)
|
||||
m_cp0[CP0_Cause] |= (CAUSE_IPEX0 << inputnum);
|
||||
else
|
||||
|
@ -571,7 +571,7 @@ void debug_gdbstub::send_reply(const char *str)
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// Enable extended mode.
|
||||
debug_gdbstub::cmd_reply debug_gdbstub::handle_exclamation(const char */*buf*/)
|
||||
debug_gdbstub::cmd_reply debug_gdbstub::handle_exclamation(const char *buf)
|
||||
{
|
||||
m_extended_mode = true;
|
||||
return REPLY_OK;
|
||||
@ -579,7 +579,7 @@ debug_gdbstub::cmd_reply debug_gdbstub::handle_exclamation(const char */*buf*/)
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// Indicate the reason the target halted.
|
||||
debug_gdbstub::cmd_reply debug_gdbstub::handle_question(const char */*buf*/)
|
||||
debug_gdbstub::cmd_reply debug_gdbstub::handle_question(const char *buf)
|
||||
{
|
||||
send_stop_packet();
|
||||
return REPLY_NONE;
|
||||
@ -660,7 +660,7 @@ debug_gdbstub::cmd_reply debug_gdbstub::handle_H(const char *buf)
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// Kill request.
|
||||
debug_gdbstub::cmd_reply debug_gdbstub::handle_k(const char */*buf*/)
|
||||
debug_gdbstub::cmd_reply debug_gdbstub::handle_k(const char *buf)
|
||||
{
|
||||
m_machine->schedule_exit();
|
||||
m_debugger_cpu->get_visible_cpu()->debug()->go();
|
||||
|
Loading…
Reference in New Issue
Block a user