You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
346 B
C
16 lines
346 B
C
#ifndef _INCLUDE_MACH_C7200_PLATFORM_H
|
|
#define _INCLUDE_MACH_C7200_PLATFORM_H
|
|
|
|
#include <types.h>
|
|
|
|
#define FLASH_BASE 0xBA000000
|
|
#define FLASHFS_BASE 0xBA040000
|
|
#define KERNEL_ENTRY_POINT 0x80008000
|
|
#define MEMORY_BASE 0x80000000
|
|
|
|
void platform_init();
|
|
uint32_t check_flash();
|
|
void flash_directory();
|
|
|
|
#endif /* _INCLUDE_MACH_C7200_PLATFORM_H */
|