mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-23 07:50:03 +00:00
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
#ifndef _STATE_HELPERS_H
|
|
#define _STATE_HELPERS_H
|
|
|
|
#include <stdint.h>
|
|
#include <retro_inline.h>
|
|
|
|
#define SFVARN_BOOL(x, n) { &(x), 1, MDFNSTATE_RLSB | MDFNSTATE_BOOL, n }
|
|
#define SFVARN(x, n) { &(x), (uint32_t)sizeof(x), MDFNSTATE_RLSB, n }
|
|
#define SFVAR_BOOL(x) SFVARN_BOOL((x), #x)
|
|
#define SFVAR(x) SFVARN((x), #x)
|
|
|
|
#define SFARRAYN(x, l, n) { (x), (uint32_t)(l), 0, n }
|
|
#define SFARRAY(x, l) SFARRAYN((x), (l), #x)
|
|
|
|
#define SFARRAYBN(x, l, n) { (x), (uint32_t)(l), MDFNSTATE_BOOL, n }
|
|
#define SFARRAYB(x, l) SFARRAYBN((x), (l), #x)
|
|
|
|
#define SFARRAY16N(x, l, n) { (x), (uint32_t)((l) * sizeof(uint16_t)), MDFNSTATE_RLSB16, n }
|
|
#define SFARRAY16(x, l) SFARRAY16N((x), (l), #x)
|
|
|
|
#define SFARRAY32N(x, l, n) { (x), (uint32_t)((l) * sizeof(uint32_t)), MDFNSTATE_RLSB32, n }
|
|
#define SFARRAY32(x, l) SFARRAY32N((x), (l), #x)
|
|
|
|
#define SFARRAY64N(x, l, n) { (x), (uint32_t)((l) * sizeof(uint64_t)), MDFNSTATE_RLSB64, n }
|
|
#define SFARRAY64(x, l) SFARRAY64N((x), (l), #x)
|
|
|
|
#define SFARRAYDN(x, l, n) { (x), (uint32_t)((l) * 8), MDFNSTATE_RLSB64, n }
|
|
#define SFARRAYD(x, l) SFARRAYDN((x), (l), #x)
|
|
|
|
#define SFEND { 0, 0, 0, 0 }
|
|
|
|
|
|
#endif
|