Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 SystemC 中实现模数 12 计数器?我是图书馆的新手,对它没有太多经验。请帮忙。
好吧,您只需对其进行编码,没有什么特别的帮助。像这样的东西...
sc_uint<4> counter; sc_uint<4> increment(){ counter++; if(counter >=12){ counter =0; } return (counter); }
如果你能避免没有 2 个东西的力量,事情会好很多。