URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
Compare Revisions
- This comparison shows the changes necessary to convert path
/openrisc/trunk/rtos/ecos-3.0/packages/hal/openrisc/orpsoc
- from Rev 791 to Rev 838
- ↔ Reverse comparison
Rev 791 → Rev 838
/current/cdl/hal_openrisc_orpsoc.cdl
161,7 → 161,8
"-g -O2 -fno-omit-frame-pointer -fno-rtti -fno-exceptions " . |
(CYGHWR_MUL_IMPLEMENTED ? "-mhard-mul " : "-msoft-mul ") . |
(CYGHWR_DIV_IMPLEMENTED ? "-mhard-div " : "-msoft-div ") . |
(CYGHWR_FPU_IMPLEMENTED ? "-mhard-float " : "-msoft-float ") } |
(CYGHWR_FPU_IMPLEMENTED ? "-mhard-float " : "-msoft-float ") . |
(CYGHWR_BRANCH_SLOT_IMPLEMENTED ? "" : "-mno-branch-delay " ) } |
description " |
This option controls the global compiler flags which |
are used to compile all packages by |
309,6 → 310,15
Select this option only if FPU is implemented." |
} |
|
cdl_option CYGHWR_BRANCH_SLOT_IMPLEMENTED { |
display "Branch slot implemented" |
flavor bool |
default_value 1 |
description " |
Select this option if your implementation of OpenRISC |
has branch slot." |
} |
|
cdl_component CYGHWR_ICACHE_IMPLEMENTED { |
display "Instruction cache implemented" |
flavor bool |