| Last change
                  on this file since 115 was
                  111,
                  checked in by rosiere, 17 years ago | 
        
          | 
1) Decod_queue : multi implementation (one_fifo, multi_fifo)2) Issue_queue : multi implementation (in_order, out_of_order)
 3) Direction : Add Meta predictor
 4) Context_State : re add Branch_complete, More priority to Load miss  (is not speculative)
 5) Return_Address_Stack : update reg_PREDICT pointer on decod miss prediction
 6) UPT : Fix bug in multi event
 7) Prediction_glue : in read_stack case, insert in UPT pc_next
 8) Rename select : when rob have an event (need flush), read_r{a,b,c} and write_r{d,e} is set at 0
 
 | 
        
          | 
              
                  Property svn:keywords set to
                  Id | 
        | File size:
            747 bytes | 
      
      
        
  | Rev | Line |  | 
|---|
| [111] | 1 | # | 
|---|
|  | 2 | # $Id: Makefile 111 2009-02-27 18:37:40Z rosiere $ | 
|---|
|  | 3 | # | 
|---|
|  | 4 | # [ Description ] | 
|---|
|  | 5 | # | 
|---|
|  | 6 | # Makefile | 
|---|
|  | 7 | # | 
|---|
|  | 8 |  | 
|---|
|  | 9 |  | 
|---|
|  | 10 | # common definition | 
|---|
|  | 11 | DIR_SOFT                        = ../.. | 
|---|
|  | 12 |  | 
|---|
|  | 13 | DIR_SRC                         = ./src | 
|---|
|  | 14 | DIR_C                           = $(DIR_SRC)/c | 
|---|
|  | 15 | DIR_ASM                         = $(DIR_SRC)/asm | 
|---|
|  | 16 | DIR_SYS                         = $(DIR_SRC)/sys | 
|---|
|  | 17 | DIR_INC                         = $(DIR_SRC)/include | 
|---|
|  | 18 | DIR_LDSCRIPT                    = $(NEWLIB)/lib/ | 
|---|
|  | 19 |  | 
|---|
|  | 20 | INCDIR                          = $(NEWLIB_INCDIR) -I$(DIR_INC) | 
|---|
|  | 21 | LIBDIR                          = $(NEWLIB_LIBDIR) | 
|---|
|  | 22 | LIBNAME                         = $(NEWLIB_LIBNAME) | 
|---|
|  | 23 |  | 
|---|
|  | 24 | #-----[ Files ]------------------------------------------------------------------- | 
|---|
|  | 25 | OBJECTS                         =       $(NEWLIB)/lib/*.o \ | 
|---|
|  | 26 | $(patsubst $(DIR_ASM)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_ASM)/*.s))    \ | 
|---|
|  | 27 | $(patsubst $(DIR_SYS)/%.s,$(DIR_OBJ)/%.o,$(wildcard $(DIR_SYS)/*.s))    \ | 
|---|
|  | 28 | $(patsubst $(DIR_C)/%.c,$(DIR_OBJ)/%.o,$(wildcard $(DIR_C)/*.c)) | 
|---|
|  | 29 |  | 
|---|
|  | 30 | include                         $(DIR_SOFT)/Makefile.Software | 
|---|
|  | 31 |  | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.