OpenCores
URL https://opencores.org/ocsvn/c0or1k/c0or1k/trunk

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [posix/] [mm0/] [include/] [bootdesc.h] - Rev 7

Go to most recent revision | Compare with Previous | Blame | View Log

#ifndef __BOOTDESC_H__
#define __BOOTDESC_H__
 
/* 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__));
 
 
void read_boot_params();
struct svc_image *bootdesc_get_image_byname(char *);
 
#endif /* __BOOTDESC_H__ */
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.