diff --git a/.settings/language.settings.xml b/.settings/language.settings.xml index 06154f4..1bccc59 100644 --- a/.settings/language.settings.xml +++ b/.settings/language.settings.xml @@ -4,8 +4,8 @@ - - + + @@ -18,7 +18,7 @@ - + @@ -30,7 +30,7 @@ - + @@ -43,7 +43,7 @@ - + diff --git a/examples/ahb_bfm/sc_main.cpp b/examples/ahb_bfm/sc_main.cpp index 8bc1063..ef38068 100644 --- a/examples/ahb_bfm/sc_main.cpp +++ b/examples/ahb_bfm/sc_main.cpp @@ -1,5 +1,5 @@ -#include -#include +#include +#include #include #include #include @@ -17,7 +17,7 @@ class testbench: public sc_module, public scc::traceable { public: enum { WIDTH=64}; tlm::scc::initiator_mixin> isck{"isck"}; - ahb::bfm::initiator intor{"intor"}; + ahb::pin::initiator intor{"intor"}; sc_core::sc_clock HCLK{"HCLK", 10_ns}; sc_core::sc_signal HRESETn{"HRESETn"}; sc_core::sc_signal> HADDR{"HADDR"}; @@ -33,7 +33,7 @@ public: sc_core::sc_signal HRESP{"HRESP"}; sc_core::sc_signal HSEL{"HSEL"}; - ahb::bfm::target target{"target"}; + ahb::pin::target target{"target"}; tlm::scc::target_mixin> tsck{"tsck"}; testbench(sc_module_name nm):sc_module(nm){ diff --git a/tests/io-redirector/main.cpp b/tests/io-redirector/main.cpp index e551e1f..ebe8e45 100644 --- a/tests/io-redirector/main.cpp +++ b/tests/io-redirector/main.cpp @@ -10,6 +10,8 @@ #include #include +using namespace util; + int main(int arcg, char* argv[]){ IoRedirector::get().start(); auto result1 = IoRedirector::get().get_output();