- include osdep.h

- arg1 of bx_dbg_watch/unwatch is sent -1, 0, and 1 but was declared as
  a Boolean.
This commit is contained in:
Bryce Denney 2001-04-10 01:45:37 +00:00
parent 3adbd8f71b
commit ff34643472

View File

@ -24,6 +24,7 @@
// if including from C parser, need basic types etc
#ifndef __cplusplus
#include "config.h"
#include "osdep.h"
#endif
#if BX_USE_LOADER
@ -87,8 +88,8 @@ void bx_dbg_print_string_command(Bit32u addr);
void bx_dbg_show_command(char*); /* BW */
void enter_playback_entry();
void bx_dbg_print_stack_command(int nwords);
void bx_dbg_watch(Boolean read, Bit32u address);
void bx_dbg_unwatch(Boolean read, Bit32u address);
void bx_dbg_watch(int read, Bit32u address);
void bx_dbg_unwatch(int read, Bit32u address);
void bx_dbg_continue_command(void);
void bx_dbg_stepN_command(bx_dbg_icount_t count);
void bx_dbg_set_command(char *p1, char *p2, char *p3);