Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong timestep with mixed clock edge ticks within pysim #440

Closed
kruemelkeks opened this issue Jul 19, 2020 · 2 comments
Closed

Wrong timestep with mixed clock edge ticks within pysim #440

kruemelkeks opened this issue Jul 19, 2020 · 2 comments

Comments

@kruemelkeks
Copy link

Take a module with a positive and a negative sensitive clock edge and excite it with pysim. When changing from Tick('sync_neg') to Tick('sync') the expected half cycle is added, but after a consecutive Tick('sync') the simulator also only runs another half cycle instead of a full one.

This behaviour can be observed since 2efeb05.
An example reproducing the mentioned issue:

from nmigen import *
from nmigen.back.pysim import *

m = Module()
m.domains += ClockDomain('sync_neg', clk_edge='neg')
m.d.comb += ClockSignal('sync_neg').eq(ClockSignal('sync'))

a = Signal()
b = Signal()
m.d.sync += a.eq(1)
m.d.sync_neg += b.eq(1)

sim = Simulator(m)
sim.add_clock(1e-6, domain='sync')

def process():
    yield Tick('sync_neg') # <- ok
    yield Tick('sync') # <- ok
    yield Tick('sync') # <- wrong

sim.add_sync_process(process)
with sim.write_vcd("test.vcd", "test.gtkw", traces=[]):
    sim.run()
@whitequark
Copy link
Member

I believe this has been fixed in commit 58f1d4b. Please check with the latest master.

@whitequark
Copy link
Member

I've also discovered another simulator bug based on your testcase. It is fixed in commit 1321c45.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants