mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-20 22:33:22 +02:00
22 lines
624 B
C
22 lines
624 B
C
#ifndef AF80_H_
|
|
#define AF80_H_
|
|
|
|
#include "atari.h"
|
|
#include <stdio.h>
|
|
|
|
extern int AF80_palette[16];
|
|
int AF80_Initialise(int *argc, char *argv[]);
|
|
void AF80_Exit(void);
|
|
void AF80_InsertRightCartridge(void);
|
|
int AF80_ReadConfig(char *string, char *ptr);
|
|
void AF80_WriteConfig(FILE *fp);
|
|
int AF80_D5GetByte(UWORD addr, int no_side_effects);
|
|
void AF80_D5PutByte(UWORD addr, UBYTE byte);
|
|
int AF80_D6GetByte(UWORD addr, int no_side_effects);
|
|
void AF80_D6PutByte(UWORD addr, UBYTE byte);
|
|
UBYTE AF80_GetPixels(int scanline, int column, int *colour, int blink);
|
|
extern int AF80_enabled;
|
|
void AF80_Reset(void);
|
|
|
|
#endif /* AF80_H_ */
|