ascii85x-0.2.4.1: Displays TI-85 variable files as text
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.TI85.File

Description

A collection of types and utilities for dealing with TI Link backup files.

Synopsis

Re-exported modules

Types

data TIHeader Source #

The TI-85 header is common between backup files and variable files.

8 Byte342 Byte
**TI85**xyzComment

where xyz is always 0x1a,0x0c,0x00.

Instances

Instances details
Show TIHeader Source # 
Instance details

Defined in Data.TI85.File

data TIFileData Source #

There are two possible file formats

  • Variable files contain one or more variables, encoded in a variable-specific way.
  • Backup files contain memory dumps, which also include variable data in a raw form.

Instances

Instances details
Show TIFileData Source # 
Instance details

Defined in Data.TI85.File

data TIFile Source #

All TI Link files have a common header and checksum, with a data section that differs between backup and variable types. See TIFileData.

Constructors

TIFile 

Instances

Instances details
Show TIFile Source # 
Instance details

Defined in Data.TI85.File