I implemented two modules in the SystemC-AMS: A and B.
The time step of A module is 1s, while the time step of B is 60s.
I use set_rate(60) function to read the output from A as the input of B, but I also want input of A(1s time step) can read the output of B(60s time step).
Since I cannot set_rate(1/60), is there any solution?
Thanks a lot.