mirror of
https://github.com/libretro/PUAE.git
synced 2024-11-23 07:49:45 +00:00
2.7.1b9
This commit is contained in:
parent
8713b5a5ce
commit
9c65acc617
@ -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)
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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(...) {}
|
||||
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user