Skip to content

Commit

Permalink
keep the counter register for synthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady authored Jun 24, 2024
1 parent 3f2ca4a commit 3124ea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hdl/rtl/EF_QSPI_XIP_CTRL.v
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module FLASH_READER_QSPI #(parameter LINE_SIZE = 16)(
READ = 1'b1;

reg state, nstate;
reg [7:0] counter;
(* keep *) reg [7:0] counter;
reg [23:0] saddr;
reg [7:0] data [LINE_BYTES-1 : 0];

Expand Down Expand Up @@ -296,4 +296,4 @@ module EF_QSPI_XIP_CTRL #( parameter NUM_LINES = 16,
.douten(rst_douten)
);

endmodule
endmodule

0 comments on commit 3124ea7

Please sign in to comment.