This commit is contained in:
Mustafa Tufan 2014-02-27 20:59:23 +02:00
parent 8713b5a5ce
commit 9c65acc617
6 changed files with 11 additions and 3 deletions

View File

@ -2136,7 +2136,7 @@ static void vec(int sig, siginfo_t* info, void* _ct)
#if defined(USE_UDIS86)
UDISFN(src_addr, src_addr + 0x20)
#else
write_log(_T("[JIT] No disassembler available, dumping..."))
write_log(_T("[JIT] No disassembler available, dumping..."));
for (int i = 0; i < 32; i += 0x10) {
write_log(_T("[JIT] %08x "), i);
for (int j = 0; j < 16; ++j)

View File

@ -41,6 +41,9 @@
#include "misc.h"
#include "ar.h"
/* external prototypes */
void my_trim (TCHAR *s);
/* internal members */
int debugger_active;
static uaecptr skipaddr_start, skipaddr_end;

View File

@ -625,7 +625,7 @@ static int REGPARAM2 dummy_check2 (uaecptr addr, uae_u32 size)
enforcer_display_hit (_T("CHECK from "),(uae_u32)(regs.pc_p - NMEM_OFFSET),addr);
return 0;
}
#endif 0
#endif //0
/*************************************************************
enable the enforcer like support, maybe later this make MMU

View File

@ -42,6 +42,7 @@
* Much more work to do here . . .
*/
#if 0
int filesys_is_readonly (const char *path)
{
/* If we don't know, we'll claim it's read/write */
@ -76,3 +77,4 @@ int filesys_is_readonly (const char *path)
return readonly;
}
#endif //0

View File

@ -89,7 +89,7 @@
} \
} else \
JITLOG("Can't dissassemble %s, start (0x%08lx) is larger than end (0x%08lx)", \
#udis_func, (uaecptr)udis_func, (uaecptr)udis_end) \
#udis_func, (uaecptr)udis_func, (uaecptr)udis_end); \
}
# else
# define UDISFN(...) {}

View File

@ -20,6 +20,9 @@
#include "fsdb.h"
#include "misc.h"
/* external prototypes */
void my_trim (TCHAR *s);
int log_tapeemu = 1;
#define TAPE_INDEX _T("index.tape")