Introduced target 'atarixl'.
The target 'atarixl' is to be used for Atari XL (and better) machines. It will disable the OS ROM and enable the Shadow RAM available on those machine. Note: This commit is only the inital step towards for this goal that just replicates the target 'atari' as a starting point!
This commit is contained in:
@@ -18,7 +18,7 @@ static const unsigned char small_bar[8] = {
|
||||
' ', 0xa5, 0xb4, 0xb5, 0xa1, 0xb6, 0xaa, 0xa7
|
||||
};
|
||||
|
||||
#elif defined(__ATARI__)
|
||||
#elif defined(__ATARI__) || defined(__ATARIXL__)
|
||||
#endif
|
||||
|
||||
/* Screen co-ordinates for the progress meter */
|
||||
@@ -39,7 +39,7 @@ static void ProgressMeter (unsigned Val)
|
||||
revers (revers_bar[Val]);
|
||||
cputc (small_bar[Val]);
|
||||
|
||||
#elif defined(__ATARI__)
|
||||
#elif defined(__ATARI__) || defined(__ATARIXL__)
|
||||
#endif
|
||||
|
||||
revers (0);
|
||||
@@ -162,12 +162,8 @@ Done:
|
||||
" %u.%03u seconds.\n", Days, Hours, Minu, Sec, Milli);
|
||||
#endif
|
||||
|
||||
#ifdef __ATARI__
|
||||
if (_dos_type != SPARTADOS && _dos_type != OSADOS) {
|
||||
cprintf ("\rTap a key, to exit. ");
|
||||
cgetc();
|
||||
}
|
||||
#endif
|
||||
cprintf ("\rTap a key, to exit. ");
|
||||
cgetc();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user