Changeset de7663f in mainline for boot/arch/mips32
- Timestamp:
- 2007-06-13T18:39:31Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 341140c
- Parents:
- c03ee1c
- Location:
- boot/arch/mips32/loader
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/mips32/loader/asm.h
rc03ee1c rde7663f 27 27 */ 28 28 29 #ifndef __ASM_H__30 #define __ASM_H__29 #ifndef BOOT_mips32_ASM_H_ 30 #define BOOT_mips32_ASM_H_ 31 31 32 32 #define PAGE_SIZE 16384 33 33 #define PAGE_WIDTH 14 34 34 35 #define memcpy(dst, src, cnt) 35 #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) 36 36 37 37 void jump_to_kernel(void *entry, void *bootinfo, unsigned int bootinfo_size) __attribute__((noreturn)); -
boot/arch/mips32/loader/main.h
rc03ee1c rde7663f 27 27 */ 28 28 29 #ifndef __MAIN_H__30 #define __MAIN_H__29 #ifndef BOOT_mips32_MAIN_H_ 30 #define BOOT_mips32_MAIN_H_ 31 31 32 32 /** Align to the nearest higher address. -
boot/arch/mips32/loader/msim.h
rc03ee1c rde7663f 27 27 */ 28 28 29 #ifndef __MSIM_H__30 #define __MSIM_H__29 #ifndef BOOT_mips32_MSIM_H_ 30 #define BOOT_mips32_MSIM_H_ 31 31 32 32 extern void init(void); -
boot/arch/mips32/loader/regname.h
rc03ee1c rde7663f 27 27 */ 28 28 29 #ifndef __mips32_REGNAME_H_30 #define __mips32_REGNAME_H_29 #ifndef BOOT_mips32_REGNAME_H_ 30 #define BOOT_mips32_REGNAME_H_ 31 31 32 32 #define zero 0 … … 86 86 #define eepc 30 87 87 88 89 88 #endif /* _REGNAME_H_ */ -
boot/arch/mips32/loader/types.h
rc03ee1c rde7663f 27 27 */ 28 28 29 #ifndef TYPES_H__30 #define TYPES_H__29 #ifndef BOOT_mips32_TYPES_H_ 30 #define BOOT_mips32_TYPES_H_ 31 31 32 32 #include <gentypes.h>
Note:
See TracChangeset
for help on using the changeset viewer.