在SystemC中实现mod 12计数器

时间:2013-04-28 20:18:37

标签: counter systemc

如何在SystemC中实现模数12计数器?我是图书馆的新手,没有多少经验。请帮忙。

1 个答案:

答案 0 :(得分:0)

嗯,你只需要编码就没有什么特别的帮助了。像这样......

sc_uint<4> counter;

sc_uint<4> increment(){
  counter++;
  if(counter >=12){
    counter =0;
  }
  return (counter);
}

如果你能避免没有任何2种力量,事情会好很多。