mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-03 07:11:29 +00:00
file systems. It supports reading and writing as well as a number
of other operations, such as octal dump, file system initialize,
and file system check ("clean").
This was originally maintained as a Subversion repository at
svn://akdesign.dyndns.org/flx/branches/V2.6.
as suggested by Timothe Litt on the SIMH mailing list.
14 lines
610 B
C
14 lines
610 B
C
extern long findsym(const char * sym);
|
|
extern void setptr(long blk , long size , void * buf);
|
|
extern int silchk(firqb * f , savsilindex * x);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void readfile(firqb * f , long count , void * buf);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void * getdata(firqb * f , long address);
|
|
/* Prototype include a typedef name.
|
|
It should be moved after the typedef declaration */
|
|
extern void cleanup(void);
|
|
extern void dohook(int argc , char ** argv);
|