conf.h 248 B

1234567891011121314151617181920
  1. typedef struct Bank Bank;
  2. typedef struct Bootconf Bootconf;
  3. struct Bootconf
  4. {
  5. int nbank;
  6. Bank *bank;
  7. PCB *pcb;
  8. uvlong maxphys;
  9. char *bootargs;
  10. };
  11. struct Bank
  12. {
  13. uvlong min;
  14. uvlong max;
  15. };
  16. #define BOOTARGSLEN (4096)
  17. #define MAXCONF 32