Previous 199869 Revisions Next

r17385 Tuesday 21st August, 2012 at 22:06:22 UTC by hap
add a missing MESS file
[docs]imgtool.txt*

trunk/docs/imgtool.txt
r0r17385
1Imgtool - A generic image manipulation tool for MESS
2
3Imgtool is a tool for the maintenance and manipulation of disk and other types
4of images that MESS users need to deal with.  Functions include retrieving and
5storing files and CRC checking/validation.
6
7Imgtool is part of the MESS project.  It shares large portions of code with
8MESS/MAME, and its existence would not be if it were not for MESS.  As such,
9the distribution terms are the same as MESS.  Please read mess.txt thoroughly.
10
11Some portions in Imgtool is Copyright (c) 1989, 1993 The Regents of the
12University of California.  All rights reserved.
13
14Using Imgtool
15=============
16
17Imgtool is a command line program that contains several "subcommands" that
18actually do all of the work.  Most commands are invoked in a manner along the
19lines of this:
20
21   imgtool <subcommand> <format> <image> ...
22
23<subcommand> is the name of the subcommand
24<format> is the format of the image
25<image> is the filename of the image
26
27Further details vary with each subcommand.  Also note that not all subcommands
28are applicable or supported for different image formats.
29
30Certain Imgtool subcommands (info, crc, good) make use of the CRC files, so if
31you use these commands, make sure that your CRC directory is set up.
32
33Imgtool Subcommands
34===================
35
36create            Creates an image
37dir               Lists the contents of an image
38get               Gets a single file from an image
39put               Puts a single file on an image (wildcards supported)
40getall            Gets all files off an image
41del               Deletes a file on an image
42info              Retrieves info about an image (by reading CRC files)
43crc               Retrieves info about an image in the same format used by the
44                  CRC files
45good              CRC checks a set of images and for matching images, copy into
46                  a new directory
47listformats       Lists all image file formats supported by imgtool
48listfilters       Lists all filters supported by imgtool
49listdriveroptions Lists all format-specific options for the 'put' and 'create'
50                  commands
51
52Filters
53=======
54Filters are a means to process data being written into or read out of an image
55in a certain way.  Filters can be specified on the get, put, and getall
56commands by specifying --filter=xxxx on the command line.  Currently, only
57three filters are supported:
58
59  ascii           Translates end-of-lines to the appropriate format
60  cocobas         Processes tokenized CoCo BASIC programs
61  dragonbas       Processes tokenized Dragon BASIC programs
62
63Format Info
64===========
65
66rsdos CoCo Disks
67----------------
68Fully implemented.  This format supports two format-specific options on the put
69command:
70
71  --ftype=(basic|data|binary|assembler) Specifies the file type
72  --ascii=(ascii|binary)                Specifies the ASCII flag
73
74cococas CoCo Cassettes
75----------------------
76Both .cas and .wav supported, but read only.
77
78lnx Commodore 64 Lynx Archive
79-----------------------------
80only for early revisions of lynx archivs
81only extraction supported
82not heavily tested
83
84Lynx archivs could and should be handled in a c64 emulation
85with the native lynx tool
86
87
88t64 Commodore 64/C64S Archive for Tapes
89---------------------------------------
90not heavily tested
91further creation/use of these archivs discouraged
92
93
94c64crt/crt Commodore 64 Cartridge
95---------------------------------
96for professional use only (cartridge dumper)
97not heavily tested
98
99
100d64 Commodore SX64/VC1541/1551/2031 Diskette
101x64 VICE variant of the above
102d71 Commodore 128D/1571 Diskette
103d81 Commodore 65/1565/1581 Diskette
104-----------------------------------
105not heavily tested
106x64: further creation/use discouraged
107
108
109msdos/fat Microsoft DOS Diskette
110--------------------------------
111directories not finished
112not heavily tested
113
114Formatting (low and high level) must be done with the msdos utility format!
115Boot structures must be installed on these disks with the msdos utility sys!
116
117standard parameter for common disk formats:
118type 0: 5 1/4 inch, double density, single sided, 160kb: sectors 8, heads 1, tracks 40
119type 1: 5 1/4 inch, DD, SS, 180kb: sectors 9, heads 1, tracks 40
120type 2: 5 1/4 inch, DD, double sided, 320kb: sectors 8, heads 2, tracks 40
121type 3: 5 1/4 inch, DD, DS, 360kb: sectors 9, heads 2, tracks 40
122type 4: 3 1/2 inch, DD, DS, 720kb: sectors 9, heads 2, tracks 80
123at disk controller necessary for high density
124type 5: 5 1/4 inch, high density, DS, 1.2mb: sectors 15, heads 2, tracks 80
125        3 1/2 inch, HD, DS, 1.2mb: sectors 15, heads 2, tracks 80
126type 6: 3 1/2 inch, HD, DS, 1.44mb: sectors 18, heads 2, tracks 80
127special disk controller necessary for enhanced density
128type 7: 3 1/2 inch, enhanced density, DS, 2.88mb: sectors 36, heads 2, tracks 80
129
130unix with bash: use
131dd if=/dev/zero of=<name.dsk> bs=512 count=$((9*2*40))
132to generate standard blank 360kb image
133
134
135msdoshd/fat Microsoft DOS Harddisk/PC Partition Table
136-----------------------------------------------------
137not finished and not working
138(see also unter msdos/fat)
139
140No low level format necessary with image files
141Partitioning must be done with the msdos utility fdisk
142Then you can format each partition with msdos utility format
143
144standard parameter for common disk formats:
145type 0: 20mb standard pc/xt harddisk: 17 sectors, 4 heads, 615 cylinders
146
147unix with bash: use
148dd if=/dev/zero of=<name.dsk> bs=512 count=$((17*4*615))
149to generate standard blank 20mb pc xt harddisk image
150
151
152Virtual MSX tape archive
153------------------------
154Converts .tap files from Virtual MSX 1.x to .cas files. It is not
155fault-tolerant.
156
157
158Virtual MSX Game Master 2 SRAM file
159-----------------------------------
160Very simple, not overly useful but some might want it. Virtual MSX stored the
161SRAM of Konami's Game Master 2 in "gmaster2.ram". To convert this to something
162useful with MESS and other MSX emulators, go:
163
164imgtool getall vmsx_gm2 gmaster2.ram
165
166You'll get a file called gmaster2.mem, which must place in the correct directory
167of mess to use  (MESS\MEMCARD\GameMaster2 if your Game Master 2 .rom file is
168called GameMaster2.rom). It's ~/.xmess/memcard/GameMaster2.mem for xmess.
169
170
171fMSX style .cas file
172--------------------
173Converts .cas files to .wav files. The MSX driver can use .cas files directly
174so you don't have to convert them. You can use it to export files to a real
175MSX. Connect the MSX to the line out of your computer. Give the apropriate
176command on the MSX (BLOAD "CAS:",R for example) and then play the .wav file
177on your computer.
178
179imgtool dir fmsx_cas file.cas
180imgtool getall fmsx_cas file.cas
181imgtool get fmsx_cas file.cas file.wav newfile.wav
182
183
184XelaSoft Archive (.xsa)
185-----------------------
186
187The XelaSoft Archive is a compressed file. It can only contain one
188file. Although it can contain any file, it's always used for MSX disk
189images. The were programs written by XelaSoft which made a dump
190of a disk, and compressing them at the same time. Very useful to store
191a disk dump on another disk. zip/gzip offer much better compression and
192are mainstream, so let's stick with that.
193
194imgtool uses XSA code developed by Alex Wulms/XelaSoft.
195
196http://web.inter.nl.net/users/A.P.Wulms/
197
198
199Various bogus MSX disk images (img/ddi/msx/multidisks)
200------------------------------------------------------
201
202These are formats you might come across, which have no actual added value
203whatsoever. The only format MESS will support, like most other MSX
204emulators, is .dsk (a plain dump without any header information). This
205filetype converts them all to .dsk format.
206
207msx_img are disk images with an extra byte at the beginning. It' 1 (0x01)
208for single-sided images and 2 (0x02) for double-side images. These
209files are at: ftp://ftp.funet.fi/pub/msx/. The extension is .img
210
211msx_ddi are DiskDupe 5.12 disk images. There is a 0x1800 bytes header
212at the beginning. The CompuJunkS MSX emulator used these files. The header
213often contain garbage so it's simply stripped. The extension is .ddi
214
215msx_msx are disk images with a weird sector order. You can find them
216at: ftp://jazz.snu.ac.kr/pub/msx/. The extension is .msx
217
218msx_mul are "multi disk" images, used by fmsx-dos 1.6. It is simply
219more than one .dsk image appended to one another. The extension is
220still .dsk, but the file is larger than 720kB (actually always a
221multiple of 720kB.
222
223
224rom16 16 bit wide rom image
225---------------------------
226allows easy access to even and odd parts
227file even: even bytes
228file odd: odd bytes
229
230
231Amstrad NC100/NC150/NC200 PCMCIA Ram Card Images (crd/card)
232-----------------------------------------------------------
233
234The card filesystem is similar to FAT, but not identical.
235The maximum card size is 1mb, and maximum file size is 64k.
236(Files will be cut at 64k if they are larger - e.g. when putting a large file)
237
238As far as I know there is no directory system, however there is always a
239system "NC100" directory which points to the root directory. (Like the DOS "."
240directory).
241
242Using imgtool, you can put, get and delete files.
243
244At this time only ascii file type is supported. These files can be loaded
245into the internal wordprocessor,or,if the file is a BASIC listing, it can
246be loaded into basic with "*EXEC <filename>" at the ">" prompt.
247
248From BASIC you can get a directory listing of the card filesystem with "*."
249at the ">" prompt.
250
251The file date information is not supported at this time.
252
253The card filesystem reading/writing in imgtool has not been heavily tested.
254
255
256TI99 floppy disk images (v9t9/pc99fm/pc99mfm/ti99_old)
257------------------------------------------------------
258
259These modules enable you to create and catalog ti99 images, to delete
260individual files and directories, and to get and put files in TIFILE format.
261Note that you cannot create images in pc99 format.
262
263The v9t9 module supports the v9t9 disk images that is used by MESS, the pc99fm
264module supports FM-encoded pc99 images, and the pc99mfm supports MFM-encoded
265pc99 images, and the ti99_old module supports the now obsolete image format
266that was used by MESS versions prior to .69.  The MESS ti99 drivers supports
267the v9t9 disk image format only.  (Note that the old MESS format was identical
268to the V9T9 format for single-sided disks, but that the track order was
269completely different for double-sided disks, which caused the two formats to be
270incompatible for double-sided disk images.  I have changed the format to v9t9
271as this format is used by most other TI99 utilities and emulators.)
272
273The TIFILE format is a file format that is supported by many ti99 utilities: it
274encodes a TI99 file as a flat stream of bytes, which enables to store it on
275file systems that do not support the TI99 file structure and to transmit it
276through networks.  This format uses a data format similar to the one used on
277ti99 floppies (i.e. logical records are grouped in physical records of 256
278bytes), with a custom 128-byte header.
279
280Legal characters for volume and file names are upper case ASCII characters,
281except period ('.') and space (' ').  Lower case characters are not recommended
282because they are not supported by TI99/4.  You had better avoid control
283characters and non-ASCII characters, too.  (Additionally, the NULL character is
284forbidden in file names, but I think nobody in his right sense would even try
285to enter a NULL character in a file name.)  The restriction on the period ('.')
286character may sound strange to users of other OSes, but this character is used
287as a path separator by TI systems.  (As a matter of fact, no TI99 floppy disk
288DSR (except the HFDC DSR) implements disk directories, but other TI systems
289implement this convention extensively.)  Since period is used as the path
290separator, TI99 users often use the slash ('/') or dash ('-') characters as
291file extension separators; note, however, that the use of file extensions is
292never systematic in TI99: you may use file extensions if you find them useful,
293just like you may use any other file naming scheme, but no program enforce or
294require filename extensions as it is often the case in the DOS/windows world.
295
296
297Parameters for create:
298
299--label=...: an optional string of up to 10 characters.
300--sides=[1|2]: 1 for single-sided, 2 for double-sided.
301--tracks=[1-80]: number of track per side.  Should be 40 for a 40-track disk,
302    and 80 for an 80-track disk.
303--sectors=[1-36]: number of sectors per track.  Should be 9 in single density
304    (FM), 18 in double density (MFM), and 36 in high density (MFM).
305--protection=[0|1]: when set to 1, the disk will be protected and some (but not
306    all) TI99 programs won't overwrite the disk.
307--density=[Auto|SD|DD|HD]: you should probably leave this parameter to Auto, so
308    that imgtool picks the correct value automatically (according to the number
309    of sectors per track).  If you really need to, SD forces single density
310    (FM), DD forces double density (MFM), and HD forces high density (MFM).
311
312Supported geometries for create:
313
314  description    |sides|tracks|sectors| size | FDC Compatibility (1)
315                 |     |      |       |      |
316SSSD 48TPI 5"1/4 |  1  |  40  |    9  |  90K | All
317                 |     |      |       |      |
318DSSD 48TPI 5"1/4 |  2  |  40  |    9  | 180K | All
319                 |     |      |       |      |
320DSDD 48TPI 5"1/4 |  2  |  40  |   18  | 360K | SNUG BwG, Myarc HFDC
321                 |     |      |       |      |
322DSDD 96TPI 5"1/4 |  2  |  80  |   18  | 720K | Myarc HFDC (2)
323or DSDD 3"1/2    |     |      |       |      |
324                 |     |      |       |      |
325DSHD 3"1/2       |  2  |  80  |   36  |1.44M | Myarc HFDC (Geneve Only) (3)
326
327(1) Only emulated controllers are listed in this table
328(2) SNUG BwG can read such images, but it will corrupt them when writing new
329    data to them
330(3) You cannot boot from such images (this is because the Geneve MDOS operating
331    system needs to replaces the incomplete HFDC DSR with a better DSR to
332    support HD: since MDOS is not loaded yet at boot time, you cannot boot from
333    a HD disk).
334
335
336Examples:
337
338List the catalog of image test.dsk:
339imgtool dir v9t9 test.dsk
340
341Extract file FILE1 located on image test.dsk:
342imgtool get v9t9 test.dsk FILE1
343
344Extract file FILE1 located in subdirectory SUBDIR1 on image test.dsk:
345imgtool get v9t9 test.dsk SUBDIR1.FILE1
346
347Write file FILE1 on image test.dsk:
348imgtool put v9t9 test.dsk FILE1
349(Note that file FILE1 must not exist before the command is run.  Use the delete
350command first if you need to overwrite an existing file.)
351
352Delete file FILE1 located in subdirectory SUBDIR1 on image test.dsk:
353imgtool delete v9t9 test.dsk SUBDIR1.FILE1
354
355Delete subdirectory SUBDIR1 on image test.dsk:
356imgtool delete v9t9 test.dsk SUBDIR1
357(Subdirectory SUBDIR1 must be empty.)
358
359Create a SSSD image compatible with all controllers:
360imgtool create v9t9 test.dsk --sides=1 --tracks=40 --sectors=9
361
362Create a DSSD image compatible with all controllers:
363imgtool create v9t9 test.dsk --sides=2 --tracks=40 --sectors=9
364
365Create a DSDD image compatible with BwG and HFDC controllers:
366imgtool create v9t9 test.dsk --sides=2 --tracks=40 --sectors=18
367
368Create a 80-track DSDD image compatible with the HFDC controller:
369imgtool create v9t9 test.dsk --sides=2 --tracks=80 --sectors=18
370
371Create a DSHD image compatible with the Geneve with a HFDC controller:
372imgtool create v9t9 test.dsk --sides=2 --tracks=80 --sectors=36
373
374
375TI99 hard disk images (ti99hd)
376------------------------------
377
378This module can catalog ti99 hard disk images, delete individual files and
379directories, and get and put files in TIFILE format.  Only images in HFDC
380format are supported for now (no SCSI format).
381
382
383TI990 disk images (ti990hd)
384---------------------------
385
386This module supports disk images in DNOS format (which appears to be virtually
387identical to DX10 3.x format).  Although the module is named ti990hd, this
388module will work fine with floppy images as well as hard disk images: just make
389sure that the disks are formatted in the proper format, as neither DX10 2.x nor
390TX990 formats are supported.
391
392
393Parameters for create:
394
395The most interesting command is create, as you cannot create new images within
396emulation.
397
398--cylinders: number of cylinders
399--heads: number of heads
400--sectors: number of sectors per track
401--seclen: bytes per sector
402
403
404Known restrictions on geometry:
405
406256 < bytes per sector < 512 (arbitrary restriction, actual TI990s might
407    accept values out of this range)
408bytes per sector must be even
4093 < # cylinders < 2047
4101 < # heads < 31
4111 < sectors per track < 256
412(sectors per track) * (bytes per sector) < 2^17 = 131072 (which implies
413    (sectors per track) < 255 if sectors are 512-byte long)
414
415(There are probably other restrictions, so you had better stick to values
416similar to the ones used by actual disk units...  Also note that according to
417the Spectra 126-Plus manual, ADU size limitations prevent most operating
418systems from supporting units larger than 500MBytes.)
419
420
421Known drive geometries:
422
423(Sources: 946250-9703 p. 3-14, 2270512-9701 p. 11-3, 945250-9701 pp. 5-20
424through 5-28, 946250-9701B pp. 2-1 through 2-3, 2540219A-0001 pp. 4-2 and 4-3,
4252306140-9701 p. 1-15, 223439B-9701 pp. 3-14 and 3-28.  See also "Spectra
426126-Plus Product Reference Manual" by Cipher P/N 8500055 revision A4 page 2-8.)
427
428Disk Type       Units   Size (MB)   Cylinders   Heads   Sectors/Track   Bytes/Sector
429FD800 (min)     1          .244       77         1       26             128
430FD800 (max)     1          .978???    77         2???    26???          256???
431FD1000          1         1.15        77         2       26             288
432DS31/DS32       1         2.81       203         2       24             288
433DS10            2         4.70       408         2(*2)   20             288
434DS25            1        22.3        408         5       38             288
435DS50            1        44.6        815         5       38             288
436DS200           1       169.5        815        19       38             288
437CD1400-32       2        13.5        821(h)      1       64             256
438CD1400-64 (rem) 1        13.5        821(h)      1       64             256
439CD1400-64 (fix) 1        38.5        821(h)      3       64             256
440CD1400-96 (rem) 1        13.5        821(h)      1       64             256
441CD1400-96 (fix) 1        67.3        821(h)      5       64             256
442DS80            1        62.7        803(g)      5       61             256
443DS300           1       238.3        803(c)     19       61             256
444WD800-18        1        18.5        651(b)      3       37             256
445WD800-43        1        43.2        651(b)      7       37             256
446WD800A/38       1        38.5        911(d)      5       33             256
447WD800A/69       1        69.3        911(d)      9       33             256
448WD800A/114      1       114.6        904(d)     15       33             256
449WD500           1         4.92       150(a)      4       32             256
450WD500A          1        17.1        694(a)      3       32             256
451WD900-138       1       138.1        805(e)     10       67             256
452WD900-138/2     2        69.0        805(e)      5(*2)   67             256
453WD900-425       1       425.8        693(e)     24      100             256
454WD900-425/2     2       212.9        693(e)     12(*2)  100             256
455MSU II          1       158.8        957(f)      9       36             512
456MSU IIA         1       332.9       1204(f)     15       36             512
457
458a) some extra cylinders are reserved for diagnostics
459b) 6 extra cylinders are reserved for storage system use (including 2 for
460  diagnostics)
461c) some extra cylinders are reserved for diagnostics, and 10 extra cylinders
462  are reserved to replace bad tracks
463d) 4 extra cylinders are reserved for storage system use (including 2 for
464  diagnostics), and 10 extra cylinders are reserved to replace bad tracks
465e) 16 extra cylinders are reserved for bad track relocation
466f) there are extra cylinders, and the way logical addresses relates to physical
467  address is so complex I don't even want to talk about it
468g) 2 extra cylinders are reserved for diagnostics, and 10 extra cylinders are
469  reserved to replace bad tracks
470h) 2 extra cylinders are reserved for diagnostics
471
472Note that 2270512-9701 and 946250-9703 describe more disk units (namely CMD 16,
473CMD 80, WD800A-43 and WD800A-100 for the former, and WD500-10 for the later).
474Since there are no other references anywhere and DX-10 does not seem to know
475about them, I assume that these models were uncommon.
476
477FD800 is a 8" floppy disc unit that is not emulated, and it is only cited for
478completeness.  (The FD800 controller is connected to the CRU bus instead of the
479TILINE bus, and it is the only disc controller that is supported by non-TILINE
480systems).
481
482FD1000 is a 8" floppy disc unit.
483
484DS31/DS32 was the first hard disk unit for ti990.  The only difference between
485DS31 and DS32 is that DS32 does not require a screwdriver to change the disc
486cartridge.
487
488DS10 has one 5-mb fixed platter and one 5mb disk cartridge.
489
490CD1400-32 and CD1400-96 have a one-platter 16-mb removable unit, and a fixed
491unit (16 mb for CD1400-32 and 80 mb for CD1400-96).
492
493WDxxx units are Winchester drives that connect to a proprietary PBUS bus
494interface.  This bus is a built-in interface in BS300 and BS300A systems, and
495the TPBI card enables any TILINE 990 system to support it.  WD800s are 8"
496drives with integrated tape backup, WD500s are 5"1/4 drives with integrated
497FD1000 backup, and WD900s are 9" drives.  The WD900 controller can optionally
498partition the disc into two partitions: the set-up with no partitioning is
499listed as WD900-138 and WD900-425, whereas the set-up with partitioning is
500listed as WD900-138/2 and WD900-425/2.
501
502MSU II and MSU IIa are SCSI units to be connected to the 990/SCSI controller
503board.
504
505
506Macintosh floppy disk images (mac)
507----------------------------------
508
509This module supports MFS (Macintosh File System) and HFS (Hierarchical File
510System) floppy disk images, either in diskcopy 4.2 or raw image format (the raw
511image format is partially compatible with diskcopy 6 format).
512
513This module can catalog images, and get files in MacBinary format.  You can put
514files on MFS-formatted images, too, but not on HFS-formatted images.
515
516The module does not support folders in MFS format, because MFS folders are not
517documented by Apple.
518
519Extracted files are in MacBinary III format (which is fully compatible with
520MacBinary I and II).  The MacBinary III format joins both macintosh file forks,
521the comment field, and most file info in one single file: it is supported by
522several Macintosh utilities.
523
524
525Texas Instruments calculators variable files
526--------------------------------------------
527
528+--------+------------------------------------------+-----------+
529| Format | Description                              | Extension |
530+--------+------------------------------------------+-----------+
531| ti85p  | TI-85 program file                       |    85p    |
532| ti85s  | TI-85 string file (also ZShell programs) |    85s    |
533| ti85i  | TI-85 picture file (85-image)            |    85i    |
534| ti85n  | TI-85 real number file                   |    85n    |
535| ti85c    | TI-85 complex number file                |    85c    |
536| ti85l  | TI-85 list (real or complex)             |    85l    |
537| ti85k  | TI-85 constant file                      |    85k    |
538| ti85m  | TI-85 matrix (real or complex) file      |    85m    |
539| ti85v  | TI-85 vector (real or complex) file      |    85v    |
540| ti85d  | TI-85 graphics database file             |    85d    |
541| ti85e  | TI-85 equation file                      |    85e    |
542| ti85r  | TI-85 range settings file                |    85r    |
543| ti85g    | TI-85 grouped file                       |    85g    |
544| ti85   | TI-85 generic file                       |    85?    |
545| ti86p  | TI-86 program file                       |    86p    |
546| ti86s  | TI-86 string file                        |    86s    |
547| ti86i  | TI-86 picture file (85-image)            |    86i    |
548| ti86n  | TI-86 real number file                   |    86n    |
549| ti86c  | TI-86 complex number file                |    86c    |
550| ti86l  | TI-86 list (real or complex) file        |    86l    |
551| ti86k    | TI-86 constant file                      |    86k    |
552| ti86m  | TI-86 matrix (real or complex) file      |    86m    |
553| ti86v  | TI-86 vector (real or complex) file      |    86v    |
554| ti86d  | TI-86 graphics database file             |    86d    |
555| ti86e  | TI-86 equation file                      |    86e    |
556| ti86r  | TI-86 range settings file                |    86r    |
557| ti86g  | TI-86 grouped file                       |    86g    |
558| ti86   | TI-86 generic file                       |    86?    |
559+--------+------------------------------------------+-----------+
560
561Grouped formats (ti85g and ti86g) can keep more than one variable.
562Generic formats (ti85 and ti86) can be used for all types of variable files.
563For all types of variable files dir, create, put, get and delete commands are
564supported.
565
566
567Texas Instruments calculators memory backup files
568-------------------------------------------------
569
570+--------+------------------------------------------+-----------+
571| Format | Description                              | Extension |
572+--------+------------------------------------------+-----------+
573| ti85b  | TI-85 memory backup file                 |    85b    |
574+--------+------------------------------------------+-----------+
575
576For TI memory backup files only dir command is supported.
577

Previous 199869 Revisions Next


© 1997-2024 The MAME Team