blob: 9c83afc644a09d6efd979795ab56d28904c75e9f [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
interface pwm_if (
input logic clk,
input logic rst_n,
input logic pwm
);
clocking cb @(posedge clk);
input pwm;
endclocking
endinterface : pwm_if