|
Last change
on this file since 78 was
78,
checked in by rosiere, 18 years ago
|
|
Add :
- Execute_loop (must be test systemC)
- Prediction
- Direction : predifined scheme
- Branch Target Buffer
- iFetch_unit
- ifetch_queue
- pc management
- Decod_unit
- coming soon : support for custom operation
- Rename_unit
- RAT
- Free_list
- Dependence RAW check
- Load store unit pointer
- New Environnement (hierarchy_memory will remove in a next version)
Modif :
- Manage Custom Operation
- All component in execute_loop to use the new statistics management
Not Finish :
- Return Address Stack
- Environnement
|
|
File size:
738 bytes
|
| Line | |
|---|
| 1 | # common definition |
|---|
| 2 | DIRECTORY_SRC = ./src |
|---|
| 3 | DIRECTORY_C = $(DIRECTORY_SRC)/c |
|---|
| 4 | DIRECTORY_ASM = $(DIRECTORY_SRC)/asm |
|---|
| 5 | DIRECTORY_SYS = $(DIRECTORY_SRC)/sys |
|---|
| 6 | DIRECTORY_INCLUDE = $(DIRECTORY_C)/include |
|---|
| 7 | DIRECTORY_LDSCRIPT = $(DIRECTORY_SRC)/ldscript/ |
|---|
| 8 | |
|---|
| 9 | INCLUDE = -I$(DIRECTORY_INCLUDE) |
|---|
| 10 | LIBRARY = |
|---|
| 11 | |
|---|
| 12 | #-----[ Files ]------------------------------------------------------------------- |
|---|
| 13 | OBJECTS_ASM = $(patsubst $(DIRECTORY_ASM)/%.s,$(DIRECTORY_OBJ)/%.o,$(wildcard $(DIRECTORY_ASM)/*.s)) |
|---|
| 14 | OBJECTS_SYS = $(patsubst $(DIRECTORY_SYS)/%.s,$(DIRECTORY_OBJ)/%.o,$(wildcard $(DIRECTORY_SYS)/*.s)) |
|---|
| 15 | OBJECTS_C = $(patsubst $(DIRECTORY_C)/%.c,$(DIRECTORY_OBJ)/%.o,$(wildcard $(DIRECTORY_C)/*.c)) |
|---|
| 16 | |
|---|
| 17 | include ../Makefile.Software |
|---|
| 18 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.