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 の累乗を避けることができれば、事態はずっと良くなります。