Changeset 4872160 in mainline for boot/arch/arm32/include/main.h
- Timestamp:
- 2010-05-04T10:44:55Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 568db0f
- Parents:
- bb252ca
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/include/main.h
rbb252ca r4872160 1 1 /* 2 * Copyright (c) 200 6 Martin Decky2 * Copyright (c) 2007 Michal Kebrt 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 30 29 /** @addtogroup arm32boot 31 30 * @{ 32 31 */ 33 /** @file 34 * @brief Definitions of basic types like #uintptr_t.35 */ 32 /** @file 33 * @brief Boot related declarations. 34 */ 36 35 36 #ifndef BOOT_arm32_MAIN_H 37 #define BOOT_arm32_MAIN_H 37 38 38 #ifndef BOOT_arm32_TYPES_H 39 #define BOOT_arm32_TYPES_H 39 /** Address where characters to be printed are expected. */ 40 #ifdef MACHINE_testarm 41 #define VIDEORAM_ADDRESS 0x10000000 42 #endif 40 43 44 #ifdef MACHINE_integratorcp 45 #define VIDEORAM_ADDRESS 0x16000000 46 #endif 41 47 42 #include <gentypes.h> 43 44 typedef signed char int8_t; 45 46 typedef unsigned char uint8_t; 47 typedef unsigned short uint16_t; 48 typedef unsigned int uint32_t; 49 typedef unsigned long long uint64_t; 50 51 typedef uint32_t uintptr_t; 52 typedef uint32_t unative_t; 53 48 extern void bootstrap(void); 54 49 55 50 #endif 56 51 57 58 52 /** @} 59 53 */
Note:
See TracChangeset
for help on using the changeset viewer.