> nvboard
ysyx_22040000 李心杨 Linux calcite 6.1.69 #1-NixOS SMP PREEMPT_DYNAMIC Wed Dec 20 16:00:29 UTC 2023 x86_64 GNU/Linux 17:23:05 up 2:09, 2 users, load average: 2.15, 1.50, 1.16
This commit is contained in:
parent
5feabac34d
commit
8dfae1f22d
6 changed files with 70 additions and 40 deletions
|
@ -3,14 +3,14 @@
|
|||
#include <cstdlib>
|
||||
#include <verilated.h>
|
||||
#include <verilated_vcd_c.h>
|
||||
#include <Vexample.h>
|
||||
#include <VMain.h>
|
||||
|
||||
const int MAX_SIM_TIME=100;
|
||||
|
||||
int main(int argc, char **argv, char **env) {
|
||||
int sim_time = 0;
|
||||
Verilated::commandArgs(argc, argv);
|
||||
Vexample *top = new Vexample;
|
||||
VMain *top = new VMain;
|
||||
|
||||
Verilated::traceEverOn(true);
|
||||
VerilatedVcdC *m_trace = new VerilatedVcdC;
|
||||
|
@ -18,16 +18,16 @@ int main(int argc, char **argv, char **env) {
|
|||
top->trace(m_trace, 5);
|
||||
m_trace->open("waveform.vcd");
|
||||
#endif
|
||||
for (sim_time = 0; sim_time < MAX_SIM_TIME; sim_time++) {
|
||||
CData sw = rand() & 0b11;
|
||||
top->sw = sw;
|
||||
top->eval();
|
||||
printf("sw0 = %d, sw1 = %d, ledr = %d\n", sw & 0b1, sw >> 1, top->ledr);
|
||||
assert(top->ledr == ((sw >> 1) ^ (sw & 0b1)) );
|
||||
#ifdef VERILATOR_TRACE
|
||||
m_trace->dump(sim_time);
|
||||
#endif
|
||||
}
|
||||
// for (sim_time = 0; sim_time < MAX_SIM_TIME; sim_time++) {
|
||||
// CData sw = rand() & 0b11;
|
||||
// top->sw = sw;
|
||||
// top->eval();
|
||||
// printf("sw0 = %d, sw1 = %d, ledr = %d\n", sw & 0b1, sw >> 1, top->ledr);
|
||||
// assert(top->ledr == ((sw >> 1) ^ (sw & 0b1)) );
|
||||
// #ifdef VERILATOR_TRACE
|
||||
// m_trace->dump(sim_time);
|
||||
// #endif
|
||||
// }
|
||||
#ifdef VERILATOR_TRACE
|
||||
m_trace->close();
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue