1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-19 09:28:25 +00:00

Add Atari version of of doesclrscrafterexit().

- Update documentation.
- Update atari.h and apple2.h header files.
- Adapt Atari test/target programs.
- Fix a typo in "div" entry in funcref.sgml.
This commit is contained in:
Christian Groessler
2016-06-07 00:42:51 +02:00
parent 13482984ca
commit c7874b9f60
8 changed files with 71 additions and 39 deletions
+1 -1
View File
@@ -13,6 +13,6 @@ extern char _defdev[];
int main(void)
{
printf("default device: %s\n", _defdev);
if (! _is_cmdline_dos()) cgetc();
if (doesclrscrafterexit()) cgetc();
return 0;
}
+1 -1
View File
@@ -41,6 +41,6 @@ int main(void)
printf(" sp: $%04X (stack ptr)\n", getsp());
if (allocmem) free(allocmem);
if (! _is_cmdline_dos()) cgetc();
if (doesclrscrafterexit()) cgetc();
return(0);
}