mirror of
https://github.com/open-simh/simtools.git
synced 2026-05-02 06:15:20 +00:00
1) The readme is out-of-date, and unreadable on github 2) Some tools have their own directories, some don't 3) Many tools have neither readme nor descriptions. 4) Some files are misplaced This reorganizes so that each tool has its own directory, even if it only has a single file (Hint: If you use a tool, please add/update READMEs) The master README is complete, and readable on github The tools are in alphabetical order within category. There are some cases where this probably isn't the right thing to do, e.g. where there are separate tools that do "to" and "from" conversions. Each tool has at least a 1-line description in the master readme This commit does not change any tool.
35 lines
854 B
Plaintext
35 lines
854 B
Plaintext
mtcvtv23 converts a tape images in .tpc format to .tap format.
|
|
|
|
.tpc format tape images have the format
|
|
|
|
2 byte record length 1
|
|
record 1
|
|
2 byte record length 2
|
|
record 2
|
|
:
|
|
2 bytes = 0000 for end of file
|
|
|
|
and so on. This is the format produced by various UNIX utilities
|
|
for dumping tape images.
|
|
|
|
.tap format tape images have the format
|
|
|
|
4 byte record length 1
|
|
record 1
|
|
repeat of 4 byte record length 1
|
|
4 byte record length 2
|
|
record 2
|
|
repeat of 4 byte record length 2
|
|
:
|
|
4 bytes = 00000000 for end of file
|
|
|
|
and so on. This is the tape format expected by simh, Tim Stark's TS10,
|
|
and John Wilson's E11.
|
|
|
|
mtcvtv23 is invoked by
|
|
|
|
mtcvtv23 file1 file2 file3...
|
|
|
|
Each file in turn is converted from .tpc format to .tap format. The
|
|
input file can have any extension; the converted file will have a .tap
|
|
extension. |