Add issues from pull request #307.

This commit is contained in:
Christian Groessler
2016-06-07 12:05:28 +02:00
parent c7874b9f60
commit 346d88a6a7
8 changed files with 31 additions and 18 deletions

View File

@@ -177,9 +177,6 @@ unsigned char get_ostype (void);
void rebootafterexit (void);
/* Reboot machine after program termination has completed. */
unsigned char doesclrscrafterexit (void);
/* Will the screen automatically be cleared after program termination. */
#define ser_apple2_slot(num) ser_ioctl (0, (void*) (num))
/* Select a slot number from 1 to 7 prior to ser_open.
** The default slot number is 2.

View File

@@ -167,7 +167,6 @@ extern void _save_vecs(void); /* save system vectors */
extern void _rest_vecs(void); /* restore system vectors */
extern char *_getdefdev(void); /* get default floppy device */
extern unsigned char _is_cmdline_dos(void); /* does DOS support command lines */
extern unsigned char doesclrscrafterexit (void); /* will DOS clear the screen after program termination */
/* global variables */
extern unsigned char _dos_type; /* the DOS flavour */

View File

@@ -85,6 +85,11 @@ int __fastcall__ cc65_cos (unsigned x);
** is in 8.8 fixed point format, which means that 1.0 = $100 and -1.0 = $FF00.
*/
unsigned char doesclrscrafterexit (void);
/* Indicates whether the screen automatically be cleared after program
** termination.
*/
/* End of cc65.h */