Platforms: The program is currently only running on the C64, but should
be portable to the C128 and CBM510 (and maybe more machines).
+-----------------------------------------------------------------------------
+Name: diodemo
+Description: A disc copy program written and contributed by Oliver
+ Schmidt, <ol.sc@web.de>. Supports single or dual disc copy.
+Platforms: The program does depend on conio and dio (direct disk i/o),
+ so it does currently compile for the Atari and Apple ][
+ machines.
+
-----------------------------------------------------------------------------
Name: gunzip65
Description: A gunzip utility for 6502 based machines written by Piotr
Description: Shows some of the graphics capabilities of the "tiny graphics
interface".
Platforms: Runs on all platforms that have TGI support:
- C64
+ Apple ][, C64, C128, Oric Atmos, Geos and Lynx.
Char = cgetc ();
if (isdigit (Char)) {
cputc (Char);
- Drive = (driveid_t) (Drive * 10 + Char - '0');
+ Drive = Drive * 10 + Char - '0';
}
} while (Char != CH_ENTER);
static char* AllocBuffer (sectsize_t SectSize, sectnum_t SectCount, sectnum_t* ChunkCount)
/* Allocate a copy buffer on the heap and return a pointer to it */
{
- void* Buffer = NULL;
+ char* Buffer = NULL;
unsigned long BufferSize;
unsigned int Chunks = 1;
}
} while (Buffer == NULL && ++Chunks <= MAX_CHUNKS);
- return (char*) Buffer;
+ return Buffer;
}
-int main (void)
+int main (int argc, const char* argv[])
{
driveid_t SourceId;
driveid_t TargetId;
cputs ("\r\n");
/* Get source and target drive id (which may very well be identical) */
- SourceId = AskForDrive ("Source");
- TargetId = AskForDrive ("Target");
- cputs ("\r\n\n");
+ switch (argc) {
+ case 1:
+ SourceId = AskForDrive ("Source");
+ TargetId = AskForDrive ("Target");
+ cputs ("\r\n");
+ break;
+
+ case 2:
+ SourceId = TargetId = atoi (argv[1]);
+ break;
+
+ case 3:
+ SourceId = atoi (argv[1]);
+ TargetId = atoi (argv[2]);
+ break;
+
+ default:
+ cprintf ("\r\nToo many arguments\r\n");
+ return EXIT_FAILURE;
+ }
+
+ cputs ("\r\n");
do {
/* Check for single drive copy or inital iteration */
AskForDisk ("Source", SourceId);
}
- /* Open drive on initial iteration */
+ /* Check for initial iteration */
if (Source == NULL) {
+
+ /* Open source drive */
Source = dio_open (SourceId);
if (Source == NULL) {
cprintf ("\r\n\nError %d on opening Drive %d\r\n", (int) _oserror, SourceId);
SectSize = dio_query_sectsize (Source);
SectCount = dio_query_sectcount (Source);
- /* */
+ /* Allocate buffer */
Buffer = AllocBuffer (SectSize, SectCount, &ChunkCount);
if (Buffer == NULL) {
cputs ("\r\n\nError on allocating Buffer\r\n");
/* Read one sector */
if (dio_read (Source, Sector, Buffer + (Sector - ChunkOffset) * SectSize) != 0) {
- cprintf ("\r\n\nError %d on reading Drive %d\r\n", (int) _oserror, SourceId);
+ cprintf ("\r\n\nError %d on reading from Drive %d\r\n", (int) _oserror, SourceId);
return EXIT_FAILURE;
}
}
AskForDisk ("Target", TargetId);
}
- /* Open drive on initial iteration */
+ /* Open target drive on initial iteration */
if (Target == NULL) {
Target = dio_open (TargetId);
if (Target == NULL) {
/* Write one sector */
if (dio_write (Target, Sector, Buffer + (Sector - ChunkOffset) * SectSize) != 0) {
- cprintf ("\r\n\nError %d on opening Drive %d\r\n", (int) _oserror, TargetId);
+ cprintf ("\r\n\nError %d on writing to Drive %d\r\n", (int) _oserror, TargetId);
return EXIT_FAILURE;
}
}