3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00
yosys/tests/fmt/always_comb_tb.cc
Charlotte 843ad9331b cxxrtl: WIP: adjust comb display cells to only fire on change
Naming and use of statics to be possibly revised.
2023-08-11 04:46:52 +02:00

15 lines
186 B
C++

#include <iostream>
#include "yosys-always_comb.cc"
int main()
{
cxxrtl_design::p_top uut;
for (int i = 0; i < 20; ++i) {
uut.p_clk.set(!uut.p_clk);
uut.step();
}
return 0;
}