/* Card read/punch routines for 7000 simulators. | |
Copyright (c) 2005, Richard Cornwell | |
Permission is hereby granted, free of charge, to any person obtaining a | |
copy of this software and associated documentation files (the "Software"), | |
to deal in the Software without restriction, including without limitation | |
the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
and/or sell copies of the Software, and to permit persons to whom the | |
Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in | |
all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
ROBERT M SUPNIK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | |
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | |
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
This is the standard card reader. | |
This is the standard card punch. | |
Input formats are accepted in a variaty of formats: | |
Standard ASCII: one record per line. | |
returns are ignored. | |
tabs are expanded to modules 8 characters. | |
~ in first column is treated as a EOF. | |
Binary Card format: | |
Each record 160 characters. | |
First characters 6789---- | |
Second character 21012345 | |
111 | |
Top 4 bits of second character are 0. | |
It is unlikely that any other format could | |
look like this. | |
BCD Format: | |
Each record variable length (80 chars or less). | |
Record mark has bit 7 set. | |
Bit 6 is even parity. | |
Bits 5-0 are character. | |
CBN Format: | |
Each record 160 charaters. | |
First char has bit 7 set. Rest set to 0. | |
Bit 6 is odd parity. | |
Bit 5-0 of first character are top 6 bits | |
of card. | |
Bit 5-0 of second character are lower 6 bits | |
of card. | |
For autodetection of card format, there can be no parity errors. | |
All undeterminate formats are treated as ASCII. | |
Auto output format is ASCII if card has only printable characters | |
or card format binary. | |
The card module uses up7 to hold a buffer for the card being translated | |
and the backward translation table. Which is generated from the table. | |
*/ | |
#include <ctype.h> | |
#include "sim_defs.h" | |
#include "sim_card.h" | |
/* Character conversion tables */ | |
const char sim_six_to_ascii[64] = { | |
' ', '1', '2', '3', '4', '5', '6', '7', | |
'8', '9', '0', '=', '\'', ':', '>', '%', /* 17 = box */ | |
'_', '/', 'S', 'T', 'U', 'V', 'W', 'X', | |
'Y', 'Z', '@', ',', '(', '~', '\\', '#', | |
'-', 'J', 'K', 'L', 'M', 'N', 'O', 'P', | |
'Q', 'R', '!', '$', '*', ']', ';', '^', /* 57 = triangle */ | |
'+', 'A', 'B', 'C', 'D', 'E', 'F', 'G', | |
'H', 'I', '?', '.', ')', '[', '<', '@', /* 37 = stop code */ | |
}; /* 72 = rec mark */ | |
/* 75 = squiggle, 77 = del */ | |
static const uint16 ascii_to_hol_026[128] = { | |
/* Control */ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, /*0-37*/ | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/* sp ! " # $ % & ' */ | |
/* none Y28 78 T28 Y38 T48 X 48 */ | |
0x000, 0x482, 0x006, 0x282, 0x442, 0x222, 0x800, 0x022, /* 40 - 77 */ | |
/* ( ) * + , - . / */ | |
/* T48 X48 Y48 X T38 T X38 T1 */ | |
0x222, 0x822, 0x422, 0x800, 0x242, 0x400, 0x842, 0x300, | |
/* 0 1 2 3 4 5 6 7 */ | |
/* T 1 2 3 4 5 6 7 */ | |
0x200, 0x100, 0x080, 0x040, 0x020, 0x010, 0x008, 0x004, | |
/* 8 9 : ; < = > ? */ | |
/* 8 9 58 Y68 X68 38 68 X28 */ | |
0x002, 0x001, 0x012, 0x40A, 0x80A, 0x042, 0x00A, 0x882, | |
/* @ A B C D E F G */ | |
/* 82 X1 X2 X3 X4 X5 X6 X7 */ | |
0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804, /* 100 - 137 */ | |
/* H I J K L M N O */ | |
/* X8 X9 Y1 Y2 Y3 Y4 Y5 Y6 */ | |
0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408, | |
/* P Q R S T U V W */ | |
/* Y7 Y8 Y9 T2 T3 T4 T5 T6 */ | |
0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208, | |
/* X Y Z [ \ ] ^ _ */ | |
/* T7 T8 T9 X58 X68 T58 T78 28 */ | |
0x204, 0x202, 0x201, 0x812, 0x20A, 0x412, 0x406, 0x082, | |
/* ` a b c d e f g */ | |
0x212, 0xB00, 0xA80, 0xA40, 0xA20, 0xA10, 0xA08, 0xA04, /* 140 - 177 */ | |
/* h i j k l m n o */ | |
0xA02, 0xA01, 0xD00, 0xC80, 0xC40, 0xC20, 0xC10, 0xC08, | |
/* p q r s t u v w */ | |
0xC04, 0xC02, 0xC01, 0x680, 0x640, 0x620, 0x610, 0x608, | |
/* x y z { | } ~ del */ | |
/* Y78 X78 78 79 */ | |
0x604, 0x602, 0x601, 0x406, 0x806,0x0006,0x0005,0xf000 | |
}; | |
/* Set for Burrough codes */ | |
static const uint16 ascii_to_hol_029[128] = { | |
/* Control */ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, /*0-37*/ | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/* sp ! " # $ % & ' */ | |
/* none T28 T78 38 Y38 T48 X 58 */ | |
0x000, 0x282, 0x206, 0x042, 0x442, 0x222, 0x800, 0x012, /* 40 - 77 */ | |
/* ( ) * + , - . / */ | |
/* X58 Y58 Y48 XT T38 Y X38 T1 */ | |
0x812, 0x412, 0x422, 0xA00, 0x242, 0x400, 0x842, 0x300, | |
/* 0 1 2 3 4 5 6 7 */ | |
/* T 1 2 3 4 5 6 7 */ | |
0x200, 0x100, 0x080, 0x040, 0x020, 0x010, 0x008, 0x004, | |
/* 8 9 : ; < = > ? */ | |
/* 8 9 58 Y68 X68 T85 68 28 */ | |
0x002, 0x001, 0x012, 0x40A, 0x80A, 0x212, 0x00A, 0x082, | |
/* @ A B C D E F G */ | |
/* 48 X1 X2 X3 X4 X5 X6 X7 */ | |
0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804, /* 100 - 137 */ | |
/* H I J K L M N O */ | |
/* X8 X9 Y1 Y2 Y3 Y4 Y5 Y6 */ | |
0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408, | |
/* P Q R S T U V W */ | |
/* Y7 Y8 Y9 T2 T3 T4 T5 T6 */ | |
0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208, | |
/* X Y Z [ \ ] ^ _ */ | |
/* T7 T8 T9 X48 X68 T68 T78 T58 */ | |
0x204, 0x202, 0x201, 0x822, 0x20A, 0x20A, 0x406, 0xf000, | |
/* ` a b c d e f g */ | |
0xf000,0xB00, 0xA80, 0xA40, 0xA20, 0xA10, 0xA08, 0xA04, /* 140 - 177 */ | |
/* h i j k l m n o */ | |
0xA02, 0xA01, 0xD00, 0xC80, 0xC40, 0xC20, 0xC10, 0xC08, | |
/* p q r s t u v w */ | |
0xC04, 0xC02, 0xC01, 0x680, 0x640, 0x620, 0x610, 0x608, | |
/* x y z { | } ~ del */ | |
/* Y78 YT 78 X78 */ | |
0x604, 0x602, 0x601, 0x406, 0x600, 0x006, 0x806,0xf000 | |
}; | |
static const uint16 ascii_to_hol_ebcdic[128] = { | |
/* Control */ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, /*0-37*/ | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/*Control*/ | |
0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000,0xf000, | |
/* sp ! " # $ % & ' */ | |
/* none Y28 78 38 Y38 T48 X 58 */ | |
0x000, 0x482, 0x006, 0x042, 0x442, 0x222, 0x800, 0x012, /* 40 - 77 */ | |
/* ( ) * + , - . / */ | |
/* X58 Y58 Y48 X T38 Y X38 T1 */ | |
0x812, 0x412, 0x422, 0x800, 0x242, 0x400, 0x842, 0x300, | |
/* 0 1 2 3 4 5 6 7 */ | |
/* T 1 2 3 4 5 6 7 */ | |
0x200, 0x100, 0x080, 0x040, 0x020, 0x010, 0x008, 0x004, | |
/* 8 9 : ; < = > ? */ | |
/* 8 9 28 Y68 X48 68 T68 T78 */ | |
0x002, 0x001, 0x082, 0x40A, 0x822, 0x00A, 0x20A, 0x206, | |
/* @ A B C D E F G */ | |
/* 48 X1 X2 X3 X4 X5 X6 X7 */ | |
0x022, 0x900, 0x880, 0x840, 0x820, 0x810, 0x808, 0x804, /* 100 - 137 */ | |
/* H I J K L M N O */ | |
/* X8 X9 Y1 Y2 Y3 Y4 Y5 Y6 */ | |
0x802, 0x801, 0x500, 0x480, 0x440, 0x420, 0x410, 0x408, | |
/* P Q R S T U V W */ | |
/* Y7 Y8 Y9 T2 T3 T4 T5 T6 */ | |
0x404, 0x402, 0x401, 0x280, 0x240, 0x220, 0x210, 0x208, | |
/* X Y Z [ \ ] ^ _ */ | |
/* T7 T8 T9 X28 X68 T28 T78 X58 */ | |
0x204, 0x202, 0x201, 0x882, 0x20A, 0x482, 0x406, 0x212, | |
/* ` a b c d e f g */ | |
0x212, 0xB00, 0xA80, 0xA40, 0xA20, 0xA10, 0xA08, 0xA04, /* 140 - 177 */ | |
/* h i j k l m n o */ | |
0xA02, 0xA01, 0xD00, 0xC80, 0xC40, 0xC20, 0xC10, 0xC08, | |
/* p q r s t u v w */ | |
0xC04, 0xC02, 0xC01, 0x680, 0x640, 0x620, 0x610, 0x608, | |
/* x y z { | } ~ del */ | |
/* Y78 X78 78 79 */ | |
0x604, 0x602, 0x601, 0x406, 0x806,0x0006,0x0005,0xf000 | |
}; | |
const char sim_ascii_to_six[128] = { | |
/* Control */ | |
-1, -1, -1, -1, -1, -1, -1, -1, /* 0 - 37 */ | |
/* Control */ | |
-1, -1, -1, -1, -1, -1, -1, -1, | |
/* Control */ | |
-1, -1, -1, -1, -1, -1, -1, -1, | |
/* Control */ | |
-1, -1, -1, -1, -1, -1, -1, -1, | |
/*sp ! " # $ % & ' */ | |
000, 052, -1, 032, 053, 017, 060, 014, /* 40 - 77 */ | |
/* ( ) * + , - . / */ | |
034, 074, 054, 060, 033, 040, 073, 021, | |
/* 0 1 2 3 4 5 6 7 */ | |
012, 001, 002, 003, 004, 005, 006, 007, | |
/* 8 9 : ; < = > ? */ | |
010, 011, 015, 056, 076, 013, 016, 032, | |
/* @ A B C D E F G */ | |
014, 061, 062, 063, 064, 065, 066, 067, /* 100 - 137 */ | |
/* H I J K L M N O */ | |
070, 071, 041, 042, 043, 044, 045, 046, | |
/* P Q R S T U V W */ | |
047, 050, 051, 022, 023, 024, 025, 026, | |
/* X Y Z [ \ ] ^ _ */ | |
027, 030, 031, 075, 036, 055, 057, 020, | |
/* ` a b c d e f g */ | |
035, 061, 062, 063, 064, 065, 066, 067, /* 140 - 177 */ | |
/* h i j k l m n o */ | |
070, 071, 041, 042, 043, 044, 045, 046, | |
/* p q r s t u v w */ | |
047, 050, 051, 022, 023, 024, 025, 026, | |
/* x y z { | } ~ del*/ | |
027, 030, 031, 057, 077, 017, -1, -1 | |
}; | |
const uint8 sim_parity_table[64] = { | |
/* 0 1 2 3 4 5 6 7 */ | |
0000, 0100, 0100, 0000, 0100, 0000, 0000, 0100, | |
0100, 0000, 0000, 0100, 0000, 0100, 0100, 0000, | |
0100, 0000, 0000, 0100, 0000, 0100, 0100, 0000, | |
0000, 0100, 0100, 0000, 0100, 0000, 0000, 0100, | |
0100, 0000, 0000, 0100, 0000, 0100, 0100, 0000, | |
0000, 0100, 0100, 0000, 0100, 0000, 0000, 0100, | |
0000, 0100, 0100, 0000, 0100, 0000, 0000, 0100, | |
0100, 0000, 0000, 0100, 0000, 0100, 0100, 0000 | |
}; | |
struct card_formats { | |
uint32 mode; | |
char *name; | |
}; | |
static struct card_formats fmts[] = { | |
{MODE_AUTO, "AUTO"}, | |
{MODE_BIN, "BIN"}, | |
{MODE_TEXT, "TEXT"}, | |
{MODE_BCD, "BCD"}, | |
{MODE_CBN, "CBN"}, | |
{0, 0}, | |
}; | |
/* Conversion routines */ | |
/* Convert BCD character into hollerith code */ | |
uint16 | |
sim_bcd_to_hol(uint8 bcd) { | |
uint16 hol; | |
/* Handle space correctly */ | |
if (bcd == 0) /* 0 to 82 punch */ | |
return 0x82; | |
if (bcd == 020) /* 20 no punch */ | |
return 0; | |
/* Convert to top column */ | |
switch (bcd & 060) { | |
default: | |
case 000: | |
hol = 0x000; | |
break; | |
case 020: | |
hol = 0x200; | |
break; | |
case 040: | |
hol = 0x400; | |
break; | |
case 060: | |
hol = 0x800; | |
break; | |
} | |
/* Handle case of 10 special */ | |
/* Only 032 is punched as 8-2 */ | |
if ((bcd & 017) == 10 && (bcd & 060) != 020) { | |
hol |= 1 << 9; | |
return hol; | |
} | |
/* Convert to 0-9 row */ | |
bcd &= 017; | |
if (bcd > 9) { | |
hol |= 0x2; /* Col 8 */ | |
bcd -= 8; | |
} | |
if (bcd != 0) | |
hol |= 1 << (9 - bcd); | |
return hol; | |
} | |
/* Returns the BCD of the hollerith code or 0x7f if error */ | |
uint8 | |
sim_hol_to_bcd(uint16 hol) { | |
uint8 bcd; | |
/* Convert 10,11,12 rows */ | |
switch (hol & 0xe00) { | |
case 0x000: | |
bcd = 0; | |
break; | |
case 0x200: | |
if ((hol & 0x1ff) == 0) | |
return 10; | |
bcd = 020; | |
break; | |
case 0x400: | |
bcd = 040; | |
break; | |
case 0x600: /* 11-10 Punch */ | |
bcd = 052; | |
break; | |
case 0x800: | |
bcd = 060; | |
break; | |
case 0xA00: /* 12-10 Punch */ | |
bcd = 072; | |
break; | |
default: /* Double punch in 10,11,12 rows */ | |
return 0x7f; | |
} | |
hol &= 0x1ff; /* Mask rows 0-9 */ | |
/* Check row 8 punched */ | |
if (hol & 0x2) { | |
bcd += 8; | |
hol &= ~0x2; | |
} | |
/* Convert rows 0-9 */ | |
while (hol != 0 && (hol & 0x200) == 0) { | |
bcd++; | |
hol <<= 1; | |
} | |
/* Any more columns punched? */ | |
if ((hol & 0x1ff) != 0) | |
return 0x7f; | |
return bcd; | |
} | |
/* Convert EBCDIC character into hollerith code */ | |
uint16 | |
sim_ebcdic_to_hol(uint8 ebcdic) { | |
uint16 hol = 0; | |
/* Convert middle two bits first */ | |
switch (ebcdic & 0x30) { | |
default: | |
case 0x00: | |
hol = 0x800; | |
break; | |
case 0x10: | |
hol = 0x400; | |
break; | |
case 0x20: | |
hol = 0x200; | |
break; | |
case 0x30: | |
hol = 0x000; | |
break; | |
} | |
/* Now convert the two two bits */ | |
switch (ebcdic & 0xc0) { | |
case 0x00: | |
hol |= 0x001; /* Col 9 */ | |
break; | |
case 0x40: | |
case 0xc0: /* No change */ | |
break; | |
case 0x80: | |
/* Add in correct over punch */ | |
switch (ebcdic & 0x30) { | |
default: | |
case 0x00: | |
hol = 0x200; | |
break; | |
case 0x10: | |
hol = 0x800; | |
break; | |
case 0x20: | |
hol = 0x400; | |
break; | |
case 0x30: | |
hol = 0x000; | |
break; | |
} | |
} | |
/* Convert lower four bits next */ | |
if ((ebcdic & 0xf) > 9) { | |
hol |= 0x2; /* Col 8 */ | |
hol |= 0x100 >> ((ebcdic & 0xf) - 10); | |
} else { | |
hol = 0x200 >> (ebcdic & 0xf); | |
} | |
return hol; | |
} | |
/* Returns the BCD of the hollerith code or 0x7f if error */ | |
uint8 | |
sim_hol_to_ebcdic(uint16 hol) { | |
uint8 ebcdic; | |
/* Quick check for odd punch codes */ | |
if (hol == 0) | |
return 0x20; | |
if (hol == 0x800) /* 12 punch only */ | |
return 0x50; | |
if (hol == 0x400) /* 11 punch only */ | |
return 0x50; | |
if (hol == 0xA83) /* 12-0-1-8-9 */ | |
return 0x00; | |
if (hol == 0x683) /* 11-0-1-8-9 */ | |
return 0x20; | |
/* Convert 10,11,12 rows */ | |
switch (hol & 0xe00) { | |
case 0x000: /* No punch */ | |
ebcdic = 0xf0; | |
break; | |
case 0x200: /* 10 punch */ | |
ebcdic = 0xe0; | |
break; | |
case 0x400: /* 11 Punch */ | |
ebcdic = 0xd0; | |
break; | |
case 0x800: /* 12 Punch */ | |
ebcdic = 0xc0; | |
break; | |
case 0x600: /* 11-10 Punch */ | |
ebcdic = 0xa0; | |
break; | |
case 0xA00: /* 12-10 Punch */ | |
ebcdic = 0x80; | |
break; | |
case 0xc00: /* 12-11 Punch */ | |
ebcdic = 0x90; | |
break; | |
default: /* Double punch in 10,11,12 rows */ | |
return 0xff; | |
} | |
hol &= 0x1ff; /* Mask rows 0-9 */ | |
/* Check row 8 punched */ | |
if (hol & 0x2) { | |
ebcdic += 8; | |
hol &= ~0x2; | |
} | |
/* Check if 9 overpunch */ | |
if ((hol & 0x1) && (hol & 0x3fc) != 0) { | |
ebcdic &= 0x30; | |
hol &= ~ 0x1; | |
} | |
/* Convert rows 0-9 */ | |
while (hol != 0 && (hol & 0x200) == 0) { | |
ebcdic++; | |
hol <<= 1; | |
} | |
/* Remap over punchs */ | |
if ((ebcdic & 0xc0) == 0xc0) { | |
if ((ebcdic & 0xf) > 9) | |
ebcdic &= 0x7f; | |
} | |
/* Any more columns punched? */ | |
if ((hol & 0x1ff) != 0) | |
return 0xff; | |
return ebcdic; | |
} | |
static int cmpcard(char *p, char *s) { | |
int i; | |
if (p[0] != '~') | |
return 0; | |
for(i = 0; i < 3; i++) { | |
if (tolower(p[i+1]) != s[i]) | |
return 0; | |
} | |
return 1; | |
} | |
t_stat | |
sim_read_card(UNIT * uptr) | |
{ | |
int i, j; | |
char c; | |
uint16 temp; | |
int mode; | |
int len; | |
int size; | |
int col; | |
struct _card_data *data; | |
DEVICE *dptr; | |
t_stat r = SCPE_OK; | |
if ((uptr->flags & UNIT_ATT) == 0) | |
return SCPE_UNATT; /* attached? */ | |
dptr = find_dev_from_unit( uptr); | |
data = (struct _card_data *)uptr->up7; | |
sim_debug(DEBUG_CARD, dptr, "Read card "); | |
/* Move data to start at begining of buffer */ | |
if (data->ptr > 0) { | |
int ptr = data->ptr; | |
int start = 0; | |
while (ptr < sizeof(data->cbuff)) | |
(data->cbuff)[start++] = (data->cbuff)[ptr++]; | |
data->len -= data->ptr; | |
/* On eof, just return */ | |
if (!feof(uptr->fileref)) | |
len = sim_fread(&data->cbuff[start], 1, | |
sizeof(data->cbuff) - start, uptr->fileref); | |
else | |
len = 0; | |
data->len += len; | |
size = data->len; | |
} else { | |
/* Load rest of buffer */ | |
if (!feof(uptr->fileref)) { | |
len = sim_fread(&data->cbuff[0], 1, sizeof(data->cbuff), uptr->fileref); | |
size = len; | |
} else | |
len = size = 0; | |
data->len = size; | |
} | |
if ((len < 0 || size == 0) && feof(uptr->fileref)) { | |
sim_debug(DEBUG_CARD, dptr, "EOF\n"); | |
return SCPE_EOF; | |
} | |
if (ferror(uptr->fileref)) { /* error? */ | |
perror("Card reader I/O error"); | |
clearerr(uptr->fileref); | |
return SCPE_IOERR; | |
} | |
/* Clear image buffer */ | |
for (col = 0; col < 80; data->image[col++] = 0); | |
mode = MODE_TEXT; /* Default is text */ | |
/* Check buffer to see if binary card in it. */ | |
for (i = 0, temp = 0; i < 160; i+=2) | |
temp |= data->cbuff[i]; | |
/* Check if every other char < 16 & full buffer */ | |
if (size == 160 && (temp & 0x0f) == 0) | |
mode = MODE_BIN; /* Probably binary */ | |
/* Check if maybe BCD or CBN */ | |
if (data->cbuff[0] & 0x80) { | |
int odd = 0; | |
int even = 0; | |
/* Clear record mark */ | |
data->cbuff[0] &= 0x7f; | |
/* Check all chars for correct parity */ | |
for(i = 0, temp = 0; i < size; i++) { | |
uint8 ch = data->cbuff[i]; | |
/* Stop at EOR */ | |
if (ch & 0x80) | |
break; | |
/* Try matching parity */ | |
if (sim_parity_table[(ch & 077)] == (ch & 0100)) | |
even++; | |
else | |
odd++; | |
} | |
/* Restore it */ | |
data->cbuff[0] |= 0x80; | |
if (i == 160 && odd == i) | |
mode = MODE_CBN; | |
else if (i < 80 && even == i) | |
mode = MODE_BCD; | |
} | |
/* Check if modes match */ | |
if ((uptr->flags & UNIT_MODE) != MODE_AUTO && | |
(uptr->flags & UNIT_MODE) != mode) { | |
sim_debug(DEBUG_CARD, dptr, "invalid mode\n\r"); | |
return SCPE_IOERR; | |
} | |
switch(mode) { | |
case MODE_TEXT: | |
sim_debug(DEBUG_CARD, dptr, "text: ["); | |
/* Check for special codes */ | |
if (cmpcard(&data->cbuff[0], "raw")) { | |
int j = 0; | |
for(col = 0, i = 4; col < 80; i++) { | |
if (data->cbuff[i] >= '0' && data->cbuff[i] <= '7') { | |
data->image[col] = (data->image[col] << 3) | | |
(data->cbuff[i] - '0'); | |
j++; | |
} else if (data->cbuff[i] == '\n' || | |
data->cbuff[i] == '\r') { | |
break; | |
} else { | |
r = SCPE_IOERR; | |
break; | |
} | |
if (j == 4) { | |
col++; | |
j = 0; | |
} | |
} | |
} else if (cmpcard(&data->cbuff[0], "eor")) { | |
data->image[0] = 07; /* 7/8/9 punch */ | |
i = 4; | |
} else if (cmpcard(&data->cbuff[0], "eof")) { | |
data->image[0] = 015; /* 6/7/9 punch */ | |
i = 4; | |
} else if (cmpcard(&data->cbuff[0], "eoi")) { | |
data->image[0] = 017; /* 6/7/8/9 punch */ | |
i = 4; | |
} else { | |
/* Convert text line into card image */ | |
for (col = 0, i = 0; col < 80 && i < size; i++) { | |
c = data->cbuff[i]; | |
switch (c) { | |
case '\0': | |
case '\r': | |
break; /* Ignore these */ | |
case '\t': | |
col = (col | 7) + 1; /* Mult of 8 */ | |
break; | |
case '\n': | |
col = 80; | |
break; | |
case '~': /* End of file mark */ | |
if (col == 0) { | |
r = SCPE_EOF; | |
break; | |
} | |
default: | |
sim_debug(DEBUG_CARD, dptr, "%c", c); | |
if ((uptr->flags & MODE_LOWER) == 0) | |
c = toupper(c); | |
switch(uptr->flags & MODE_CHAR) { | |
case 0: | |
case MODE_026: | |
temp = ascii_to_hol_026[(int)c]; | |
break; | |
case MODE_029: | |
temp = ascii_to_hol_029[(int)c]; | |
break; | |
case MODE_EBCDIC: | |
temp = ascii_to_hol_ebcdic[(int)c]; | |
break; | |
} | |
if (temp & 0xf000) | |
r = SCPE_IOERR; | |
data->image[col++] = temp & 0xfff; | |
/* Eat cr if line exactly 80 columns */ | |
if (col == 80) { | |
if (data->cbuff[i + 1] == '\n') | |
i++; | |
} | |
} | |
} | |
} | |
if (data->cbuff[i] == '\n') | |
i++; | |
if (data->cbuff[i] == '\r') | |
i++; | |
sim_debug(DEBUG_CARD, dptr, "]\r\n"); | |
break; | |
case MODE_BIN: | |
temp = 0; | |
sim_debug(DEBUG_CARD, dptr, "bin\r\n"); | |
/* Move data to buffer */ | |
for (j = i = 0; i < size;) { | |
temp |= data->cbuff[i]; | |
data->image[j] = (data->cbuff[i++] >> 4) & 0xF; | |
data->image[j++] |= ((uint16)data->cbuff[i++]) << 4; | |
} | |
/* Check if format error */ | |
if (temp & 0xF) | |
r = SCPE_IOERR; | |
/* If not full record, return error */ | |
if (size != 160) | |
r = SCPE_IOERR; | |
break; | |
case MODE_CBN: | |
sim_debug(DEBUG_CARD, dptr, "cbn\r\n"); | |
/* Check if first character is a tape mark */ | |
if (size == 1 && ((uint8)data->cbuff[0]) == 0217) { | |
r = SCPE_EOF; | |
break; | |
} | |
/* Clear record mark */ | |
data->cbuff[0] &= 0x7f; | |
/* Convert card and check for errors */ | |
for (j = i = 0; i < size;) { | |
uint8 c; | |
if (data->cbuff[i] & 0x80) | |
break; | |
c = data->cbuff[i] & 077; | |
if (sim_parity_table[(int)c] == (data->cbuff[i++] & 0100)) | |
r = SCPE_IOERR; | |
data->image[j] = ((uint16)c) << 6; | |
if (data->cbuff[i] & 0x80) | |
break; | |
c = data->cbuff[i] & 077; | |
if (sim_parity_table[(int)c] == (data->cbuff[i++] & 0100)) | |
r = SCPE_IOERR; | |
data->image[j++] |= c; | |
} | |
/* If not full record, return error */ | |
if (size != 160) { | |
r = SCPE_IOERR; | |
} | |
break; | |
case MODE_BCD: | |
sim_debug(DEBUG_CARD, dptr, "bcd ["); | |
/* Check if first character is a tape mark */ | |
if (size == 1 && ((uint8)data->cbuff[0]) == 0217) { | |
r = SCPE_EOF; | |
break; | |
} | |
/* Clear record mark */ | |
data->cbuff[0] &= 0x7f; | |
/* Convert text line into card image */ | |
for (col = 0, i = 0; col < 80 && i < size; i++) { | |
if (data->cbuff[i] & 0x80) | |
break; | |
c = data->cbuff[i] & 077; | |
if (sim_parity_table[(int)c] != (data->cbuff[i] & 0100)) | |
r = SCPE_IOERR; | |
sim_debug(DEBUG_CARD, dptr, "%c", sim_six_to_ascii[(int)c]); | |
/* Convert to top column */ | |
data->image[col++] = sim_bcd_to_hol(c); | |
} | |
sim_debug(DEBUG_CARD, dptr, "]\r\n"); | |
} | |
if (i < size) | |
data->ptr = i; | |
else | |
data->ptr = 0; | |
return r; | |
} | |
/* Check if reader is at last card. | |
* | |
*/ | |
int | |
sim_card_eof(UNIT *uptr) | |
{ | |
struct _card_data *data; | |
if ((uptr->flags & UNIT_ATT) == 0) | |
return 1; /* attached? */ | |
data = (struct _card_data *)uptr->up7; | |
if (data->ptr > 0) { | |
if ((data->ptr - data->len) == 0 && feof(uptr->fileref)) | |
return 1; | |
} else { | |
if (feof(uptr->fileref)) | |
return 1; | |
} | |
return 0; | |
} | |
/* Card punch routine | |
Modifiers have been checked by the caller | |
C modifier is recognized (column binary is implemented) | |
*/ | |
t_stat | |
sim_punch_card(UNIT * uptr, UNIT *stkuptr) | |
{ | |
/* Convert word record into column image */ | |
/* Check output type, if auto or text, try and convert record to bcd first */ | |
/* If failed and text report error and dump what we have */ | |
/* Else if binary or not convertable, dump as image */ | |
/* Try to convert to text */ | |
uint8 out[160]; | |
int i; | |
FILE *fo = uptr->fileref; | |
int mode = uptr->flags & UNIT_MODE; | |
int ok = 1; | |
struct _card_data *data; | |
DEVICE *dptr; | |
if ((uptr->flags & UNIT_ATT) == 0) { | |
if (stkuptr != NULL && stkuptr->flags & UNIT_ATT) { | |
fo = stkuptr->fileref; | |
if ((stkuptr->flags & UNIT_MODE) != MODE_AUTO) | |
mode = stkuptr->flags & UNIT_MODE; | |
} else | |
return SCPE_UNATT; /* attached? */ | |
} | |
data = (struct _card_data *)uptr->up7; | |
dptr = find_dev_from_unit(uptr); | |
/* Fix mode if in auto mode */ | |
if (mode == MODE_AUTO) { | |
/* Try to convert each column to ascii */ | |
for (i = 0; i < 80; i++) { | |
out[i] = data->hol_to_ascii[data->image[i]]; | |
if (out[i] == 0xff) { | |
ok = 0; | |
} | |
} | |
mode = ok?MODE_TEXT:MODE_BIN; | |
} | |
switch(mode) { | |
default: | |
case MODE_TEXT: | |
/* Scan each column */ | |
sim_debug(DEBUG_CARD, dptr, "text: ["); | |
for (i = 0; i < 80; i++) { | |
out[i] = data->hol_to_ascii[data->image[i]]; | |
if (out[i] == 0xff) | |
out[i] = '?'; | |
sim_debug(DEBUG_CARD, dptr, "%c", out[i]); | |
} | |
sim_debug(DEBUG_CARD, dptr, "]\r\n"); | |
/* Trim off trailing spaces */ | |
while (i > 0 && out[--i] == ' ') ; | |
out[++i] = '\n'; | |
out[++i] = '\0'; | |
break; | |
case MODE_BIN: | |
sim_debug(DEBUG_CARD, dptr, "bin\r\n"); | |
for (i = 0; i < 80; i++) { | |
uint16 col = data->image[i]; | |
out[i*2] = (col & 0x00f) << 4; | |
out[i*2+1] = (col & 0xff0) >> 4; | |
} | |
i = 160; | |
break; | |
case MODE_CBN: | |
sim_debug(DEBUG_CARD, dptr, "cbn\r\n"); | |
/* Fill buffer */ | |
for (i = 0; i < 80; i++) { | |
uint16 col = data->image[i]; | |
out[i*2] = (col >> 6) & 077; | |
out[i*2+1] = col & 077; | |
} | |
/* Now set parity */ | |
for (i = 0; i < 160; i++) | |
out[i] |= 0100 ^ sim_parity_table[(int)out[i]]; | |
out[0] |= 0x80; /* Set record mark */ | |
i = 160; | |
break; | |
case MODE_BCD: | |
sim_debug(DEBUG_CARD, dptr, "bcd ["); | |
for (i = 0; i < 80; i++) { | |
out[i] = sim_hol_to_bcd(data->image[i]); | |
if (out[i] != 0x7f) | |
out[i] |= sim_parity_table[(int)out[i]]; | |
else | |
out[i] = 077; | |
sim_debug(DEBUG_CARD, dptr, "%c", | |
sim_six_to_ascii[(int)out[i]]); | |
} | |
sim_debug(DEBUG_CARD, dptr, "]\r\n"); | |
out[0] |= 0x80; /* Set record mark */ | |
while (i > 0 && out[--i] == 0); | |
i++; | |
break; | |
} | |
sim_fwrite(out, 1, i, fo); | |
memset(&data->image[0], 0, sizeof(data->image)); | |
return SCPE_OK; | |
} | |
/* Set card format */ | |
t_stat sim_card_set_fmt (UNIT *uptr, int32 val, char *cptr, void *desc) | |
{ | |
int f; | |
if (uptr == NULL) return SCPE_IERR; | |
if (cptr == NULL) return SCPE_ARG; | |
for (f = 0; fmts[f].name != 0; f++) { | |
if (strcmp (cptr, fmts[f].name) == 0) { | |
uptr->flags = (uptr->flags & ~UNIT_MODE) | fmts[f].mode; | |
return SCPE_OK; | |
} | |
} | |
return SCPE_ARG; | |
} | |
/* Show card format */ | |
t_stat sim_card_show_fmt (FILE *st, UNIT *uptr, int32 val, void *desc) | |
{ | |
int f; | |
for (f = 0; fmts[f].name != 0; f++) { | |
if ((uptr->flags & UNIT_MODE) == fmts[f].mode) { | |
fprintf (st, "%s format", fmts[f].name); | |
return SCPE_OK; | |
} | |
} | |
fprintf (st, "invalid format"); | |
return SCPE_OK; | |
} | |
t_stat | |
sim_card_attach(UNIT * uptr, char *cptr) | |
{ | |
t_stat r; | |
struct _card_data *data; | |
char gbuf[30]; | |
int i; | |
if (sim_switches & SWMASK ('F')) { /* format spec? */ | |
cptr = get_glyph (cptr, gbuf, 0); /* get spec */ | |
if (*cptr == 0) return SCPE_2FARG; /* must be more */ | |
if (sim_card_set_fmt (uptr, 0, gbuf, NULL) != SCPE_OK) | |
return SCPE_ARG; | |
} | |
if ((r = attach_unit(uptr, cptr)) != SCPE_OK) | |
return r; | |
/* Initialize reverse mapping if not initialized */ | |
/* Set all to invalid */ | |
/* Allocate a buffer if one does not exist */ | |
if (uptr->up7 == 0) { | |
uptr->up7 = malloc(sizeof(struct _card_data)); | |
data = (struct _card_data *)uptr->up7; | |
} else { | |
data = (struct _card_data *)uptr->up7; | |
} | |
memset(&data->hol_to_ascii[0], 0xff, 4096); | |
for(i = 0; i < (sizeof(ascii_to_hol_026)/sizeof(uint16)); i++) { | |
uint16 temp; | |
switch(uptr->flags & MODE_CHAR) { | |
default: | |
case 0: | |
case MODE_026: | |
temp = ascii_to_hol_026[i]; | |
break; | |
case MODE_029: | |
temp = ascii_to_hol_029[i]; | |
break; | |
case MODE_EBCDIC: | |
temp = ascii_to_hol_ebcdic[i]; | |
break; | |
} | |
if ((temp & 0xf000) == 0) { | |
data->hol_to_ascii[temp] = i; | |
} | |
} | |
memset(data, 0, sizeof(struct _card_data)); | |
data->ptr = 0; /* Set for initial read */ | |
data->len = 0; | |
return SCPE_OK; | |
} | |
t_stat | |
sim_card_detach(UNIT * uptr) | |
{ | |
/* Free buffer if one allocated */ | |
if (uptr->up7 != 0) { | |
free((void *)uptr->up7); | |
uptr->up7 = 0; | |
} | |
return detach_unit(uptr); | |
} | |
t_stat sim_card_attach_help(FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, const char *cptr) | |
{ | |
fprintf (st, "%s Card Attach Help\n\n", dptr->name); | |
if (0 == (uptr-dptr->units)) { | |
if (dptr->numunits > 1) { | |
uint32 i; | |
for (i=0; i < dptr->numunits; ++i) | |
if (dptr->units[i].flags & UNIT_ATTABLE) | |
fprintf (st, " sim> ATTACH {switches} %s%d carddeck\n\n", dptr->name, i); | |
} | |
else | |
fprintf (st, " sim> ATTACH {switches} %s carddeck\n\n", dptr->name); | |
} | |
else | |
fprintf (st, " sim> ATTACH {switches} %s carddeck\n\n", dptr->name); | |
fprintf (st, "Attach command switches\n"); | |
fprintf (st, " -F Open the indicated card deck in a specific format (default\n"); | |
fprintf (st, " is AUTO, alternatives are BIN, TEXT, BCD and CBN)\n"); | |
return SCPE_OK; | |
} | |