home *** CD-ROM | disk | FTP | other *** search
- /* DLIB.H -- Header for the DSP CARD 4 ROM Library manager
- *
- * Copyright (C) by Jarkko Vuori 1992, 1993, 1994
- * Author(s): J Vuori
- * Modification(s):
- */
-
-
- #define DIR_ENTRIES 16
- #define CHECK_ID 0x564a
- #define DESC_LEN 10
-
-
- typedef struct {
- unsigned adr;
- unsigned len;
- char description[DESC_LEN];
- struct {
- unsigned year:7;
- unsigned month:4;
- unsigned day:5;
- } date;
- } ROMDIR;
-
-
- /* DLIBCMD.C */
- Bool cdecl replace(FILE *files[], int numArg, char *comment);
- Bool cdecl bootimage(FILE *files[], int numArg, char *comment);
- Bool cdecl list(FILE *files[]);
- Bool cdecl autoboot(FILE *files[], int numArg);
-