cores-swerv-el2/testbench/test_tb_top.cpp

66 lines
1.5 KiB
C++
Raw Permalink Normal View History

2020-01-23 06:22:50 +08:00
// SPDX-License-Identifier: Apache-2.0
// Copyright 2019 Western Digital Corporation or its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include <stdlib.h>
#include <iostream>
#include <utility>
#include <string>
#include "Vtb_top.h"
#include "verilated.h"
#include "verilated_vcd_c.h"
vluint64_t main_time = 0;
double sc_time_stamp () {
return main_time;
}
int main(int argc, char** argv) {
std::cout << "\nVerilatorTB: Start of sim\n" << std::endl;
Verilated::commandArgs(argc, argv);
Vtb_top* tb = new Vtb_top;
// init trace dump
2020-03-05 07:36:01 +08:00
VerilatedVcdC* tfp = NULL;
#if VM_TRACE
2020-01-23 06:22:50 +08:00
Verilated::traceEverOn(true);
2020-03-05 07:36:01 +08:00
tfp = new VerilatedVcdC;
2020-01-23 06:22:50 +08:00
tb->trace (tfp, 24);
2020-03-05 07:36:01 +08:00
tfp->open ("sim.vcd");
#endif
2020-01-23 06:22:50 +08:00
// Simulate
while(!Verilated::gotFinish()){
2020-03-05 07:36:01 +08:00
#if VM_TRACE
tfp->dump (main_time);
#endif
2020-01-23 06:22:50 +08:00
main_time += 5;
tb->core_clk = !tb->core_clk;
tb->eval();
}
2020-03-05 07:36:01 +08:00
#if VM_TRACE
tfp->close();
#endif
2020-01-23 06:22:50 +08:00
std::cout << "\nVerilatorTB: End of sim" << std::endl;
exit(EXIT_SUCCESS);
}