-
Notifications
You must be signed in to change notification settings - Fork 253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PDP-10 36-bit file storage #1144
Comments
The PDP-10 also comes with several "archive" file formats: half-inch magtapes of several kinds, DECtapes, ITS archives, etc. |
How comfortable are you with reading C#? It shouldn't be too much of a leap from C, especially given that the code for doing unpacking of bytes to words is going to involve low-level bit twiddling. My question is: is there a way to identify the encoding, or does the user have to provide it manually? I.e. is it sufficient to look at the
Maybe you could guide me to the simplest file to work with. |
I think most of your questions were resolved on Gitter. Your However, this format is pretty much only used by FTP and I have no samples. Hmm no, it's also used by https://github.com/mikpe/pdp10-tools |
FYI,
Perhaps the three most important methods to store PDP-10 36-bit files in 8-bit files today are:
Binary image is the simplest; two 36-bit words are stored as 9 octets. This is typically used by FTP "binary image" mode.
ANSI ASCII has the nice property that PDP-10 ASCII text files comes out readable in octet format. The bit mapping can be described by this picture. Unused bits are zero.
ITS evacuate format is complicated. It's described here. In addition to making text files readable, like ANSI ASCII, it also convertions for CR LF line endings and Lisp machine characters. Long story.
The text was updated successfully, but these errors were encountered: