Subversion Repositories HelenOS

Rev

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

Rev 2356 Rev 2409
Line 66... Line 66...
66
    /** Array of loaded tasks. */
66
    /** Array of loaded tasks. */
67
    task_t tasks[TASKMAP_MAX_RECORDS];
67
    task_t tasks[TASKMAP_MAX_RECORDS];
68
} bootinfo_t;
68
} bootinfo_t;
69
 
69
 
70
 
70
 
71
/** Called when the CPU is switched on.
-
 
72
 *
-
 
73
 *  Implemented in assembly. Jumps to the #bootstrap only.
-
 
74
 */
-
 
75
extern void start(void);
-
 
76
 
71
 
77
extern void bootstrap(void);
72
extern void bootstrap(void);
78
 
73
 
79
#endif
74
#endif
80
 
75