mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 06:39:36 +02:00
initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#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_ */
|
||||
Reference in New Issue
Block a user