Changeset 122 for trunk/IPs/systemC/Environment
- Timestamp:
- Jun 3, 2009, 10:15:51 AM (15 years ago)
- Location:
- trunk/IPs/systemC/Environment
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/Environment/Common/include/Debug.h
r117 r122 3 3 4 4 #define DEBUG_true true 5 #define DEBUG_ENVIRONMENT true6 #define DEBUG_CACHE true7 #define DEBUG_DATA true8 #define DEBUG_ENDIANNESS true9 #define DEBUG_QUEUE true10 #define DEBUG_RAMLOCK true11 #define DEBUG_SIM2OS true12 #define DEBUG_TTY true5 #define DEBUG_ENVIRONMENT false 6 #define DEBUG_CACHE false 7 #define DEBUG_DATA false 8 #define DEBUG_ENDIANNESS false 9 #define DEBUG_QUEUE false 10 #define DEBUG_RAMLOCK false 11 #define DEBUG_SIM2OS false 12 #define DEBUG_TTY false 13 13 14 14 #define MSG_ENVIRONMENT "[ENVIRONMENT]" … … 17 17 do \ 18 18 { \ 19 fprintf(stdout,str); \ 20 } \ 19 if (DEBUG_ ## component == true ) \ 20 { \ 21 fprintf(stdout,str); \ 22 } \ 23 } \ 21 24 while(0) 22 25 -
trunk/IPs/systemC/Environment/Data/src/loadexec.c
r117 r122 102 102 bfd *exec; 103 103 static int x; 104 int i;105 104 raminfo ringo; 106 105
Note: See TracChangeset
for help on using the changeset viewer.