1
0

add STOP_COND to emulator & match vsim PRINTF_COND

This commit is contained in:
Colin Schmidt
2016-09-09 10:57:10 -07:00
committed by Andrew Waterman
parent 656aa78f7d
commit cf3c6fa277
3 changed files with 6 additions and 1 deletions

View File

@ -15,6 +15,7 @@
extern dtm_t* dtm;
static uint64_t trace_count = 0;
bool verbose;
bool done_reset;
void handle_sigterm(int sig)
{
@ -89,6 +90,7 @@ int main(int argc, char** argv)
tile->eval();
tile->reset = 0;
}
done_reset = true;
while (!dtm->done() && !tile->io_success && trace_count < max_cycles) {
tile->clk = 0;

View File

@ -6,6 +6,7 @@
#include <stdio.h>
extern bool verbose;
extern bool done_reset;
class VerilatedVcdFILE : public VerilatedVcdFile {
public: