mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 21:33:56 +02:00
initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#ifndef PBI_MIO_H_
|
||||
#define PBI_MIO_H_
|
||||
|
||||
#include "atari.h"
|
||||
#include <stdio.h>
|
||||
|
||||
extern int PBI_MIO_enabled;
|
||||
|
||||
int PBI_MIO_Initialise(int *argc, char *argv[]);
|
||||
void PBI_MIO_Exit(void);
|
||||
UBYTE PBI_MIO_D1GetByte(UWORD addr, int no_side_effects);
|
||||
void PBI_MIO_D1PutByte(UWORD addr, UBYTE byte);
|
||||
UBYTE PBI_MIO_D6GetByte(UWORD addr, int no_side_effects);
|
||||
void PBI_MIO_D6PutByte(UWORD addr, UBYTE byte);
|
||||
int PBI_MIO_ReadConfig(char *string, char *ptr);
|
||||
void PBI_MIO_WriteConfig(FILE *fp);
|
||||
void PBI_MIO_StateSave(void);
|
||||
void PBI_MIO_StateRead(void);
|
||||
|
||||
#endif /* PBI_MIO_H_ */
|
||||
Reference in New Issue
Block a user