Difference between revisions of "Formats"

From Ninerpedia
Jump to navigation Jump to search
m (→‎TI-99 File formats: Add a new format)
m
 
(One intermediate revision by the same user not shown)
Line 58: Line 58:


Emulate files are actually disk images usable by the Myarc HFDC controller. With the possibility of using a hard drive, the problem appeared that many programs assume to be loaded from disk drive 1. The emulate file can be mounted and emulate the disk drive.
Emulate files are actually disk images usable by the Myarc HFDC controller. With the possibility of using a hard drive, the problem appeared that many programs assume to be loaded from disk drive 1. The emulate file can be mounted and emulate the disk drive.
[[Category:File Format| ]]

Latest revision as of 17:51, 30 April 2018

We have various format definitions relevant for the TI or Geneve.

ROM dump formats

ROM dumps are the contents of the memory chips in the console or in cartridges. ROM dumps may be plain dumps, which means they reflect the contents of the chip in an unchanged way, or headered dumps where additional metadata defines the semantics of this dump in a header section at the beginning.

Dumps are specifically important for emulators, but also for modifying cartridge contents, or for running cartridges in an environment without cartridge slot (like the Geneve or the TI-99/4P aka SGCPU).

Plain dumps

Plain dumps do not define their contents by metadata, therefore care must be taken to apply these contents at the correct locations. The dumps are organized as sequences of octets, not of words, so there is no endianness. (This may be an issue when exchanging data between different platforms, as the TI is a big-endian platform, whereas Intel platforms are little-endian.)

Dumps may be fragmented or organized in application-specific ways. It is up to the user of the dumps to correctly arrange the dumps.

Emulators make use of memory dumps. For MESS, we have one dump for the 8 KiB system ROM, and one dump for the 24 KiB console GROMs (all in one continuous file). Cartridges have two ROM dumps (up to 8 KiB each) and one GROM dump file of up to 40 KiB.

For MESS, there is a convention for cartridge ROM dumps:

  • ROM dumps are named like "dumpc.bin"; the second bank is called "dumpd.bin"
  • GROM dumps are named like "dumpg.bin"

From version 0.131 on, MESS makes use of ROM dump packages which simplifies the handling of the dumps.

Headered dumps

The most often used headered ROM format is the GRAM Kracker format. This format was introduced for copying cartridges to image files so that their contents could be altered, they could be loaded into expansion cards, or that Geneve users could carry on using the cartridges without a cartridge slot.

File formats

File images (TIFILES)

The TIFILES format is one of the most frequently used formats when we are concerned with file transfer. This file format is a headered, uncompressed format which contains the file types and other metadata which are important in the TI-99 file system.

Usually, TIFILES encoding is used when files are transferred to/from a PC, and stored on FTP servers.

Disk images (DSK)

Disk images are required for usage in emulators.

The Sector Dump Format, also known as v9t9 format, is a consecutive sector dump. It is used in the MESS emulator for installing disk images. It contains all sectors concatenated as one byte stream, starting with sector 0 and ending with the highest sector number, like 359 for SSSD disks or 1439 for DSDD disks.

The Track Dump Format, also known as PC99 format, is a track dump. It is used in the PC99 emulator. Unlike v9t9, the PC9 format includes all track data and is therefore about 50% larger.

Other file formats

Files on FTP servers ending with ".max" are most probably scanned manuals in "PaperPort" format. There is a viewer on WHT. If you want to convert this into PDF, install the PaperPort viewer and print the file to a PDF printer, or print Postscript to a file and convert the file.

TI-99 File formats

Files for various applications have a particular format.

Emulate files are actually disk images usable by the Myarc HFDC controller. With the possibility of using a hard drive, the problem appeared that many programs assume to be loaded from disk drive 1. The emulate file can be mounted and emulate the disk drive.