Subversion Repositories HelenOS

Rev

Rev 1790 | Rev 1894 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1790 Rev 1881
Line 43... Line 43...
43
    uint32_t count;
43
    uint32_t count;
44
    task_t tasks[TASKMAP_MAX_RECORDS];
44
    task_t tasks[TASKMAP_MAX_RECORDS];
45
} taskmap_t;
45
} taskmap_t;
46
 
46
 
47
typedef struct {
47
typedef struct {
-
 
48
    uint32_t clock_frequency;
-
 
49
} cpu_t;
-
 
50
 
-
 
51
typedef struct {
48
    taskmap_t taskmap;
52
    taskmap_t taskmap;
49
    memmap_t memmap;
53
    memmap_t memmap;
50
    screen_t screen;
54
    screen_t screen;
51
    keyboard_t keyboard;
55
    keyboard_t keyboard;
-
 
56
    cpu_t cpu;
52
} bootinfo_t;
57
} bootinfo_t;
53
 
58
 
54
extern void start(void);
59
extern void start(void);
55
extern void bootstrap(void);
60
extern void bootstrap(void);
56
 
61