Line 107... |
Line 107... |
|
|
target_stem = $(notdir $(basename $@))
|
target_stem = $(notdir $(basename $@))
|
|
|
mem_start_address = $($(target_stem)_START)
|
mem_start_address = $($(target_stem)_START)
|
mem_end_address = $($(target_stem)_END)
|
mem_end_address = $($(target_stem)_END)
|
|
mem_span = $($(target_stem)_SPAN)
|
mem_width = $($(target_stem)_WIDTH)
|
mem_width = $($(target_stem)_WIDTH)
|
mem_endianness = $($(target_stem)_ENDIANNESS)
|
mem_endianness = $($(target_stem)_ENDIANNESS)
|
mem_create_lanes = $($(target_stem)_CREATE_LANES)
|
mem_create_lanes = $($(target_stem)_CREATE_LANES)
|
|
|
mem_pad_flag = $($(target_stem)_PAD_FLAG)
|
mem_pad_flag = $($(target_stem)_PAD_FLAG)
|
Line 142... |
Line 143... |
# makefile is associated with.
|
# makefile is associated with.
|
# TYPE: BSP_MEMINIT_MAKEFILE
|
# TYPE: BSP_MEMINIT_MAKEFILE
|
|
|
# This following VERSION comment indicates the version of the tool used to
|
# This following VERSION comment indicates the version of the tool used to
|
# generate this makefile. A makefile variable is provided for VERSION as well.
|
# generate this makefile. A makefile variable is provided for VERSION as well.
|
# ACDS_VERSION: 13.1
|
# ACDS_VERSION: 14.0
|
ACDS_VERSION := 13.1
|
ACDS_VERSION := 14.0
|
|
|
# This following BUILD_NUMBER comment indicates the build number of the tool
|
# This following BUILD_NUMBER comment indicates the build number of the tool
|
# used to generate this makefile.
|
# used to generate this makefile.
|
# BUILD_NUMBER: 162
|
# BUILD_NUMBER: 200
|
|
|
# Optimize for simulation
|
# Optimize for simulation
|
SIM_OPTIMIZE ?= 0
|
SIM_OPTIMIZE ?= 0
|
|
|
# The CPU reset address as needed by elf2flash
|
# The CPU reset address as needed by elf2flash
|
Line 171... |
Line 172... |
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_0).dat
|
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_0).dat
|
SYM_FILES += $(HDL_SIM_DIR)/$(MEM_0).sym
|
SYM_FILES += $(HDL_SIM_DIR)/$(MEM_0).sym
|
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_0).sym
|
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_0).sym
|
$(MEM_0)_START := 0x00010000
|
$(MEM_0)_START := 0x00010000
|
$(MEM_0)_END := 0x00017fff
|
$(MEM_0)_END := 0x00017fff
|
|
$(MEM_0)_SPAN := 0x00008000
|
$(MEM_0)_HIERARCHICAL_PATH := onchip_for_nios2
|
$(MEM_0)_HIERARCHICAL_PATH := onchip_for_nios2
|
$(MEM_0)_WIDTH := 32
|
$(MEM_0)_WIDTH := 32
|
$(MEM_0)_ENDIANNESS := --little-endian-mem
|
$(MEM_0)_ENDIANNESS := --little-endian-mem
|
$(MEM_0)_CREATE_LANES := 0
|
$(MEM_0)_CREATE_LANES := 0
|
|
|
Line 188... |
Line 190... |
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_1).dat
|
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_1).dat
|
SYM_FILES += $(HDL_SIM_DIR)/$(MEM_1).sym
|
SYM_FILES += $(HDL_SIM_DIR)/$(MEM_1).sym
|
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_1).sym
|
HDL_SIM_INSTALL_FILES += $(HDL_SIM_INSTALL_DIR)/$(MEM_1).sym
|
$(MEM_1)_START := 0x08000000
|
$(MEM_1)_START := 0x08000000
|
$(MEM_1)_END := 0x0fffffff
|
$(MEM_1)_END := 0x0fffffff
|
|
$(MEM_1)_SPAN := 0x08000000
|
$(MEM_1)_HIERARCHICAL_PATH := sdram
|
$(MEM_1)_HIERARCHICAL_PATH := sdram
|
$(MEM_1)_WIDTH := 32
|
$(MEM_1)_WIDTH := 32
|
$(MEM_1)_ENDIANNESS := --little-endian-mem
|
$(MEM_1)_ENDIANNESS := --little-endian-mem
|
$(MEM_1)_CREATE_LANES := 0
|
$(MEM_1)_CREATE_LANES := 0
|
|
|