mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
17 lines
314 B
Plaintext
17 lines
314 B
Plaintext
|
|
|
|
/* Supervisor task at load time. */
|
|
struct svc_image {
|
|
char name[16];
|
|
unsigned int phys_start;
|
|
unsigned int phys_end;
|
|
} __attribute__((__packed__));
|
|
|
|
/* Supervisor task descriptor at load time */
|
|
struct bootdesc {
|
|
int desc_size;
|
|
int total_images;
|
|
struct svc_image images[];
|
|
} __attribute__((__packed__));
|
|
|