Implemented ROXL and DIVL for JIT

This commit is contained in:
Dimitris Panokostas 2018-02-16 14:29:48 +01:00
parent ddad4770e7
commit 2ed5859e5b
13 changed files with 1750 additions and 140 deletions

View file

@ -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)
{