Altera_Forum
Honored Contributor
13 years agoGate level simulation of clock-less design
I implement logic designs without clocks, which are non-deterministic systems for research purposes. Do you know if Gate Level Simulation with ModelSim is suitable for clock-less designs?
For example, the following design oscillates when implemented on the FPGA. Can it be straightforwardly simulated with ModelSim Gate Level Simulation? module main(SMA_CLKOUT); output SMA_CLKOUT; wire [2:0] inv /*synthesis keep*/; assign SMA_CLKOUT = inv[0]; assign inv[0] = ~inv[2]; assign inv[1] = ~inv[0]; assign inv[2] = ~inv[1]; endmodule Thanks!