Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/nmigen
base: 3b303c333445
Choose a base ref
...
head repository: m-labs/nmigen
compare: 6beba3a48b71
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jun 12, 2019

  1. hdl.ast: add name_suffix=".." option to Signal.like().

    This simplifies creation of related signals with nice names during
    metaprogramming, e.g.
    
      def make_ff(m, sig):
          sig_ff = Signal.like(sig, name_suffix="_ff")
          m.d.sync += sig_ff.eq(sig)
          return sig_ff
    whitequark committed Jun 12, 2019
    Configuration menu
    Copy the full SHA
    e52b15d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6beba3a View commit details
    Browse the repository at this point in the history