-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.rs
55 lines (54 loc) · 1.68 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! Modules ported from `bsg_dataflow`.
pub mod bsg_1_to_n_tagged;
pub mod bsg_1_to_n_tagged_fifo;
pub mod bsg_1_to_n_tagged_fifo_shared;
pub mod bsg_8b10b_decode_comb;
pub mod bsg_8b10b_encode_comb;
pub mod bsg_8b10b_shift_decoder;
pub mod bsg_channel_tunnel;
pub mod bsg_channel_tunnel_in;
pub mod bsg_channel_tunnel_out;
pub mod bsg_channel_tunnel_wormhole;
pub mod bsg_compare_and_swap;
pub mod bsg_credit_to_token;
pub mod bsg_fifo_1r1w_large;
pub mod bsg_fifo_1r1w_large_banked;
pub mod bsg_fifo_1r1w_narrowed;
pub mod bsg_fifo_1r1w_pseudo_large;
pub mod bsg_fifo_1r1w_small;
pub mod bsg_fifo_1r1w_small_credit_on_input;
pub mod bsg_fifo_1r1w_small_hardened;
pub mod bsg_fifo_1r1w_small_unhardened;
pub mod bsg_fifo_1rw_large;
pub mod bsg_fifo_bypass;
pub mod bsg_fifo_reorder;
pub mod bsg_fifo_shift_datapath;
pub mod bsg_fifo_tracker;
pub mod bsg_flatten_2d_array;
pub mod bsg_flow_convert;
pub mod bsg_flow_counter;
pub mod bsg_make_2d_array;
pub mod bsg_one_fifo;
pub mod bsg_parallel_in_serial_out;
pub mod bsg_parallel_in_serial_out_dynamic;
pub mod bsg_parallel_in_serial_out_passthrough;
pub mod bsg_permute_box;
pub mod bsg_ready_to_credit_flow_converter;
pub mod bsg_relay_fifo;
pub mod bsg_round_robin_1_to_n;
pub mod bsg_round_robin_2_to_2;
pub mod bsg_round_robin_fifo_to_fifo;
pub mod bsg_round_robin_n_to_1;
pub mod bsg_rr_f2f_input;
pub mod bsg_rr_f2f_middle;
pub mod bsg_rr_f2f_output;
pub mod bsg_sbox;
pub mod bsg_scatter_gather;
pub mod bsg_serial_in_parallel_out;
pub mod bsg_serial_in_parallel_out_dynamic;
pub mod bsg_serial_in_parallel_out_full;
pub mod bsg_serial_in_parallel_out_passthrough;
pub mod bsg_shift_reg;
pub mod bsg_sort_4;
pub mod bsg_sort_stable;
pub mod bsg_two_buncher;