diff options
Diffstat (limited to 'examples/hx8kboard')
| -rw-r--r-- | examples/hx8kboard/example.v | 2 | ||||
| -rw-r--r-- | examples/hx8kboard/hx8kboard.pcf | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/examples/hx8kboard/example.v b/examples/hx8kboard/example.v index accbc2e..69a446f 100644 --- a/examples/hx8kboard/example.v +++ b/examples/hx8kboard/example.v @@ -16,7 +16,7 @@ module top ( reg [BITS+LOG2DELAY-1:0] counter = 0; reg [BITS-1:0] outcnt; - always@(posedge clk) begin + always @(posedge clk) begin counter <= counter + 1; outcnt <= counter >> LOG2DELAY; end diff --git a/examples/hx8kboard/hx8kboard.pcf b/examples/hx8kboard/hx8kboard.pcf index 417ca01..503eb36 100644 --- a/examples/hx8kboard/hx8kboard.pcf +++ b/examples/hx8kboard/hx8kboard.pcf @@ -1,9 +1,9 @@ -set_io LED0 B5
-set_io LED1 B4
-set_io LED2 A2
-set_io LED3 A1
-set_io LED4 C5
-set_io LED5 C4
-set_io LED6 B3
-set_io LED7 C3
-set_io clk J3
+set_io LED0 B5 +set_io LED1 B4 +set_io LED2 A2 +set_io LED3 A1 +set_io LED4 C5 +set_io LED5 C4 +set_io LED6 B3 +set_io LED7 C3 +set_io clk J3 |
