Rev 1894 | Rev 1897 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1894 | Rev 1896 | ||
|---|---|---|---|
| Line 77... | Line 77... | ||
| 77 | uint32_t bpp; |
77 | uint32_t bpp; |
| 78 | uint32_t scanline; |
78 | uint32_t scanline; |
| 79 | } screen_t; |
79 | } screen_t; |
| 80 | 80 | ||
| 81 | typedef struct { |
81 | typedef struct { |
| 82 | uintptr_t addr; |
- | |
| 83 | uint32_t size; |
- | |
| 84 | } keyboard_t; |
- | |
| 85 | - | ||
| 86 | typedef struct { |
- | |
| 87 | uint32_t clock_frequency; |
82 | uint32_t clock_frequency; |
| 88 | } processor_t; |
83 | } processor_t; |
| 89 | 84 | ||
| 90 | /** Bootinfo structure. |
85 | /** Bootinfo structure. |
| 91 | * |
86 | * |
| Line 93... | Line 88... | ||
| 93 | */ |
88 | */ |
| 94 | typedef struct { |
89 | typedef struct { |
| 95 | taskmap_t taskmap; |
90 | taskmap_t taskmap; |
| 96 | memmap_t memmap; |
91 | memmap_t memmap; |
| 97 | screen_t screen; |
92 | screen_t screen; |
| 98 | keyboard_t keyboard; |
- | |
| 99 | processor_t processor; |
93 | processor_t processor; |
| 100 | ballocs_t ballocs; |
94 | ballocs_t ballocs; |
| 101 | ofw_tree_node_t *ofw_root; |
95 | ofw_tree_node_t *ofw_root; |
| 102 | } bootinfo_t; |
96 | } bootinfo_t; |
| 103 | 97 | ||