00001 00013 #ifndef _LA_MEM_H_ 00014 #define _LA_MEM_H_ 00015 00016 /* 00017 * INCLUDE FILES 00018 **************************************************************************************** 00019 */ 00020 #include "co_int.h" 00021 00022 /* 00023 * DEFINES 00024 **************************************************************************************** 00025 */ 00027 #define LA_MEM_WORD_COUNT 4 00028 00030 #define LA_MEM_LINE_COUNT (64 * 1024) 00031 00032 00033 /* 00034 * STRUCTS 00035 **************************************************************************************** 00036 */ 00038 struct la_mem_format 00039 { 00041 uint32_t word[LA_MEM_WORD_COUNT]; 00042 }; 00043 00045 extern struct la_mem_format la_mem_mac[LA_MEM_LINE_COUNT]; 00046 00047 #endif // _LA_SHARED_H_ 00048
1.6.1