3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00

cxxrtl: include iostream when prints are used

This commit is contained in:
Asherah Connor 2023-04-19 19:54:09 +10:00 committed by Marcelina Kościelnicka
parent cbd3ff2d3a
commit 4a475fa7a2
4 changed files with 7 additions and 5 deletions

View file

@ -1,4 +1,3 @@
#include <iostream>
#include "yosys-always_comb.cc"
int main()

View file

@ -1,4 +1,3 @@
#include <iostream>
#include "yosys-always_full.cc"
int main()

View file

@ -1,10 +1,9 @@
#include <iostream>
#include "yosys-display_lm.cc"
int main()
{
cxxrtl_design::p_top uut;
uut.step();
return 0;
uut.step();
return 0;
}