mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-25 06:17:39 -04:00
Adds significant functionality to synthesis flow. Timing reports are generated using OpenSTA and an area report is generated. Flow supports open Nangate45 library from OpenROAD.
16 lines
356 B
Verilog
16 lines
356 B
Verilog
// Copyright lowRISC contributors.
|
|
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Dummy clock gating module without the clock gate for yosys synthesis
|
|
|
|
module prim_clock_gating (
|
|
input clk_i,
|
|
input en_i,
|
|
input test_en_i,
|
|
output clk_o
|
|
);
|
|
|
|
assign clk_o = clk_i;
|
|
|
|
endmodule
|