2024-07-22 09:45:49 +00:00
|
|
|
#include <VSwitch.h>
|
2023-12-23 12:23:18 +00:00
|
|
|
#include <cassert>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <verilated.h>
|
|
|
|
#include <verilated_vcd_c.h>
|
2022-02-21 04:22:27 +00:00
|
|
|
|
2024-07-22 09:45:49 +00:00
|
|
|
const int MAX_SIM_TIME = 100;
|
2023-12-23 12:23:18 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv, char **env) {
|
2024-07-22 09:45:49 +00:00
|
|
|
int sim_time = 0;
|
|
|
|
Verilated::commandArgs(argc, argv);
|
|
|
|
VSwitch *top = new VSwitch;
|
2023-12-23 12:23:18 +00:00
|
|
|
|
2024-07-22 09:45:49 +00:00
|
|
|
Verilated::traceEverOn(true);
|
|
|
|
VerilatedVcdC *m_trace = new VerilatedVcdC;
|
2024-01-01 06:41:31 +00:00
|
|
|
#ifdef VERILATOR_TRACE
|
2024-07-22 09:45:49 +00:00
|
|
|
top->trace(m_trace, 5);
|
|
|
|
m_trace->open("waveform.vcd");
|
2024-01-01 06:41:31 +00:00
|
|
|
#endif
|
2024-07-22 09:45:49 +00:00
|
|
|
for (sim_time = 0; sim_time < MAX_SIM_TIME; sim_time++) {
|
|
|
|
top->io_sw_0 = rand() % 2;
|
|
|
|
top->io_sw_1 = rand() % 2;
|
|
|
|
top->eval();
|
|
|
|
printf("sw0 = %d, sw1 = %d, ledr = %d\n", top->io_sw_0, top->io_sw_1,
|
|
|
|
top->io_out);
|
|
|
|
assert(top->io_out == (top->io_sw_0 ^ top->io_sw_1));
|
2024-01-01 06:41:31 +00:00
|
|
|
#ifdef VERILATOR_TRACE
|
2024-07-22 09:45:49 +00:00
|
|
|
m_trace->dump(sim_time);
|
2024-01-01 06:41:31 +00:00
|
|
|
#endif
|
2024-07-22 09:45:49 +00:00
|
|
|
}
|
2024-01-01 06:41:31 +00:00
|
|
|
#ifdef VERILATOR_TRACE
|
2024-07-22 09:45:49 +00:00
|
|
|
m_trace->close();
|
2024-01-01 06:41:31 +00:00
|
|
|
#endif
|
2024-07-22 09:45:49 +00:00
|
|
|
delete top;
|
|
|
|
exit(EXIT_SUCCESS);
|
2022-02-21 04:22:27 +00:00
|
|
|
}
|