2 Copyright © 2013, The AROS Development Team. All rights reserved.
10 #include <sys/types.h>
11 #include <aros/kernel.h>
13 // Create some temporary storage in .bss for both stack and local allocations.
14 #define BOOT_STACK_SIZE (256 << 2)
15 #define BOOT_TAGS_SIZE (128 << 3)
16 #define BOOT_TMP_SIZE 524288
18 #define MAX_BSS_SECTIONS 256
22 const char *remove_path(const char *in
);
23 void arm_flush_cache(uint32_t addr
, uint32_t length
);
25 extern uint8_t __bootstrap_start
;
26 extern uint8_t __bootstrap_end
;
28 extern void *_binary_core_bin_start
;
29 extern long *_binary_core_bin_end
;
30 extern long _binary_core_bin_size
;
32 void kprintf(const char *format
, ...);
35 #define STR(x) _STR(x)