Altera_Forum
Honored Contributor
15 years agoQuartus 9.1sp2 + University SD card core
Hi,
I've been trying to build a rather basic computer for a DE1 board. This computer is basically the exact same as a DE1 basic computer but I need to add an MMU and support for the SD card. I was able to build the computer successfully and download it onto the board without support for the SD card. When I try to add the SD card componant to the SOPC building and compile, it gives me the following two errors:Error: SDcard: More than one port in SDcard:clock_sink has role reset
Error: SDcard: More than one port in SDcard:clock_sink has role reset I believe this is because the cores were built for Quartus 9.0. (the cores are the ones that you can download with the installer with the University program package from Altera) Does any one have any idea how to fix the tlc script for the SD card IP core? Here is the code that I believe is generating the error (this is in the hw.tcl file for the core)
set_interface_property avalon_slave_0 ASSOCIATED_CLOCK clock_sink
...
# |
# +-----------------------------------
# +-----------------------------------
# | connection point clock_sink
# |
add_interface clock_sink clock end
set_interface_property clock_sink ptfSchematicName ""
add_interface_port clock_sink i_reset reset Input 1
add_interface_port clock_sink i_clock clk Input 1
add_interface_port clock_sink i_reset_n reset_n Input 1 Thank you in advance for your help.