Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
| From | Lars Brinkhoff <lars.spam@nocrew.org> |
|---|---|
| Newsgroups | comp.os.cpm |
| Subject | Re: *HUMONGOUS* CP/M Archives issues and updates |
| Organization | nocrew |
| References | (1 earlier) <6377e9ca-a0c4-4e05-b3b0-0eb9dbb63dff@googlegroups.com> <7wimiu0zva.fsf@junk.nocrew.org> <6a89f5f3-47e4-49ab-be02-4791e985efa5@googlegroups.com> <7w369x1ug5.fsf@junk.nocrew.org> <b684718c-2edd-42de-aed2-4dd5bbc67f5f@googlegroups.com> |
| Date | 2020-03-25 06:58 +0000 |
| Message-ID | <7wh7yczzsm.fsf@junk.nocrew.org> (permalink) |
Nathanael wrote:
>> 2980 x 5 = 14900.
>
> Which is still not 14331, so I assume what’s being reported is some
> sort of block/record allocation rather than actual byte count. Ah,
> well.
I don't think so. I'll attach the start and the end of the file below.
> What’s the underlying OS?
MIT-MC always was an ITS machine.
Start. This is CMODEM C13 from CPM;AR5 MODEM timestamped 1981-06-24
02:00:01. There is also a similar CMODEM C file.
----------------------------------------------------------------------
/*This program implements the Ward Christensen assembly language
program in C. All of the original modes are available, and a
capture buffer was added to the terminal and computer modes.
The UNIX and PDP10 modes were added to facilitate sending files
to those systems. Note that the original version of this program
was written for the D.C. Hayes modem board - however, this
version is for the PMMI modem.
original by Jack M. Wierda
modified by Roderick W. Hart
*/
#include <pmmi.h>
----------------------------------------------------------------------
End. Four ^C characters are appended to pad out the last 36-bit word.
----------------------------------------------------------------------
switch(option)
{ case 'C':
case 'T':
termcomp();
break;
case 'P':
case 'U':
ckfile(argc);
termcomp();
while(argc--)
{ printf("\nSending %s\n",*argv);
pdp10(*argv++);
}
termcomp();
break;
case 'R':
ckfile(argc);
while(argc--)
{ printf("\nReceiving %s\n",*argv);
readfile(*argv++);
}
break;
case 'S':
ckfile(argc);
while(argc--)
{ printf("\nSending %s\n",*argv);
sendfile(*argv++);
}
break;
}
if(hangup)
outp(MODEMCP3,0x00);
else
{ do
{ printf("\nHangup : Y(es), N(o) ? ");
hangup = tolower(getchar());
printf("\n");
}
while((hangup != 'y') && (hangup != 'n'));
if(hangup == 'y')
outp(MODEMCP3,0x00);
}
}
^C^C^C^C
----------------------------------------------------------------------
Back to comp.os.cpm | Previous | Next — Previous in thread | Next in thread | Find similar
*HUMONGOUS* CP/M Archives issues and updates Nathanael <cjeculver@gmail.com> - 2020-03-22 21:30 -0700
Re: *HUMONGOUS* CP/M Archives issues and updates Nathanael <cjeculver@gmail.com> - 2020-03-23 20:29 -0700
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-03-24 11:13 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates Nathanael <cjeculver@gmail.com> - 2020-03-24 09:35 -0700
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-03-24 18:25 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates Nathanael <cjeculver@gmail.com> - 2020-03-24 16:06 -0700
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-03-25 06:58 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates drb@ihatespam.msu.edu (Dennis Boone) - 2020-03-25 10:46 -0500
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-03-25 16:14 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates drb@ihatespam.msu.edu (Dennis Boone) - 2020-03-25 17:21 -0500
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-03-26 07:06 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates Nathanael <cjeculver@gmail.com> - 2020-03-24 09:38 -0700
Re: *HUMONGOUS* CP/M Archives issues and updates "dott.Piergiorgio" <chiedetemelo@ask.me> - 2020-03-30 08:43 +0200
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-03-30 06:48 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates "dott.Piergiorgio" <chiedetemelo@ask.me> - 2020-03-30 09:45 +0200
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-03-30 07:49 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates "dott.Piergiorgio" <chiedetemelo@ask.me> - 2020-03-30 10:48 +0200
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-04-01 16:43 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates Nathanael <cjeculver@gmail.com> - 2020-03-31 08:36 -0700
Re: *HUMONGOUS* CP/M Archives issues and updates "dott.Piergiorgio" <chiedetemelo@ask.me> - 2020-04-02 12:37 +0200
Re: *HUMONGOUS* CP/M Archives issues and updates Nathanael <cjeculver@gmail.com> - 2020-04-02 04:10 -0700
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-04-02 16:07 +0000
Re: *HUMONGOUS* CP/M Archives issues and updates "dott.Piergiorgio" <chiedetemelo@ask.me> - 2020-04-04 20:23 +0200
Re: *HUMONGOUS* CP/M Archives issues and updates Lars Brinkhoff <lars.spam@nocrew.org> - 2020-04-04 18:37 +0000
csiph-web