libx48ng/src/romio.h

15 lines
287 B
C
Raw Normal View History

#ifndef _ROMIO_H
#define _ROMIO_H 1
2023-04-28 14:06:51 +02:00
#include "config.h"
#define ROM_SIZE_SX 0x080000
#define ROM_SIZE_GX 0x100000
extern unsigned int opt_gx;
extern unsigned int rom_size;
extern int read_rom_file( const char* name, unsigned char** mem, unsigned int* size );
#endif /* !_ROMIO_H */