mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-28 17:24:11 -04:00
- Add a technology map for latches (only works with nandgate45 library at the moment) - Add a real latch-based clock gating cell - Update timing path reporting to differentiate between register and latch paths - Update summary results in README to reflect the latch-based numbers, plus add numbers for a micro-riscy-style (RV32EC) config Signed-off-by: Tom Roberts <tomroberts@lowrisc.org>
12 lines
303 B
Verilog
12 lines
303 B
Verilog
// Copyright lowRISC contributors.
|
|
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Map latch primitives to a specific cell
|
|
module $_DLATCH_P_ (input E, input D, output Q);
|
|
DLH_X1 _TECHMAP_REPLACE_ (
|
|
.G(E),
|
|
.D(D),
|
|
.Q(Q)
|
|
);
|
|
endmodule
|