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

Commit

Permalink
Merge pull request #16 from veryl-lang/revert_private
Browse files Browse the repository at this point in the history
Revert binary_encoder/binary_decoder to public
  • Loading branch information
dalance authored Aug 21, 2024
2 parents d5f9c74 + e938d50 commit c95027d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.
module binary_decoder #(
pub 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.
module binary_encoder #(
pub module binary_encoder #(
/// Width of the input unary vector
param UNARY_WIDTH: u32 = 256,
/// Width of the output binary vector
Expand Down

0 comments on commit c95027d

Please sign in to comment.