]> git.lizzy.rs Git - plan9front.git/blob - sys/src/boot/alphapc/conf.h
fltfmt: %.0g should print with one significant figure
[plan9front.git] / sys / src / boot / alphapc / conf.h
1 typedef struct Bank     Bank;
2 typedef struct Bootconf Bootconf;
3
4 struct Bootconf
5 {
6         int             nbank;
7         Bank            *bank;
8         PCB             *pcb;
9         uvlong  maxphys;
10         char            *bootargs;
11 };
12
13 struct Bank
14 {
15         uvlong  min;
16         uvlong  max;
17 };
18
19 #define BOOTARGSLEN     (4096)
20 #define MAXCONF         32