bugfix issue #259: define empty macro and get_recompiled_*() functions in debugger to avoid compilation errors with NO_ASM=1 DBG=1. From sven.eckelmann@gmx.de

This commit is contained in:
Richard Goedeken 2009-09-29 03:52:30 +00:00
parent 1064e16baa
commit eb872a9e37

View file

@ -210,6 +210,8 @@ int get_has_recompiled(uint32 addr)
#else
#define CHECK_MEM(address)
char* get_recompiled(uint32 addr, int index)
{
return NULL;
@ -220,6 +222,26 @@ int get_num_recompiled(uint32 addr)
return 0;
}
char* get_recompiled_opcode(uint32 addr, int index)
{
return NULL;
}
char* get_recompiled_args(uint32 addr, int index)
{
return NULL;
}
void * get_recompiled_addr(uint32 addr, int index)
{
return 0;
}
int get_has_recompiled(uint32 addr)
{
return 0;
}
void init_host_disassembler(void)
{