HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
88 #ifdef LIF_STAND_ALONE
118 "lif add lifimage lifname from_ascii_file\n"
119 "lif addbin lifimage lifname from_lif_file\n"
120 "lif create lifimage label directory_sectors sectors\n"
121 "lif createdisk lifimage label model\n"
122 "lif del lifimage name\n"
124 "lif extract lifimage lifname to_ascii_file\n"
125 "lif extractbin lifimage lifname to_lif_file\n"
126 " extracts a file into a sigle file LIF image\n"
127 "lif rename lifimage oldlifname newlifname\n"
128 "lif renamevol lifimage name\n"
129 "Use -d after 'lif' keyword to enable LIF filesystem debugging\n"
151 printf(
"%d:%s\n", i, argv[i]);
182 if (
MATCHARGS(ptr,
"-d", (ind + 0) ,argc))
188 if (
MATCHARGS(ptr,
"addbin", (ind + 3) ,argc))
195 if (
MATCHARGS(ptr,
"add", (ind + 3) ,argc))
200 if (
MATCHARGS(ptr,
"createdisk", (ind + 3) ,argc))
204 char *name = argv[ind];
205 char *label = argv[ind+1];
206 char *model = argv[ind+2];
217 printf(
"Disk: %s not found in hpdir.ini\n", model);
220 if (
MATCHARGS(ptr,
"create", (ind + 4) ,argc))
226 if (
MATCHARGS(ptr,
"del", (ind + 2) ,argc))
231 if (
MATCHARGS(ptr,
"dir", (ind + 1) ,argc))
236 if (
MATCHARGS(ptr,
"extractbin", (ind + 3) ,argc))
242 if (
MATCHARGS(ptr,
"extract", (ind + 3) ,argc))
248 if (
MATCHARGS(ptr,
"rename", (ind + 3) ,argc))
254 if (
MATCHARGS(ptr,
"renamevol", (ind + 2) ,argc))
268 printf(
"td02lif support not enabled\n");
297 printf(
"lif_calloc:[%ld] not enough free memory\n", size);
311 printf(
"lif_free: NULL pointer\n");
344 printf(
"lif_open: Can't open:[%s] mode:[%s]\n", name, mode);
359 if(
stat(name, p) < 0)
361 printf(
"lif_stat: Can't stat:%s\n", name);
376 if(
ftell(fp) != offset)
380 printf(
"lif_read_msg: %s Seek error %ld\n", msg, offset);
404 len =
fread(buf, 1, bytes, LIF->
fp);
409 printf(
"lif_read: read:[%s] offset:[%ld] write:[%ld] expected:[%d]\n",
410 LIF->
name, (
long)offset, (
long)len, (
int)bytes);
433 len =
fwrite(buf, 1, bytes, LIF->
fp);
437 printf(
"lif_write: Write:[%s] offset:[%ld] write:[%d] expected:[%d]\n",
438 LIF->
name, offset, len, bytes);
452 if(c < 32 || c > 127)
454 if(c ==
'.' || c ==
':' || c ==
'"' || c ==
'\'' )
457 if(c ==
'/' || c ==
'\\')
463 if(c >=
'a' && c <=
'z')
465 if(c >=
'A' && c <=
'Z')
469 if(c >=
'0' && c <=
'9')
471 if(c ==
'$' || c ==
'_' || c ==
'-')
485 int lif_B2S(uint8_t *B, uint8_t *name,
int size)
526 void lif_S2B(uint8_t *B, uint8_t *name,
int size)
529 for(i=0;name[i] && i<size;++i)
560 for(i=0; ptr[i] && index < size;++i)
577 return(
strlen((
char *)save));
599 memcpy((
void *) (B+36),LIF->
VOL.
date,6);
622 memcpy((
void *) LIF->
VOL.
date, (B+36),6);
670 return( ( (data/10U) << 4 ) | (data%10U) );
680 return( ((bin>>4)*10U)+(bin & 0x0f) );
769 static char _lif_ctime_buf[32];
771 memset(_lif_ctime_buf,0,
sizeof(_lif_ctime_buf));
788 static char _timestr[32];
789 memset(_timestr,0,
sizeof(_timestr));
795 strcpy(_timestr,
"<EMPTY>");
808 memset((
void *) LIF,0,
sizeof(
lif_t));
880 printf(
"LIF Volume invalid Volume Name");
901 printf(
"LIF Volume invalid bytes at offset 14&15 should be zero\n");
908 printf(
"LIF Volume invalid bytes at offset 22&23 should be zero\n");
922 printf(
"LIF Volume invalid Directory Sector Count < 1\n");
931 printf(
"LIF Volume invalid file start > image size\n");
974 printf(
"LIF Directory:[%s] invalid start sector:%lXh < fie area start:%lXh\n",
988 printf(
"LIF Directory:[%s] invalid end sector:%lXh > total sectors:%lXh\n",
1014 printf(
"LIF Directory:[%s] invalid FileBytes:%ld as sectors:%ld > FileSectors:%ld\n",
1026 printf(
"LIF Directory:[%s] warning FileBytes:%ld as sectors:%ld < FileSectors:%ld\n",
1035 printf(
"LIF Directory:[%s] invalid FileBytes == 0\n",
1047 printf(
"LIF Directory:[%s] warning sector size :%ld != %d\n", LIF->
name,
1076 printf(
"Creating:%s, Label:[%s], Directory Start %ld, Directory Size: %ld, File Sectors:%ld\n",
1077 imagename, liflabel, dirstart, dirsectors, filesectors );
1145 for(i=1;i<dirstart;++i)
1154 printf(
"\tWrote: %ld\r", count);
1165 for(i=0;i<dirsectors;++i)
1174 if((count % 100) == 0)
1175 printf(
"\tWrote: %ld\r", count);
1181 for(i=0;i<filesectors;++i)
1190 if((count % 100) == 0)
1191 printf(
"\tWrote: %ld\r", count);
1194 printf(
"\tWrote: %ld\n", count);
1288 printf(
"lif_checkdirindex:[%s] direcory index:[%d] out of bounds\n",LIF->
name, index);
1318 size =
lif_read(LIF, dir, offset,
sizeof(dir));
1319 if(size < (
long)
sizeof(dir) )
1333 printf(
"lif_check_dir: error, index:%d\n", (
int)index);
1375 if(
lif_write(LIF, dir, offset,
sizeof(dir)) < (
int )
sizeof(dir) )
1433 int purgeindex = -1;
1461 if(purgeindex != -1)
1466 LIF->
purged -= (index - purgeindex);
1477 if(purgeindex == -1)
1487 printf(
"lif_update_free:[%s] error previous record file area overlaps this one:[%s]\n", LIF->
name, LIF->
DIR.
filename);
1512 int freestate, freeindex;
1524 printf(
"lif_newdir: not enough free space:[%ld] for size:[%ld]\n", (
long)LIF->
freesectors, (
long) sectors);
1547 printf(
"lif_newdir: index:[%d] failed read at:[%ld] of [%ld] sectors, free:[%ld]\n",
1548 (
int) index, (
long) start, (
long)sectors, (
long)LIF->
freesectors);
1579 printf(
"lif_newdir: index:[%d] adding at:[%ld]to purged space:[%ld] sectors, free:[%ld]\n",
1580 (
int) index,(
long)start,(
long) sectors, (
long)LIF->
freesectors);
1623 if(freesectors >= sectors )
1659 printf(
"lif_open_volume:[%s] error volume header area too small:[%ld]\n", name, (
long)sp->
st_size);
1689 printf(
"lif_open_volume:[%s] error read volume header failed\n", name);
1701 printf(
"lif_open_volume:[%s] error volume validate failed\n", LIF->
name);
1719 printf(
"lif_open_volume:[%s] error directory check failed\n", LIF->
name);
1753 printf(
"NAME TYPE START SECTOR SIZE RECSIZE DATE\n");
1776 printf(
"LIF Directory:[%s] warning FileBytes:%ld as sectors:%ld != FileSectors:%ld\n",
1786 printf(
"%-10s %04Xh %8lXh %9ld%c %4d %s\n",
1822 printf(
"lif_find_file:[%s] invalid characters\n", liflabel);
1825 if(
strlen(liflabel) > 10)
1828 printf(
"lif_find_file:[%s] liflabel too big\n", liflabel);
1903 printf(
"lif_e010_dap_sector: expected sector boundry: offset:%d\n", (
int) pos);
1953 if(rem >= (3 + len))
1959 wbuf[ind++] = len & 0xff;
1960 wbuf[ind++] = (len >> 8) & 0xff;
1963 wbuf[ind++] = *str++;
1975 wbuf[ind++] = len & 0xff;
1976 wbuf[ind++] = (len >>8) & 0xff;
1978 while(*str && ind<rem)
1979 wbuf[ind++] = *str++;
1994 wbuf[ind++] = (len & 0xff);
1995 wbuf[ind++] = (len>>8) & 0xff;
1998 wbuf[ind++] = *str++;
2034 while(
fgets((
char *)str,(
int)
sizeof(str) - 4, fi) !=
NULL )
2038 strcat((
char *)str,
"\r");
2045 len =
lif_write(LIF, obuf, offset, size);
2061 printf(
"\tWrote: %8ld\r", (
long)bytes);
2075 printf(
"\tWrote: %8ld\r", (
long)bytes);
2076 len =
lif_write(LIF, obuf, offset, size);
2089 len =
lif_write(LIF, obuf, offset, size);
2095 printf(
"\tWrote: %8ld\r",(
long)bytes);
2120 printf(
"lif_add_ascii_file_as_e010: lifimagename is empty\n");
2125 printf(
"lif_add_ascii_file_as_e010: lifname is empty\n");
2130 printf(
"lif_add_ascii_file_as_e010: userfile is empty\n");
2138 printf(
"lif_add_ascii_file_as_e010: userfile not found\n");
2143 printf(
"LIF image:[%s], LIF name:[%s], user file:[%s]\n",
2144 lifimagename, lifname, userfile);
2158 printf(
"LIF image:[%s], not enough free space for:[%s]\n",
2159 lifimagename, userfile);
2182 printf(
"New Directory Information AFTER write\n");
2184 printf(
"Index: %4d\n", (
int)index);
2199 printf(
"\tWrote: %8ld\n", bytes);
2216 uint32_t start, end;
2236 printf(
"LIF image not found:%s\n", lifimagename);
2243 printf(
"LIF File not found:%s\n", lifname);
2250 printf(
"File %s has wrong type:[%04XH] expected 0xE010..0xE013\n", username, (
int) LIF->
DIR.
FileType);
2269 printf(
"Extracting: %s\n", username);
2288 if(buf[ind] == 0xDF || buf[ind] == 0xCF || buf[ind] == 0x6F)
2291 len = buf[ind++] & 0xff;
2292 len |= ((buf[ind++] & 0xff) <<8);
2301 printf(
"lif_extract_e010_as_ascii: string too big size = %d\n", (
int)len);
2307 else if(buf[ind] == 0xEF)
2315 printf(
"lif_extract_e010_as_ascii: unexpected control byte:[%02XH] @ offset: %8lx, ind:%02XH\n", (
int)buf[ind], offset, (
int)ind);
2323 if(buf[ind] ==
'\r' && i == len-1)
2325 wbuf[wind++] =
'\n';
2331 wbuf[wind++] = buf[ind++];
2336 size =
fwrite(wbuf,1,wind,fo);
2339 printf(
"lif_extract_e010_as_ascii: write error\n");
2345 printf(
"\tWrote: %8ld\r", bytes);
2361 size =
fwrite(wbuf,1,wind,fo);
2364 printf(
"lif_extract_e010_as_ascii: write error\n");
2378 printf(
"\tWrote: %8ld\n", bytes);
2396 long offset, uoffset, bytes;
2406 printf(
"LIF image not found:%s\n", lifimagename);
2413 printf(
"File not found:%s\n", lifname);
2475 printf(
"\tWrote: %8ld\r", bytes);
2479 printf(
"\tWrote: %8ld\n", bytes);
2497 long offset, uoffset, start, bytes;
2504 printf(
"lif_add: lifimagename is empty\n");
2509 printf(
"lif_add: lifname is empty\n");
2514 printf(
"lif_add: userfile is empty\n");
2519 printf(
"LIF image:[%s], LIF name:[%s], user file:[%s]\n",
2520 lifimagename, lifname, userfile);
2531 printf(
"File not found:%s\n", lifname);
2544 printf(
"LIF image:[%s], not enough free space for:[%s]\n",
2545 lifimagename, userfile);
2588 printf(
"\tWrote: %8ld\r", bytes);
2599 printf(
"\tWrote: %8ld\n", bytes);
2616 printf(
"lif_del_file: lifimagename is empty\n");
2621 printf(
"lif_del_file: lifname is empty\n");
2625 printf(
"LIF image:[%s], LIF name:[%s]\n",
2626 lifimagename, lifname);
2637 printf(
"LIF image:[%s] lif name:[%s] not found\n", lifimagename, lifname);
2657 printf(
"Deleted: %10s\n", lifname);
2676 printf(
"lif_rename_file: lifimagename is empty\n");
2681 printf(
"lif_rename_file: old lifname is empty\n");
2686 printf(
"lif_rename_file: new lifname is empty\n");
2692 printf(
"lif_rename_file: new lifname contains bad characters\n");
2705 printf(
"lif_rename:[%s] lif name:[%s] not found\n", lifimagename, oldlifname);
2717 printf(
"renamed: %10s to %10s\n", oldlifname,newlifname);
2738 printf(
"lif_rename_file: lifimagename is empty\n");
2744 printf(
"lif_rename_file: new Volume name empty\n");
2750 printf(
"lif_rename_file: new lifname contains bad characters\n");
2766 printf(
"lif_rename_volume:[%s] error volume validate failed\n", LIF->
name);
2780 printf(
"lif_rename_volume:[%s] error write volume header failed\n", LIF->
name);
2798 long lif_create_image(
char *lifimagename,
char *liflabel, uint32_t dirsectors, uint32_t sectors)
2800 uint32_t dirstart,filestart,filesectors,end;
2805 printf(
"lif_create_image: lifimagename is empty\n");
2810 printf(
"lif_create_image: liflabel is empty\n");
2815 printf(
"lif_create_image: dirsectors is 0\n");
2820 printf(
"lif_create_image: sectors is 0\n");
2825 filestart = dirstart + dirsectors;
2826 filesectors = sectors - filestart;
2827 end = filestart + filesectors;
2829 LIF =
lif_create_volume(lifimagename, liflabel, dirstart, dirsectors, filesectors);
2834 printf(
"\tFormatting: wrote %ld sectors\n", (
long)end);
hpdir_t hpdir
hpdir.ini file processing
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
MEMSPACE time_t lif_lifbcd2time(uint8_t *bcd)
convert BCD date into time_t value The BCD year is only the lower 2 digits of the year So We assume t...
MEMSPACE long lif_read(lif_t *LIF, void *buf, long offset, int bytes)
Read data from a LIF image Displays message on errors.
MEMSPACE stat_t * lif_stat(char *name, stat_t *p)
Stat a file Displays message on errors.
MEMSPACE void lif_closedir(lif_t *LIF)
Close LIF directory clear and free lif_t structure.
MEMSPACE int printf(const char *format,...)
MEMSPACE int lif_checkname(char *name)
Check volume LIF name or directory name is valid.
MEMSPACE void lif_vol_clear(lif_t *LIF)
Clear VOL part of LIF structure.
MEMSPACE int lif_rename_file(char *lifimagename, char *oldlifname, char *newlifname)
Rename LIF file in LIF image.
MEMSPACE void lif_help(int full)
Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)
MEMSPACE long atol(const char *str)
Convert ASCII string to number in base 10.
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
MEMSPACE int lif_extract_e010_as_ascii(char *lifimagename, char *lifname, char *username)
Extract E010 type file from LIF image and save as user ASCII file.
MEMSPACE void sync(void)
POSIX Sync all pending file changes and metadata on ALL files.
Master LIF data structure Contains image file name Volume Structure Current Directory Entry read/writ...
MEMSPACE time_t timegm(tm_t *t)
Convert tm_t structure as GMT time into GMT seconds since 1900. All calculactions are in GMT regardle...
MEMSPACE int lif_extract_lif_as_lif(char *lifimagename, char *lifname, char *username)
Extract a file from LIF image entry as standalone LIF image.
MEMSPACE lif_t * lif_updatefree(lif_t *LIF)
Update free space @parameter[in] *LIF: LIF structure.
#define LIF_SECTOR_SIZE
Depends on how much free ram we have.
MEMSPACE WEAK_ATR char * strcat(char *dest, const char *src)
Append string.
void * safecalloc(int size, int elements)
Safe Alloc - Display Error message if Calloc fails.
MEMSPACE long lif_add_lif_file(char *lifimagename, char *lifname, char *userfile)
Add LIF file from another LIF image.
MEMSPACE char * fgets(char *str, int size, FILE *stream)
get a string from stdin See fdevopen() sets stream->put get for TTY devices
MEMSPACE void lif_str2dir(uint8_t *B, lif_t *LIF)
Convert byte vector into byte vector.
uint32_t B2V_LSB(uint8_t *B, int index, int size)
Convert a byte array into a value bytes are LSB ... MSB order.
MEMSPACE int WEAK_ATR strcasecmp(const char *str, const char *pat)
Compare two strings without case.
MEMSPACE char * lif_stralloc(char *str)
Allocate and copy a string Displays message on errors.
MEMSPACE char * asctime_r(tm_t *t, char *buf)
Convert tm_t *t structure into POSIX asctime() ASCII string *buf.
MEMSPACE int lif_writedirindex(lif_t *LIF, int index)
Write LIF drectory record number N.
MEMSPACE size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX write nmemb elements from buf, size bytes each, to the stream fd.
void safefree(void *p)
Safe free - Only free a pointer if it is in malloc memory range.
MEMSPACE int lif_find_file(lif_t *LIF, char *liflabel)
Find a LIF image file by name.
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
MEMSPACE int lif_newdir(lif_t *LIF, long sectors)
Allocate index of free directory record.
MEMSPACE int lif_checkdirindex(lif_t *LIF, int index)
Check directory index limits.
MEMSPACE void lif_str2vol(uint8_t *B, lif_t *LIF)
Convert byte vector into LIF volume records.
MEMSPACE void lif_free(void *p)
Free allocated memory Displays message on errors.
MEMSPACE int lif_check_volume(lif_t *LIF)
Check Volume Table for values in range.
MEMSPACE lif_t * lif_open_volume(char *name, char *mode)
Open LIF directory for reading.
MEMSPACE int stat(char *name, struct stat *buf)
POSIX stat - get file status of named file.
MEMSPACE int lif_ascii_string_to_e010(char *str, long offset, uint8_t *wbuf)
Convert an ASCII string into HP85 E010 format.
MEMSPACE void lif_dir(char *lifimagename)
Display a LIF image file directory.
MEMSPACE void lif_time2lifbcd(time_t t, uint8_t *bcd)
UNIX time to LIF BCD time format The BCD year is only the lower 2 digits of the year So We assume tha...
MEMSPACE int lif_tests(int argc, char *argv[])
LIF user tests.
MEMSPACE FILE * lif_open(char *name, char *mode)
Open a file that must exist Displays message on errors.
MEMSPACE void lif_dir2str(lif_t *LIF, uint8_t *B)
Convert LIF directory records into byte vector.
MEMSPACE WEAK_ATR char * strcpy(char *dest, const char *src)
copy a string
MEMSPACE int lif_rename_volume(char *lifimagename, char *volname)
Rename LIF VOLUME NAME.
MEMSPACE int lif_writedirEOF(lif_t *LIF, int index)
Write LIF drectory EOF.
MEMSPACE void lif_S2B(uint8_t *B, uint8_t *name, int size)
Convert string to LIF directory record.
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
MEMSPACE char * lif_lifbcd2timestr(uint8_t *bcd)
MEMSPACE char * basename(char *str)
POSIX Basename of filename.
MEMSPACE int lif_B2S(uint8_t *B, uint8_t *name, int size)
Convert LIF space padded string name into normal string.
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
#define LIF_DIR_SIZE
LIF directory entry size.
MEMSPACE void lif_rewinddir(lif_t *LIF)
Rewind LIF directory Note readdir pre-increments the directory pointer index so we start at -1.
MEMSPACE uint32_t lif_bytes2sectors(uint32_t bytes)
Convert bytes into used sectors.
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
MEMSPACE lif_t * lif_create_volume(char *imagename, char *liflabel, long dirstart, long dirsectors, long filesectors)
Create LIF image with Volume, Directory and optional empty filespace.
MEMSPACE long ftell(FILE *stream)
POSIX file position of open stream.
MEMSPACE int lif_fixname(uint8_t *B, char *name, int size)
Convert name into a valid LIF name Only use the basename() part of the string and remove any file nam...
MEMSPACE int lif_BCD2BIN(uint8_t bin)
Convert BCD in the range 0 and <= 99 to BIN BCD format: each hex nibble has a digit 0 ....
MEMSPACE int lif_del_file(char *lifimagename, char *lifname)
Delete LIF file in LIF image.
MEMSPACE int MATCHARGS(char *str, char *pat, int min, int argc)
Match two strings and compare argument index Display message if the number of arguments is too few.
MEMSPACE int fseek(FILE *stream, long offset, int whence)
POSIX seek to file possition.
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
#define SEEK_SET
Seek offset macros.
MEMSPACE int lif_check_dir(lif_t *LIF)
Validate Directory record values We only do basic out of bounds tests for this record Purged or EOF d...
MEMSPACE long lif_add_ascii_file_as_e010(char *lifimagename, char *lifname, char *userfile)
Convert and add ASCII file to the LIF image as type E010 format The basename of the lifname,...
MEMSPACE int MATCHI_LEN(char *str, char *pat)
Compare two strings without case limted to length of pattern.
MEMSPACE char * lif_ctime_gmt(time_t *tp)
GMT version of POSIX ctime().
LIF file utilities - utilities extracted from hp85disk project for stand alone use.
MEMSPACE int lif_e010_pad_sector(long offset, uint8_t *wbuf)
HP85 E010 ASCII LIF records ef [ff]* = no more data in this sector df size [ASCII] = data must fit in...
int debuglevel
Debug flag - used to log GPIB and emulator messages.
uint32_t sectors_per_track
MEMSPACE int lif_chars(int c, int index __attribute__((unused)))
Check if characters in a LIF volume or LIF file name are valid.
uint32_t B2V_MSB(uint8_t *B, int index, int size)
Convert a byte array into a value bytes are MSB ... LSB order.
uint32_t time_t
type of EPOCH result.
MEMSPACE void lif_dump_vol(lif_t *LIF, char *msg)
Dump LIF struture data for debugging.
MEMSPACE long lif_create_image(char *lifimagename, char *liflabel, uint32_t dirsectors, uint32_t sectors)
Create/Format a LIF new disk image This can take a while to run, about 1 min for 10,...
MEMSPACE void * lif_calloc(long size)
Allocate and clear memory Displays message on errors.
MEMSPACE int utime(const char *filename, const struct utimbuf *times)
Set Modification and Access time of a file.
MEMSPACE size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
POSIX read nmemb elements from buf, size bytes each, to the stream fd.
MEMSPACE int lif_readdirindex(lif_t *LIF, int index)
Read LIF directory record number N.
MEMSPACE lifdir_t * lif_readdir(lif_t *LIF)
Read a directory records from LIF image advancind directory index.
void V2B_MSB(uint8_t *B, int index, int size, uint32_t val)
Convert Value into byte array bytes are MSB ... LSB order.
MEMSPACE void lif_close_volume(lif_t *LIF)
Free LIF structure and close any files.
MEMSPACE void lif_vol2str(lif_t *LIF, uint8_t *B)
Convert LIF volume records into byte vector.
int td02lif(int argc, char *argv[])
Convert a Teledisk LIF formatted disk image into a pure LIF image.
MEMSPACE void lif_image_clear(lif_t *LIF)
File seek with error message.
void V2B_LSB(uint8_t *B, int index, int size, uint32_t val)
Convert Value into byte array bytes are LSB ... MSB order.
MEMSPACE void lif_dir_clear(lif_t *LIF)
Clear DIR part of LIF structure.
MEMSPACE int lif_write(lif_t *LIF, void *buf, long offset, int bytes)
Write data to an LIF image Displays message on errors.
MEMSPACE long lif_add_ascii_file_as_e010_wrapper(lif_t *LIF, uint32_t offset, char *username)
Add ASCII file as E010 data to LIF image - or compute converted data size To find size of formatted r...
int hpdir_find_drive(char *model, int list, int verbose)
Find drive parameters in hpdir.ini file.
MEMSPACE tm_t * gmtime_r(time_t *t, tm_t *result)
Convert epoch GMT time_t *tp into POSIX tm_t *result.
MEMSPACE uint8_t lif_BIN2BCD(uint8_t data)
Convert number >= 0 and <= 99 to BCD.
long lif_dir_count(long blocks)
LIF Directory blocks ~= sqrt(blocks);.
MEMSPACE int lif_seek_msg(FILE *fp, long offset, char *msg)