逻辑电路与移位寄存器?
谁能给我指出一个使用 JK 触发器的并行输入/串行输出移位寄存器的逻辑图,或者告诉我如何创建它?我找到了使用 D 类型的图表,但没有使用 JK 的图表。 任何帮助将不胜感激。
谢谢。
Could anyone point me to a logical diagram of, or show me how to create, a Parrallel In/Serial Out shift register that uses J-K Flip flops? I've found diagrams that use D types, but no J-K's.
Any help would be greatly appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已有使用 D 触发器的电路,请使用它! D 触发器只是一个 jk 触发器,在 k 输入之前有一个反相器,并且 j+k 连接在一起。
例如,将您的 jk 触发器:
将其变成 D 触发器:
将未使用的 ~Q 输出保留为浮动,您就拥有了它。
请注意,我没有绘制反相器本身,它是位于 k 输入右侧的小“O”。不要忽略这一点,否则 D 触发器将无法工作。
祝你好运。
If you already have a circuit using D-flipflops use it!. a D flipflop is just a jk-flipflop with an inverter before the k-input, and j+k wired together.
E.g take your jk flipflop:
An turn it into a D flipflop:
Leave the unused ~Q output floating and you have it.
Note that I haven't drawn the inverter itself, it's the little 'O' sitting at right at the k-input. Don't leave this one out or the D-flipflop will not work.
Good luck.