Implemented ROXL and DIVL for JIT
This commit is contained in:
parent
ddad4770e7
commit
2ed5859e5b
13 changed files with 1750 additions and 140 deletions
|
@ -7,6 +7,17 @@
|
|||
#include "uae/types.h"
|
||||
#include <string.h>
|
||||
|
||||
#ifdef _WIN32_
|
||||
/* Make sure the real _tcs* functions are already declared before we
|
||||
* re-define them below. */
|
||||
#include <tchar.h>
|
||||
#include <wchar.h>
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32_
|
||||
/* Using the real _tcs* functions */
|
||||
#else
|
||||
#define _istdigit isdigit
|
||||
#define _istspace isspace
|
||||
#define _istupper isupper
|
||||
|
@ -42,6 +53,7 @@
|
|||
#define _tstol atol
|
||||
#define _vsnprintf vsnprintf
|
||||
#define _vsntprintf vsnprintf
|
||||
#endif
|
||||
|
||||
static size_t uae_tcslcpy(char *dst, const TCHAR *src, size_t size)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue