Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Change binary_encoder/binary_decoder to private temporary #14

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/binary_enc_dec/binary_decoder.veryl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
///
/// Converts a bit vector from a binary encoding to
/// a bit vector with a unary encoding.
pub module binary_decoder #(
module binary_decoder #(
/// Width of the input binary vector
param BIN_WIDTH: u32 = 8,
/// Width of the output unary vector
Expand Down
2 changes: 1 addition & 1 deletion src/binary_enc_dec/binary_encoder.veryl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// A binary encoder.
///
/// Transforms a unary encoded value into a binary encoding.
pub module binary_encoder #(
module binary_encoder #(
/// Width of the input unary vector
param UNARY_WIDTH: u32 = 256,
/// Width of the output binary vector
Expand Down
Loading