Merge pull request #2193 from whitequark/cxxrtl-help-text

cxxrtl: update help text
This commit is contained in:
whitequark 2020-06-26 08:48:15 +00:00 committed by GitHub
commit 3840cfc016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2349,9 +2349,9 @@ struct CxxrtlBackend : public Backend {
log(" top.step();\n");
log(" while (1) {\n");
log(" /* user logic */\n");
log(" top.p_clk = value<1> {0u};\n");
log(" top.p_clk.set(false);\n");
log(" top.step();\n");
log(" top.p_clk = value<1> {1u};\n");
log(" top.p_clk.set(true);\n");
log(" top.step();\n");
log(" }\n");
log(" }\n");