Changeset 130 for trunk/Softwares/Dhrystone
- Timestamp:
- Jun 30, 2009, 2:31:46 PM (15 years ago)
- Location:
- trunk/Softwares/Dhrystone
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Softwares/Dhrystone/Makefile
r112 r130 7 7 # 8 8 9 include Makefile.defs 9 10 10 11 # common definition … … 22 23 LIBNAME = $(NEWLIB_LIBNAME) 23 24 25 FLAGS = -DDHRYSTONE_NB_RUNS=$(DHRYSTONE_NB_RUNS) 26 24 27 #-----[ Files ]------------------------------------------------------------------- 25 28 OBJECTS = $(NEWLIB)/lib/*.o \ -
trunk/Softwares/Dhrystone/src/c/main.c
r128 r130 10 10 #include "dhry21.h" 11 11 12 #ifndef DHRYSTONE_NB_RUNS 13 # error "DHRYSTONE_NB_RUNS must be defined." 14 #endif 15 12 16 int main() 13 17 { 14 dhry21( 100);18 dhry21(DHRYSTONE_NB_RUNS); 15 19 16 20 exit (0);
Note: See TracChangeset
for help on using the changeset viewer.