1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-04-21 12:27:27 +03:00

Updating examples to Board changes, adding irq driver demo

This commit is contained in:
Carlos Camargo
2010-06-11 08:06:13 -05:00
parent c8b70e5307
commit 5041c0eb60
41 changed files with 2263 additions and 145 deletions

View File

@@ -1,5 +1,5 @@
NET clk LOC = "P38";
NET reset LOC = "P71";
NET reset LOC = "P30";
NET led LOC = "P44";
#ADDRESS BUS

View File

@@ -5,7 +5,7 @@ module blink(clk, reset, led);
reg [24:0] counter;
always @(posedge clk) begin
if (reset)
if (~reset)
counter <= {25{1'b0}};
else
counter <= counter + 1;