ysyx-workbench/npc/csrc_nvboard/main.cpp
tracer-ysyx 0458aba520
> build_npc_VKeyboard_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
  20:52:39  up 1 day 19:53,  2 users,  load average: 0.93, 0.76, 0.81
2024-01-09 20:52:39 +08:00

24 lines
No EOL
530 B
C++

#include <cstdlib>
#include <cassert>
#include <cstdlib>
#include <verilated.h>
#include <verilated_vcd_c.h>
#include <nvboard.h>
#include <VKeyboard.h>
const int MAX_SIM_TIME=100;
void nvboard_bind_all_pins(VKeyboard* top);
int main(int argc, char **argv, char **env) {
VKeyboard *top = new VKeyboard;
nvboard_bind_all_pins(top);
nvboard_init();
while (true) {
nvboard_update();
top->eval();
printf("%d, %d, %d", top->io_segs_0, top->io_segs_1, top->io_segs_2);
}
delete top;
}