LDFLAGS += -fsanitize=address
#LDFLAGS += -static-libasan
endif
+ifeq ($(DEBUG_UBSAN), 1)
+CFLAGS += -fsanitize=undefined -fno-sanitize=shift-base
+LDFLAGS += -fsanitize=undefined
+endif
ifneq ($(NO_FSECTIONS), 1)
CFLAGS += -ffunction-sections -fdata-sections
FSECTIONS_LDFLAGS ?= -Wl,--gc-sections
printf("SysRunGui\n");
}
-static void CALLBACK dummy_lace()
+static void CALLBACK dummy_lace(void)
{
}
#ifndef __GPU_H__
#define __GPU_H__
+#include <stdint.h>
+
+typedef struct GPUFreeze {
+ uint32_t ulFreezeVersion;
+ uint32_t ulStatus;
+ uint32_t ulControl[256];
+ unsigned char psxVRam[1024*512*2];
+} GPUFreeze_t;
+
#define PSXGPU_LCF (1u<<31)
#define PSXGPU_nBUSY (1u<<26)
#define PSXGPU_ILACE (1u<<22)
typedef long (CALLBACK *SIO1open)(unsigned long *);\r
\r
#include "spu.h"\r
+#include "gpu.h"\r
#include "decode_xa.h"\r
\r
int LoadPlugins();\r
typedef void (CALLBACK* GPUmakeSnapshot)(void);\r
typedef void (CALLBACK* GPUkeypressed)(int);\r
typedef void (CALLBACK* GPUdisplayText)(char *);\r
-typedef struct {\r
- uint32_t ulFreezeVersion;\r
- uint32_t ulStatus;\r
- uint32_t ulControl[256];\r
- unsigned char psxVRam[1024*512*2];\r
-} GPUFreeze_t;\r
typedef long (CALLBACK* GPUfreeze)(uint32_t, GPUFreeze_t *);\r
typedef long (CALLBACK* GPUgetScreenPic)(unsigned char *);\r
typedef long (CALLBACK* GPUshowScreenPic)(unsigned char *);\r
return ret;
}
-struct GPUFreeze
-{
- uint32_t ulFreezeVersion; // should be always 1 for now (set by main emu)
- uint32_t ulStatus; // current gpu status
- uint32_t ulControl[256]; // latest control register values
- unsigned char psxVRam[1024*1024*2]; // current VRam image (full 2 MB for ZN)
-};
-
-long GPUfreeze(uint32_t type, struct GPUFreeze *freeze)
+long GPUfreeze(uint32_t type, GPUFreeze_t *freeze)
{
int i;