mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 02:15:07 +01:00
11 lines
162 B
C
11 lines
162 B
C
|
|
#ifndef _LOADROM_H_
|
|
#define _LOADROM_H_
|
|
|
|
/* Function prototypes */
|
|
void deinterleave_block(uint8 *src);
|
|
int load_rom(char *filename);
|
|
|
|
#endif /* _LOADROM_H_ */
|
|
|