Rev 1823 | Rev 1894 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1823 | Rev 1881 | ||
|---|---|---|---|
| Line 81... | Line 81... | ||
| 81 | uintptr_t addr; |
81 | uintptr_t addr; |
| 82 | uint32_t size; |
82 | uint32_t size; |
| 83 | } keyboard_t; |
83 | } keyboard_t; |
| 84 | 84 | ||
| 85 | typedef struct { |
85 | typedef struct { |
| - | 86 | uint32_t clock_frequency; |
|
| - | 87 | } processor_t; |
|
| - | 88 | ||
| - | 89 | typedef struct { |
|
| 86 | taskmap_t taskmap; |
90 | taskmap_t taskmap; |
| 87 | memmap_t memmap; |
91 | memmap_t memmap; |
| 88 | screen_t screen; |
92 | screen_t screen; |
| 89 | keyboard_t keyboard; |
93 | keyboard_t keyboard; |
| - | 94 | processor_t processor; |
|
| 90 | } bootinfo_t; |
95 | } bootinfo_t; |
| 91 | 96 | ||
| 92 | extern bootinfo_t bootinfo; |
97 | extern bootinfo_t bootinfo; |
| 93 | 98 | ||
| 94 | #endif |
99 | #endif |