1 #ifndef _DJGPP_INCLUDE_VIEW_INF_H
2 #define _DJGPP_INCLUDE_VIEW_INF_H
3 
4 #define NB_CHAR_LINE 32
5 
6 #define MAX_PAGES 10
7 
8 #include "pce.h"
9 #include "cleantyp.h"
10 
11 void view_info();
12 // Display pages of infos on hardware
13 
14 void display_cd_var();
15 // Display info on CD bios variables
16 
17 void display_reg();
18 // Display general info on reg values
19 
20 void display_satb1();
21 // Display satb from 0 to 7
22 
23 void display_satb2();
24 // Display 2th page of satb
25 
26 void display_satb3();
27 // Display 3th page of satb
28 
29 void display_satb4();
30 // Display 4th page of satb
31 
32 void display_satb5();
33 // Display 5th page of satb
34 
35 void display_satb6();
36 // Display 6th page of satb
37 
38 void display_satb7();
39 // Display 7th page of satb
40 
41 void display_satb8();
42 // Display 8th page of satb
43 
44 void display_pattern();
45 // Display pattern in Vram
46 
47 #endif
48