initial commit

This commit is contained in:
R-type
2015-12-14 14:00:35 +01:00
commit 5a96c0ca66
377 changed files with 149124 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#ifndef IDE_H_
#define IDE_H_
#include "atari.h"
#ifdef HAVE_INTTYPES_H
# include <inttypes.h>
#else
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned uint32_t;
typedef long long int64_t;
typedef unsigned long long uint64_t;
#endif
extern int IDE_enabled;
int IDE_Initialise(int *argc, char *argv[]);
void IDE_Exit(void);
uint8_t IDE_GetByte(uint16_t addr, int no_side_effects);
void IDE_PutByte(uint16_t addr, uint8_t byte);
#endif