0

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

4

1 回答 1

0

好吧,您只需对其进行编码,没有什么特别的帮助。像这样的东西...

sc_uint<4> counter;

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

如果你能避免没有 2 个东西的力量,事情会好很多。

于 2013-05-02T14:56:43.687 回答