Skip to content

Commit de7edf0

Browse files
Merge pull request #90 from the-snowwhite/de0_Cramps
a clean Bugfix only,
2 parents dcacaab + e402287 commit de7edf0

File tree

5 files changed

+239
-69
lines changed

5 files changed

+239
-69
lines changed

HW/QuartusProjects/Common/top_io_modules.sv

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ module top_io_modules
1313

1414
// Output Ports
1515
output [KEY_WIDTH-1:0] button_out,
16-
output hps_cold_reset,
17-
output hps_warm_reset,
18-
output hps_debug_reset,
16+
// output hps_cold_reset,
17+
// output hps_warm_reset,
18+
// output hps_debug_reset,
1919
output LED
2020
);
2121

22-
wire [2:0] hps_reset_req;
22+
// wire [2:0] hps_reset_req;
2323

2424
// Debounce logic to clean out glitches within 1ms
2525
debounce debounce_inst (
@@ -38,7 +38,7 @@ hps_reset hps_reset_inst (
3838
.source_clk (clk),
3939
.source (hps_reset_req)
4040
);
41-
41+
/*
4242
altera_edge_detector pulse_cold_reset (
4343
.clk (clk),
4444
.rst_n (reset_n),
@@ -68,7 +68,7 @@ altera_edge_detector pulse_debug_reset (
6868
defparam pulse_debug_reset.PULSE_EXT = 32;
6969
defparam pulse_debug_reset.EDGE_TYPE = 1;
7070
defparam pulse_debug_reset.IGNORE_RST_WHILE_BUSY = 1;
71-
71+
*/
7272
led_blinker led_blinker_inst
7373
(
7474
.clk(clk) , // input clk_sig

0 commit comments

Comments
 (0)