wok view linld/stuff/src/HIMEM.INC @ rev 23809

linld: add isoboot (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 24 16:43:25 2020 +0000 (2020-05-24)
parents
children a946c1651082
line source
1 struc image_himem ;struct image_himem {
2 fd dw ? ; 0 int fd;
3 fallback dd ? ; 2 u32 fallback;
4 size dd ? ; 6 u32 size;
5 remaining dd ? ;10 u32 remaining;
6 buf dd ? ;14 u32 buf;
7 bufv dw ? ;18 u32 *bufv;
8 errmsg dw ? ;20 char *errmsg;
9 chunk_size dd ? ;22 u32 chunk_size;
10 next_chunk dw ? ;26 void (*next_chunk)(struct image_himem *);
11 state dw ? ;28 u16 state;
12 fd2close dw ? ;30 u16 fd2close;
13 ends image_himem ;};