blob: b3947f84bda8778c98cc33bdd7a91ee723ce5663 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#include <stdlib.h>
#include <iostream>
#include <verilated.h>
#include <verilated_vcd_c.h>
#include "Valu.h"
#include "aluOp.h"
#define OP SRA
#define OPSTR "SRA"
#define SIGN "SRA"
#define LOWER -10
#define UPPER 0
vluint64_t sim_time = 0;
int main(int argc, char** argv, char** env) {
Valu *dut = new Valu;
Verilated::traceEverOn(true);
VerilatedVcdC *m_trace = new VerilatedVcdC;
dut->trace(m_trace, 5);
m_trace->open("waveform.vcd");
dut->op = OP;
for (dut->in1 = LOWER; (int) dut->in1 < UPPER; dut->in1++) {
for (dut->in2 = 0; (int) dut->in2 < 10; dut->in2++) {
dut->eval();
std::cout << OPSTR << ": " << (int) dut->in1 << " " << SIGN << " " << (int) dut->in2 << " = " << (int) dut->out << "\n";
sim_time++;
m_trace->dump(sim_time);
}
}
for (dut->in1 = 1; (int) dut->in1 < 10; dut->in1++) {
for (dut->in2 = 0; (int) dut->in2 < 10; dut->in2++) {
dut->eval();
std::cout << OPSTR << ": " << dut->in1 << " " << SIGN << " " << dut->in2 << " = " << dut->out << "\n";
sim_time++;
m_trace->dump(sim_time);
}
}
m_trace->close();
delete dut;
exit(EXIT_SUCCESS);
}
|