无法在执行计数器时发现我的错误

时间:2016-05-26 21:11:06

标签: nand2tetris

我正在实施这个计数器。这是我的代码:

// This file is part of www.nand2tetris.org
  // and the book "The Elements of Computing Systems"
  // by Nisan and Schocken, MIT Press.
  // File name: projects/03/a/PC.hdl

  /**
   * A 16-bit counter with load and reset control bits.
   * if      (reset[t] == 1) out[t+1] = 0
   * else if (load[t] == 1)  out[t+1] = in[t]
   * else if (inc[t] == 1)   out[t+1] = out[t] + 1  (integer addition)
   * else                    out[t+1] = out[t]
   */

  CHIP PC {
      IN in[16], load, inc, reset;
      OUT out[16];
      //sel=0; a;sel=1;b
      PARTS:
      //reset
      Not16(in=true, out=resetted);
      //inc
      Inc16(in=t, out=incremented);
      //Choose input between reset and out[t]
      Mux16(a=t,b=resetted,sel=reset,out=o1);
      //Choose input between o1 and in[t](load)
      Mux16(a=o1, b=in,sel=load,out=o2);
      //Choose input between o2 and inc
      Mux16(a=o2,b=incremented, sel=inc, out=o3);
      Register(in=o3, load=load, out=t, out=out);
  }

这次测试似乎失败了:

set in -32123,
tick,
output

这是第5行,我无法找到我的错误。任何帮助表示赞赏

1 个答案:

答案 0 :(得分:0)

提示(因为这毕竟是学习练习):

您正在进行多级多路复用以生成新值,但在什么情况下您更新了注册表?

建议:

回到第2章,注意他们已经实现了Mux4Way16组件。使用它将使您的生活更轻松。

此外,您可以使用false作为输入,它将自动变为所需的宽度。因此,您不需要通过Not16运行true来获取错误[16]。