1. Aug 04, 2023
  2. Aug 03, 2023
  3. Aug 02, 2023
  4. Jul 27, 2023
  5. Jul 25, 2023
  6. Jul 21, 2023
  7. Jul 19, 2023
    • Jack Koenig's avatar
      Add support for configurable warnings (#3414) · 8e33a68b
      Jack Koenig authored
      Warnings have been assigned unique integers to use as identifiers for
      purposes of documentation and configuration.
      
      New CLI option --warn-conf accepts a comma-separated sequence of
      <filter>:<action> pairs for customizing warnings.
      
      Supported filters are:
      * any          - matches all warnings
      * id=<integer> - matches warnings with the integer id
      * src=<glob>   - matches warnings where <glob> matches the warning
                       source file
      
      id and src filters can be combined with &.
      
      Supported actions are:
      * :s - suppress the warning
      * :w - report the warning as a warning (default behavior)
      * :e - error on the warning
      
      For example, the new Vec dynamic width matching warning can be
      suppressed for source files in src/main/scala while all other warnings
      elevated to errors with:
        --warn-conf "id=4&src=src/main/scala/**:s,any:e"
      
      The is also --warn-conf-file which works similarly to --warn-conf except
      the <filter>:<action> pairs are newline separated in a file. # is used
      for line comments.
      8e33a68b
    • Deborah Soung's avatar
      Extend constants in `probe.force` and `probe.forceInitial` methods. (#3418) · 63709909
      Deborah Soung authored
      * clean up pkg code
      
      * pad force statements
      
      * adding width known check
      
      * fixing checks and adding test case for unknown wire width force
      
      * error out on probes of unknown width
      
      * fixing check
      63709909
  8. Jul 18, 2023
  9. Jul 15, 2023
  10. Jul 14, 2023
  11. Jul 11, 2023
  12. Jul 10, 2023
  13. Jul 08, 2023
  14. Jul 07, 2023
  15. Jul 06, 2023
  16. Jul 01, 2023
    • Jared Barocsi's avatar
      SRAM API: Add multiple-clocked port API (#3383) · d79ae71e
      Jared Barocsi authored
      This PR adds new APIs for the SRAM module to instantiate a number of ports connected to individual clocks. This allows the creation of memories driven by multiple clocks, for use cases like clock domain crossover.
      d79ae71e
  17. Jun 30, 2023
  18. Jun 29, 2023
  19. Jun 28, 2023