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

linld: spare up to 30k more for zImage (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 13:26:32 2019 +0100 (2019-11-09)
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 ;};