Subversion Repositories HelenOS-historic

Rev

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

Rev 1145 Rev 1220
Line 39... Line 39...
39
#ifndef __ASM__
39
#ifndef __ASM__
40
 
40
 
41
#include <arch/types.h>
41
#include <arch/types.h>
42
 
42
 
43
typedef struct {
43
typedef struct {
-
 
44
    __address addr;
-
 
45
    __u32 size;
-
 
46
} utask_t;
-
 
47
 
-
 
48
typedef struct {
44
    __address start;
49
    __address start;
45
    __u32 size;
50
    __u32 size;
46
} memzone_t;
51
} memzone_t;
47
 
52
 
48
typedef struct {
53
typedef struct {
Line 58... Line 63...
58
    unsigned int bpp;
63
    unsigned int bpp;
59
    unsigned int scanline;
64
    unsigned int scanline;
60
} screen_t;
65
} screen_t;
61
 
66
 
62
typedef struct {
67
typedef struct {
-
 
68
    utask_t init;
63
    memmap_t memmap;
69
    memmap_t memmap;
64
    screen_t screen;
70
    screen_t screen;
65
} bootinfo_t;
71
} bootinfo_t;
66
 
72
 
67
extern bootinfo_t bootinfo;
73
extern bootinfo_t bootinfo;