d94e743476
factored out the copy-pasted common boot code from the two microblaze platforms into a dedicated microblaze bootloader (microblaze_boot.o). Signed-off-by: Peter A. G. Crosthwaite <peter.crosthwaite@petalogix.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
11 lines
327 B
C
11 lines
327 B
C
#ifndef __MICROBLAZE_BOOT__
|
|
#define __MICROBLAZE_BOOT__
|
|
|
|
#include "hw.h"
|
|
|
|
void microblaze_load_kernel(CPUState *env, target_phys_addr_t ddr_base,
|
|
uint32_t ramsize, const char *dtb_filename,
|
|
void (*machine_cpu_reset)(CPUState *));
|
|
|
|
#endif /* __MICROBLAZE_BOOT __ */
|