mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 17:22:23 +00:00
77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
#include <cassert>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <optional>
|
|
|
|
#include <cxxrtl/cxxrtl_vcd.h>
|
|
#include <newproject.h>
|
|
|
|
static cxxrtl_design::p_newproject top;
|
|
static cxxrtl::vcd_writer vcd;
|
|
static uint64_t vcd_time = 0;
|
|
|
|
static void step() {
|
|
top.p_clk.set(true);
|
|
top.step();
|
|
vcd.sample(vcd_time++);
|
|
top.p_clk.set(false);
|
|
top.step();
|
|
vcd.sample(vcd_time++);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
std::optional<std::string> vcd_out = std::nullopt;
|
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
if (strcmp(argv[i], "--vcd") == 0 && argc >= (i + 2)) {
|
|
vcd_out = std::string(argv[++i]);
|
|
} else {
|
|
std::cerr << "unknown argument \"" << argv[i] << "\"" << std::endl;
|
|
return 2;
|
|
}
|
|
}
|
|
|
|
if (vcd_out.has_value()) {
|
|
debug_items di;
|
|
top.debug_info(&di, nullptr, "top ");
|
|
vcd.add(di);
|
|
}
|
|
|
|
top.p_rst.set(true);
|
|
step();
|
|
|
|
top.p_rst.set(false);
|
|
|
|
// ledr should be low or high according to 'expected', where each element
|
|
// represents 1/4th of a second. ledg should always be high.
|
|
//
|
|
// This mirrors test_blinks in Python.
|
|
int rc = 0;
|
|
bool done = false;
|
|
|
|
std::vector<int> expected = {0, 1, 1, 0, 0, 1, 1, 0};
|
|
for (std::vector<int>::size_type i = 0; i < expected.size() && !done; ++i) {
|
|
for (int j = 0; j < (CLOCK_HZ / 4); ++j) {
|
|
if (top.p_ledr.get<int>() != expected[i]) {
|
|
std::cerr << "unexpected ledr at i(" << i << "), j(" << j << ")"
|
|
<< std::endl;
|
|
rc = 1;
|
|
done = true;
|
|
break;
|
|
}
|
|
assert(top.p_ledg);
|
|
|
|
step();
|
|
}
|
|
}
|
|
|
|
std::cout << "finished on cycle " << (vcd_time >> 1) << std::endl;
|
|
|
|
if (vcd_out.has_value()) {
|
|
std::ofstream of(*vcd_out);
|
|
of << vcd.buffer;
|
|
}
|
|
|
|
return rc;
|
|
}
|