From 85eccf265066cec33a8adaacc92c29c02f9412af Mon Sep 17 00:00:00 2001 From: Max P Date: Sat, 16 Mar 2024 14:48:07 +0100 Subject: [PATCH] Clarify 'Set' priority in documentation --- README.md | 2 +- src/GenericCounter.vhd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a176d1..4448ef2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Generic Counter with the following features: - Look ahead value (configurable per generic) - Synchronous reset - Clock enable -- Set with priority over the `CountEnable` +- `Set` with priority over the `CountEnable` - Over- and Underflow flag - Configurable width - Configurable initial value diff --git a/src/GenericCounter.vhd b/src/GenericCounter.vhd index c47c769..96bf05d 100644 --- a/src/GenericCounter.vhd +++ b/src/GenericCounter.vhd @@ -9,7 +9,7 @@ --@ - Look ahead value (configurable per generic) --@ - Synchronous reset --@ - Clock enable ---@ - Set with priority over the `CountEnable` +--@ - `Set` with priority over the `CountEnable` --@ - Over- and Underflow flag --@ - Configurable width --@ - Configurable initial value