celox 0.4.1

Celox HDL Simulator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module LinearSorterWrapper #(
    param WIDTH: u32 = 16,
    param DEPTH: u32 = 8 ,
) (
    clk  : input  clock               ,
    rst  : input  reset               ,
    en   : input  logic               ,
    d_in : input  logic<WIDTH>        ,
    d_out: output logic<WIDTH> [DEPTH],
) {
    inst sorter: LinearSorter (
        clk  ,
        rst  ,
        en   ,
        d_in ,
        d_out,
    );
}