1 /*  START OF:       bootload_fs_list.incl.pl1                 *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
 2 /*  BIM  Nobember 80 */
 3 
 4 declare bootload_fs_list_ptr pointer;
 5 
 6 declare 1 bootload_fs_list aligned based (bootload_fs_list_ptr),
 7         2 n_files fixed bin,
 8         2 files (bootload_fs_list_n_files refer (n_files)) aligned,
 9           3 name char (32) unal,
10           3 length fixed bin (21);
11 
12 declare bootload_fs_list_n_files fixed bin;
13 
14 /*  END OF:         bootload_fs_list.incl.pl1                 *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */