Skip to content
Snippets Groups Projects
Commit eeb4824d authored by Tomasz Wlostowski's avatar Tomasz Wlostowski
Browse files

wishbone: xwb_lm32: added missing platform/top/JTAG files

parent 7f0810a0
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,8 @@ files = [ "generated/xwb_lm32.vhd",
"src/lm32_shifter.v"];
if(target == "altera"):
files.append(["altera/jtag_tap.v"]);
files.extend(["platform/generic/lm32_multiplier.v", "platform/altera/jtag_tap.v"]);
elif (target == "xilinx"):
files.append(["platform/xilinx/lm32_multiplier.v", "platform/xilinx/jtag_tap.v"])
files.extend(["platform/xilinx/lm32_multiplier.v", "platform/xilinx/jtag_tap.v"])
else:
files.append(["platform/generic/lm32_multiplier.v"]);
files.extend(["platform/generic/lm32_multiplier.v", "platform/generic/jtag_tap.v"]);
This diff is collapsed.
module jtag_tap(
output tck,
output tdi,
input tdo,
output capture,
output shift,
output e1dr,
output update,
output reset
);
assign tck = 1;
assign tdi = 1;
assign capture = 0;
assign shift = 0;
assign e1dr = 0;
assign update = 0;
assign reset = 0;
endmodule
......@@ -26,7 +26,7 @@
// : No Change
// =============================================================================
`include "lm32_include.v"
`include "../../src/lm32_include.v"
/////////////////////////////////////////////////////
// Module interface
......
......@@ -34,7 +34,7 @@
`define LM32_INCLUDE_V
// Configuration options
`include "system_conf.v"
//`include "system_conf.v"
`ifdef TRUE
`else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment