Files
ci-libretro-fceumm/src/fceu-endian.h

16 lines
333 B
C
Raw Normal View History

2014-03-30 22:29:30 +02:00
#ifndef _FCEU_ENDIAN_H
#define _FCEU_ENDIAN_H
2014-03-30 22:29:30 +02:00
#include "fceu-memory.h"
#include <streams/memory_stream.h>
2015-08-06 13:15:34 +02:00
int write32le_mem(uint32 b, memstream_t *mem);
int read32le_mem(uint32 *Bufo, memstream_t *mem);
void FlipByteOrder(uint8 *src, uint32 count);
void FCEU_en32lsb(uint8 *, uint32);
uint32 FCEU_de32lsb(const uint8 *);
#endif