diff options
Diffstat (limited to 'CodingReadme')
-rw-r--r-- | CodingReadme | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CodingReadme b/CodingReadme index 5800e30c3..b64e79178 100644 --- a/CodingReadme +++ b/CodingReadme @@ -21,7 +21,7 @@ Here is a the C++ code for a "hello_world" Yosys command (hello.cc): struct HelloWorldPass : public Pass { HelloWorldPass() : Pass("hello_world") { } - virtual void execute(vector<string>, Design*) { + void execute(vector<string>, Design*) override { log("Hello World!\n"); } } HelloWorldPass; @@ -373,6 +373,7 @@ Finally run all tests with "make config-{clang,gcc,gcc-4.8}": cd ~yosys make clean make test + make ystests make vloghtb make install |