HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the source code of this file.
Data Structures | |
struct | td_header_t |
TeleDisk Image Header. More... | |
struct | td_comment_t |
Comment header Only used when bit 7 of TrackDensity in TeleDisk Header is set. More... | |
struct | td_track_t |
Track Header Contains the Physical Sectors, Cylinder, Side number From the original physical disk used to make the TeleDIsk image. More... | |
struct | td_sector_t |
Sector Header Contents of the Sector ID fields which preceeded the sector data From the original physical disk used to make the TeleDIsk image. More... | |
struct | sector_t |
Sector information and Sector "ID". More... | |
struct | track_t |
struct | disk_t |
struct | liftel_t |
Master TeleDisk Format Analisis structure We look for the specifications of LIF image stored inside the TeleDisk image We Examine the first 30 tracks (just some number less then 35) More... | |
Macros | |
#define | TD_HEADER_SIZE 12 |
Size of TeleDisk image header. More... | |
#define | TD_COMMENT_SIZE 10 |
Size of TeleDisk comment header. More... | |
#define | TD_TRACK_SIZE 4 |
Size of TeleDisk track header size. More... | |
#define | TD_SECTOR_SIZE 6 |
Size of TeleDisk sector header size. More... | |
#define | MAXSECTORS 255 |
Maximum number of sectors per track Used for sector data and sorting tables. More... | |
#define | MAXSIDES 2 |
Maximum number of sides per cyinder TeleDisk only trargetted floppies with 2 sides max! More... | |
#define | MAXCYL 255 |
Maximum number of tracks per disk. More... | |
#define | MAXTRACKS (MAXCYL * MAXSIDES) |
Typedefs | |
typedef struct tm | tm_t |
Enumerations | |
enum | { IBMFORMAT_SD, IBMFORMAT_DD } |
Encoding format td_track.PSide & 0x80 values. More... | |
enum | { TD0_INIT, TD0_START, TD0_WAIT_DIRECTORY, TD0_DIRECTORY, TD0_WAIT_FILE, TD0_FILE, TD0_DONE } |
TD0 to LIF state machine states. More... | |
Functions | |
void | td0_B2S (uint8_t *B, int index, uint8_t *name, int size) |
Create a string from data that has no EOS but known size. More... | |
uint16_t | td0_crc16 (uint8_t *B, uint16_t crc, uint16_t poly, int size) |
Compute CRC16 of 8bit data. More... | |
void | td0_hexdump (uint8_t *data, int size) |
hex listing of data More... | |
int | td0_unpack_disk_header (uint8_t *B, td_header_t *p) |
Extract TeleDisk image header data in architecture nutral way. More... | |
int | td0_unpack_comment_header (uint8_t *B, td_comment_t *p) |
Extract TeleDisk comment header data in architecture nutral way. More... | |
int | td0_unpack_track_header (uint8_t *B, td_track_t *p) |
Extract TeleDisk track header data in architecture nutral way. More... | |
int | td0_unpack_sector_header (uint8_t *B, td_sector_t *p) |
Extract TeleDisk sector header data in architecture nutral way. More... | |
void | td0_compressed (int flag) |
Enable TeleDisk image compression mode. More... | |
int | td0_read (void *p, int osize, int size, FILE *fp) |
Read TeleDisk image data block Optionally decompress the data if decompression is enabled. More... | |
int | td0_rle (uint8_t *dst, uint8_t *src, int max) |
Expand a Run Length encoded TeleDisk sector Notes: the source length is encoded in the source data Credits based on work (C) 2006-2014 Jean-Fran�ois DEL NERO Part of the HxCFloppyEmulator library GNU GPL version 2 or later Rewitten for clarity,to enforce size limits, provide error reporting and to avoid word order dependent assumptions,. More... | |
void | td0_trackinfo (disk_t *disk, int trackind, int index) |
Display TeleDisk track sector values. More... | |
void | td0_sectorinfo (td_sector_t *P) |
Display TeleDisk sector data. More... | |
long | td0_density2bitrate (uint8_t density) |
Convert Denisity to bitrate @We don't care about the density except as a possible filter. More... | |
int | td0_open (disk_t *disk, char *name) |
Opne TeleDisk image file process header and optional comment block. More... | |
int | td0_read_disk (disk_t *disk) |
Read TeleDisk image file and save all sector data. More... | |
int | td0_analize_format (disk_t *disk) |
Analize TeleDisk disk sector data Problem: We may have a disk that was reformatted multiple times Each format may have used differing sector sizes, number of tracks, sides For example: First format 80 track disk, two sided, and 9 512 byte sectors per track Second format 35 tracks, single sided, 16 sectors 256 bytes size per track Clearly we only want the 35 tracks on the first side. More... | |
int | td0_save_lif (disk_t *disk, lif_t *LIF) |
save remaining sectors as LIF data More... | |
int | td0_save_lif_sector (disk_t *disk, uint8_t *data, int size, lif_t *LIF) |
Process all sectors on a track from TeleDisk image. More... | |
void | td0_help (int full) |
void | td0_init_liftel (void) |
TeleDisk image Analisis structure Find attributes of LIF image stored in TeleDisk image. More... | |
void | td0_init_sectors (disk_t *disk) |
Initialize track sector information Optionally decompress the data if decompression is enabled. More... | |
int | td02lif (int argc, char *argv[]) |
Convert a Teledisk LIF formatted disk image into a pure LIF image. More... | |
Variables | |
int | debuglevel |
Debug flag - used to log GPIB and emulator messages. More... | |
liftel_t | liftel |
Teledisk liftel analysis and user overrides. More... | |
#define MAXSECTORS 255 |
#define MAXSIDES 2 |
#define TD_COMMENT_SIZE 10 |
#define TD_SECTOR_SIZE 6 |
#define TD_TRACK_SIZE 4 |
anonymous enum |
anonymous enum |
int td02lif | ( | int | argc, |
char * | argv[] | ||
) |
Convert a Teledisk LIF formatted disk image into a pure LIF image.
[in] | telediskname | TELEDISK image name |
[in] | lifname | LIF file name to write |
Write LIF file
LIF summary
Close LIF file
Definition at line 1650 of file td02lif.c.
Referenced by lif_tests().
int td0_analize_format | ( | disk_t * | disk | ) |
Analize TeleDisk disk sector data Problem: We may have a disk that was reformatted multiple times Each format may have used differing sector sizes, number of tracks, sides For example: First format 80 track disk, two sided, and 9 512 byte sectors per track Second format 35 tracks, single sided, 16 sectors 256 bytes size per track Clearly we only want the 35 tracks on the first side.
What we do is examine the first 30 tracks (note: 30 is just a safe number less then 35) On side 1, on 30 tracks Find first sector and save its size Reject sectors that do not match size Find Last sector matching size Count sectors matching size On side 2, on 30 tracks Reject sectors that do not match size Find first sector and save its size Find Last sector matching size Count sectors matching size
If the disk had two sides recorded in the header Reject second side if side sector counts do NOT match Reject second side if NO remaining sectors Reject second side if sector ranges do not match or continue in range
[in] | dist | TD0 image data @retrun 1 if OK, 0 on error |
Definition at line 896 of file td02lif.c.
Referenced by td02lif().
void td0_B2S | ( | uint8_t * | B, |
int | index, | ||
uint8_t * | name, | ||
int | size | ||
) |
Create a string from data that has no EOS but known size.
[in] | *B | source |
[in] | index | index offset into source data |
[out] | *name | target string |
[in] | size | size of string to write - not including EOS |
Definition at line 68 of file td02lif.c.
Referenced by td0_unpack_disk_header().
void td0_compressed | ( | int | flag | ) |
Enable TeleDisk image compression mode.
[in] | flag | compression anable/disable |
Definition at line 250 of file td02lif.c.
Referenced by td0_open().
uint16_t td0_crc16 | ( | uint8_t * | B, |
uint16_t | crc, | ||
uint16_t | poly, | ||
int | size | ||
) |
Compute CRC16 of 8bit data.
[in] | *B | 8 bit binary data |
[in] | crc | initial crc value |
[out] | poly | ploynomial |
[in] | size | number of bytes |
Definition at line 87 of file td02lif.c.
Referenced by td0_open(), td0_read_disk(), td0_unpack_comment_header(), td0_unpack_disk_header(), and td0_unpack_track_header().
long td0_density2bitrate | ( | uint8_t | density | ) |
void td0_help | ( | int | full | ) |
Definition at line 1556 of file td02lif.c.
Referenced by help(), lif_tests(), and td02lif().
void td0_hexdump | ( | uint8_t * | data, |
int | size | ||
) |
hex listing of data
[in] | *data | date to dump |
[in] | size | size of data to dump @retrun void |
Definition at line 110 of file td02lif.c.
Referenced by td0_save_lif_sector().
void td0_init_liftel | ( | void | ) |
void td0_init_sectors | ( | disk_t * | disk | ) |
int td0_open | ( | disk_t * | disk, |
char * | name | ||
) |
Opne TeleDisk image file process header and optional comment block.
[in] | *disk | TeleDisk information structure |
[in] | *name | image file name |
@process TeleDisk disk image header
we expect "TD" (uncompressed) or "td" (compressed) format
We only accept TeleDisk versions >= 10 && version <= 21
Time to Unix format
Definition at line 506 of file td02lif.c.
Referenced by td02lif().
int td0_read | ( | void * | p, |
int | osize, | ||
int | size, | ||
FILE * | fp | ||
) |
Read TeleDisk image data block Optionally decompress the data if decompression is enabled.
[out] | p | data buffer for read |
[out] | osize | size of object |
[out] | size | number of objects to read |
Definition at line 264 of file td02lif.c.
Referenced by td0_open(), and td0_read_disk().
int td0_read_disk | ( | disk_t * | disk | ) |
Read TeleDisk image file and save all sector data.
[in] | dist | TD0 image data |
Process all image Data
EOF? TeleDisk specification says EOF is 255 sectors
Process all track sectors
Sector Header
first test verifies sector < 2K in size second test verifies no data or address mark errors
Compute how much data to read
td0_rle does not use len internal data in the buffer does this We limit the expansion to sector size
=========================================
Definition at line 643 of file td02lif.c.
Referenced by td02lif().
int td0_rle | ( | uint8_t * | dst, |
uint8_t * | src, | ||
int | max | ||
) |
Expand a Run Length encoded TeleDisk sector Notes: the source length is encoded in the source data Credits based on work (C) 2006-2014 Jean-Fran�ois DEL NERO Part of the HxCFloppyEmulator library GNU GPL version 2 or later Rewitten for clarity,to enforce size limits, provide error reporting and to avoid word order dependent assumptions,.
[out] | dst | destination expanded data |
[in] | src | source data |
[in] | max | maximum size of destination data |
@actual length
block size
repeat count
Definition at line 307 of file td02lif.c.
Referenced by td0_read_disk().
Process all sectors on a track from TeleDisk image.
[in] | data | sector data |
[in] | size | sector size |
[in] | LIF | LIF structure @retrun 1 if OK, 0 on error |
==================================================== Write sectors from Teledisk track to LIF file
Definition at line 1366 of file td02lif.c.
Referenced by td0_save_lif().
void td0_sectorinfo | ( | td_sector_t * | P | ) |
Display TeleDisk sector data.
[in] | P | td_sector pointer |
Definition at line 458 of file td02lif.c.
Referenced by td0_read_disk().
void td0_trackinfo | ( | disk_t * | disk, |
int | trackind, | ||
int | index | ||
) |
Display TeleDisk track sector values.
[in] | sector | track sector structure |
[in] | index | sector index (not sector number) |
Definition at line 443 of file td02lif.c.
Referenced by td0_analize_format(), and td0_read_disk().
int td0_unpack_comment_header | ( | uint8_t * | B, |
td_comment_t * | p | ||
) |
Extract TeleDisk comment header data in architecture nutral way.
[in] | B | source data |
[out] | p | TeleDisk comment header structure |
Definition at line 178 of file td02lif.c.
Referenced by td0_open().
int td0_unpack_disk_header | ( | uint8_t * | B, |
td_header_t * | p | ||
) |
Extract TeleDisk image header data in architecture nutral way.
[in] | B | source data |
[out] | p | TeleDisk image header structure |
Definition at line 151 of file td02lif.c.
Referenced by td0_open().
int td0_unpack_sector_header | ( | uint8_t * | B, |
td_sector_t * | p | ||
) |
Extract TeleDisk sector header data in architecture nutral way.
[in] | B | source data |
[out] | p | TeleDisk sector header structure |
Definition at line 232 of file td02lif.c.
Referenced by td0_read_disk().
int td0_unpack_track_header | ( | uint8_t * | B, |
td_track_t * | p | ||
) |
Extract TeleDisk track header data in architecture nutral way.
[in] | B | source data |
[out] | p | TeleDisk track header structure |
Definition at line 201 of file td02lif.c.
Referenced by td0_read_disk().
int debuglevel |
Debug flag - used to log GPIB and emulator messages.
Definition at line 33 of file gpib_task.c.
Referenced by GPIB(), gpib_error_test(), gpib_file_init(), GPIB_LISTEN(), GPIB_SECONDARY_ADDRESS(), GPIB_TALK(), gpib_task(), listen_cleanup(), and Send_Identify().
liftel_t liftel |
Teledisk liftel analysis and user overrides.
Definition at line 60 of file td02lif.c.
Referenced by td02lif(), td0_analize_format(), td0_init_liftel(), td0_save_lif(), and td0_save_lif_sector().