diff options
Diffstat (limited to 'examples/icezum')
| -rw-r--r-- | examples/icezum/example.v | 2 | ||||
| -rw-r--r-- | examples/icezum/icezum.pcf | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/examples/icezum/example.v b/examples/icezum/example.v index 9bdf587..1274e69 100644 --- a/examples/icezum/example.v +++ b/examples/icezum/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/icezum/icezum.pcf b/examples/icezum/icezum.pcf index 4139e7f..bafdbd9 100644 --- a/examples/icezum/icezum.pcf +++ b/examples/icezum/icezum.pcf @@ -1,9 +1,9 @@ -set_io LED0 95
-set_io LED1 96
-set_io LED2 97
-set_io LED3 98
-set_io LED4 99
-set_io LED5 101
-set_io LED6 102
-set_io LED7 104
-set_io clk 21
+set_io LED0 95 +set_io LED1 96 +set_io LED2 97 +set_io LED3 98 +set_io LED4 99 +set_io LED5 101 +set_io LED6 102 +set_io LED7 104 +set_io clk 21 |
