comparison packages/hal/arm/arch/current/include/hal_intr.h @ 115:6ed91473a1cd ecos-sw-2000-08-21

Merge from eCos master repository on 2000-08-21-22:40:54-BST
author jlarmour
date Fri, 25 Aug 2000 17:32:38 +0000
parents 95f3e12a6327
children 2e9a636d9de9
comparison
equal deleted inserted replaced
114:5ad2b71d525e 115:6ed91473a1cd
102 externC CYG_ADDRESS hal_vsr_table[CYGNUM_HAL_VSR_COUNT]; 102 externC CYG_ADDRESS hal_vsr_table[CYGNUM_HAL_VSR_COUNT];
103 103
104 // Platform setup memory size (0 if unknown by hardware) 104 // Platform setup memory size (0 if unknown by hardware)
105 externC CYG_ADDRWORD hal_dram_size; 105 externC CYG_ADDRWORD hal_dram_size;
106 106
107 #if CYGINT_HAL_ARM_MEM_REAL_REGION_TOP
108
109 externC cyg_uint8 *hal_arm_mem_real_region_top( cyg_uint8 *_regionend_ );
110
111 # define HAL_MEM_REAL_REGION_TOP( _regionend_ ) \
112 hal_arm_mem_real_region_top( _regionend_ )
113 #endif
114
107 //-------------------------------------------------------------------------- 115 //--------------------------------------------------------------------------
108 // Default ISR 116 // Default ISR
109 // The #define is used to test whether this routine exists, and to allow 117 // The #define is used to test whether this routine exists, and to allow
110 // code outside the HAL to call it. 118 // code outside the HAL to call it.
111 119