How to change timescale in vcd generated by chisel3 iotester
问题 I already asked a similar question for chisel2 in case of C++ backend. But now I'm using The template example with iotester (peek and poke) with chisel3. With the following code (can be found on my github project page): class TapTempoUnitTester(t: TapTempo) extends PeekPokeTester(t) { private val tptmp = t def pushbutton(button: Bool) { poke(button, 0) step(1) poke(button, 1) step(10) poke(button, 0) } val tclk = 10 val tus = 1000/tclk val tms = 1000*tus val ts = 1000*tms //0 pushbutton(tptmp