commit | 1d329c439f5584ce948152a969df7360426b83ed | [log] [tgz] |
---|---|---|
author | Rupert Swarbrick <rswarbrick@lowrisc.org> | Wed Dec 09 14:02:34 2020 +0000 |
committer | Rupert Swarbrick <rswarbrick@gmail.com> | Wed Dec 09 17:31:29 2020 +0000 |
tree | 443f9b3e4e1480f5d78f02af0809795cfe51dfd5 | |
parent | 36f5a51889a2e667b5c754064f87813258f600a6 [diff] |
Change VerilatorSimCtrl::Exec to handle --help properly If a verilator-based toplevel wants to do some post-simulation checking or reporting, it needs to know whether VerilatorSimCtrl::Exec actually ran the simulation or not. Before this patch, it could do so by replicating the contents of the Exec method. This patch changes the prototype of the Exec method so that it reports whether the simulation actually ran or not. Use it like this: auto pr = simctrl.Exec(argc, argv); int ret_code = pr.first; bool ran_simulation = pr.second; if (ret_code != 0 || !ran_simulation) { return ret_code; } // Run post-simulation checks ... The include-order changes are to satisfy clang-format on the changed files. Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
OpenTitan is an open source silicon Root of Trust (RoT) project. OpenTitan will make the silicon RoT design and implementation more transparent, trustworthy, and secure for enterprises, platform providers, and chip manufacturers. OpenTitan is administered by lowRISC CIC as a collaborative project to produce high quality, open IP for instantiation as a full-featured product. See the OpenTitan site and OpenTitan docs for more information about the project.
This repository contains hardware, software and utilities written as part of the OpenTitan project. It is structured as monolithic repository, or “monorepo”, where all components live in one repository. It exists to enable collaboration across partners participating in the OpenTitan project.
The project contains comprehensive documentation of all IPs and tools. You can access it online at docs.opentitan.org.
Have a look at CONTRIBUTING for guidelines on how to contribute code to this repository.
Unless otherwise noted, everything in this repository is covered by the Apache License, Version 2.0 (see LICENSE for full text).