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
+32
View File
@@ -0,0 +1,32 @@
#ifndef BINLOAD_H_
#define BINLOAD_H_
#include <stdio.h> /* FILE */
#include "atari.h" /* UBYTE */
extern FILE *BINLOAD_bin_file;
int BINLOAD_Loader(const char *filename);
extern int BINLOAD_start_binloading;
extern int BINLOAD_loading_basic;
/* Set to TRUE to enable loading of XEX with approximate disk speed */
extern int BINLOAD_slow_xex_loading;
/* Indicates that a DOS file is being currently slowly loaded. */
extern int BINLOAD_wait_active;
/* Set it to TRUE to pause the current loading of a DOS file. */
extern int BINLOAD_pause_loading;
#define BINLOAD_LOADING_BASIC_SAVED 1
#define BINLOAD_LOADING_BASIC_LISTED 2
#define BINLOAD_LOADING_BASIC_LISTED_ATARI 3
#define BINLOAD_LOADING_BASIC_LISTED_CR 4
#define BINLOAD_LOADING_BASIC_LISTED_LF 5
#define BINLOAD_LOADING_BASIC_LISTED_CRLF 6
#define BINLOAD_LOADING_BASIC_LISTED_CR_OR_CRLF 7
#define BINLOAD_LOADING_BASIC_RUN 8
int BINLOAD_LoaderStart(UBYTE *buffer);
#endif /* BINLOAD_H_ */