1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-16 08:12:53 +08:00

Update readme

This commit is contained in:
Alex Forencich 2021-08-25 23:58:33 -07:00
parent 6a030f5d5e
commit 6d70b0249e

View File

@ -121,10 +121,17 @@ count.
Wrappers can generated with `axis_mux_wrap.py`. Wrappers can generated with `axis_mux_wrap.py`.
### `axis_pipeline_fifo` module
Parametrizable register pipeline with output FIFO. LENGTH parameter
determines number of register stages. For a sufficient pipeline length and
bus width, consumes fewer resources than `axis_pipeline_register` while
providing full throughput.
### `axis_pipeline_register` module ### `axis_pipeline_register` module
Parametrizable register pipeline. LENGTH parameter determines number of Parametrizable register pipeline. LENGTH parameter determines number of
register stages. register stages (instances of `axis_register`).
### `axis_ram_switch` module ### `axis_ram_switch` module
@ -143,7 +150,8 @@ Parametrizable data width. Rate and mode are configurable at run time.
### `axis_register` module ### `axis_register` module
Datapath register with parameter to select between skid buffer, simple buffer, Datapath register with parameter to select between skid buffer, simple buffer,
and bypass. Use to improve timing for long routes. and bypass. Use to improve timing for long routes. Use `REG_TYPE` parameter
to select the type of register (bypass, simple, or skid buffer).
### `axis_srl_fifo` module ### `axis_srl_fifo` module
@ -227,6 +235,8 @@ Parametrizable priority encoder.
axis_frame_length_adjust_fifo.v : Frame length adjuster with FIFO axis_frame_length_adjust_fifo.v : Frame length adjuster with FIFO
axis_ll_bridge.v : AXI stream to LocalLink bridge axis_ll_bridge.v : AXI stream to LocalLink bridge
axis_mux.v : Multiplexer generator axis_mux.v : Multiplexer generator
axis_pipeline_fifo.v : AXI stream register pipeline with FIFO
axis_pipeline_register.v : AXI stream register pipeline
axis_ram_switch.v : AXI stream RAM switch axis_ram_switch.v : AXI stream RAM switch
axis_rate_limit.v : Fractional rate limiter axis_rate_limit.v : Fractional rate limiter
axis_register.v : AXI Stream register axis_register.v : AXI Stream register