itgle.com

写异步D触发器的verilog module。(扬智电子笔试) module dff8(clk , reset, d, q); input clk;写异步D触发器的verilog module。(扬智电子笔试)module dff8(clk , reset, d, q);input clk;input reset;input [7:0] d;output [7:0] q;reg [7:0] q;always @ (posedge clk or posedge reset)if(reset)q <= 0;e

题目
写异步D触发器的verilog module。(扬智电子笔试) module dff8(clk , reset, d, q); input clk;

写异步D触发器的verilog module。(扬智电子笔试)

module dff8(clk , reset, d, q);

input clk;

input reset;

input [7:0] d;

output [7:0] q;

reg [7:0] q;

always @ (posedge clk or posedge reset)

if(reset)

q <= 0;

else

q <= d;

endmodule


相似考题
更多“写异步D触发器的verilog module。(扬智电子笔试) module dff8(clk , reset, d, q); input clk; 写异步D触发器的verilog module。(扬智电子笔试)module dff8(clk , reset, d, q);input clk;input reset;input [7:0] d;output [7:0] q;reg ”相关问题
  • 第1题:

    在页面中看不见的表单元素是那种?()

    A.<input type="password"></input>

    B.<input type="radio"></input>

    C.<input type="hidden"></input>

    D.<input type="reset"></input>


    参考答案:C

  • 第2题:

    试画出图题5-14所示各触发器输出Q端的波形,CLK、 A和B的波形如图所示。(设Q初始状态为0)


    答案:

  • 第3题:

    画出图题5-4所示的电平触发D触发器输出Q端的波形,输入端D与CLK的波形如图所示。(设0初始状太为0)


    答案:

  • 第4题:

    画出图题5-11所示的脉冲JK触发器输出Q端的波形,输入端J K与CLK的波形如图所示。(设Q初始状态为0)


    答案:

  • 第5题:

    试画出图题5-19所示电路中触发器输出Q1、Q2端的波形,输入端CLK的波形如图所示。(设Q初始状态为0)


    答案:

  • 第6题:

    试画出图题5-16所示触发器输出Q端的波形,CLK 的波形如图所示。(设Q初始状态为0)


    答案:

  • 第7题:

    画出图题5-8所示的JK触发器输出Q端的波形,输入端JK与CLK的波形如图示。(设Q初始状态为0)


    答案:

  • 第8题:

    试用上升沿D触发器构成异步3位二进制加法计数器,要求画出逻辑电路图,以及计数器输入时钟CLK与D触发器输出端Q2~Q0的波形图。


    答案:

  • 第9题:

    重启7600设备某块板卡的命令是()

    • A、module X poweroff
    • B、set module x off
    • C、hardware module x reset
    • D、hw-module module X reset

    正确答案:D

  • 第10题:

    8253—5每个计数器都有()引脚与外部进行联系。

    • A、WR、RD、CS
    • B、OUT、CLK、GATE
    • C、RESET、READY、CLK
    • D、A1、A0、CS

    正确答案:B

  • 第11题:

    以下Form表单元素描述,()是错的。

    • A、〈input type="password"〉表示密码框
    • B、〈input type="reset"〉表示提交按钮
    • C、〈select name="radio"〉表示单选框
    • D、〈input type="text"〉表示文本框

    正确答案:B

  • 第12题:

    在页面中看不见的表单元素是那种?()

    • A、<input type="password"></input>
    • B、<input type="radio"></input>
    • C、<input type="hidden"></input>
    • D、<input type="reset"></input>

    正确答案:C

  • 第13题:

    画出图题5-9所示的正边沿触发JK触发器输出Q端的波形,输入端J、K与CLK的波形如图所示。(设Q初始状态为0)


    答案:

  • 第14题:

    试画出图题5-15所示各触发器输出Q端的波形,CLK 的波形如图所示。(设Q初始状态为0)


    答案:

  • 第15题:

    试画出图题5-20所示电路中触发器输出Q1、Q2端的波形,CLK的波形如图所示。(设Q初始状态为0)


    答案:  

  • 第16题:

    画出图题5-10所示的JK触发器输出端Q端的波形,CLK的波形如图所示。(设Q初始状态为0)


    答案:

  • 第17题:

    画出图题5-6所示的边沿D触发器输出Q端的波形,CLK的波形如图所示。(设Q初始状态为0)


    答案:

  • 第18题:

    试画出图题5-7所示电路输出端Q1. Qo端的波形,CLK的波形如图所示。(设Q初始状态为0)


    答案:

  • 第19题:

    画出图题5-5所示的边沿触发D触发器输出端Q端的波形,输入端D与CLK的波形如图所示。(设Q初始状态为0)


    答案:

  • 第20题:

    在页面中看不见的表单元素是那种?()

    • A、<input type="password"></input> 
    • B、<input type="radio"></input>
    • C、<input type="hidden"></input> 
    • D、<input type="reset"></input>

    正确答案:C

  • 第21题:

    P,Q,R都是4bit的输入矢量,下面哪一种表达形式是正确的()

    • A、input P[3:0],Q,R;
    • B、input P,Q,R[3:0];
    • C、input P[3:0],Q[3:0],R[3:0];
    • D、input [3:0] P,[3:0]Q,[0:3]R;
    • E、input [3:0] P,Q,R;

    正确答案:E

  • 第22题:

    8254为了与外部进行联系,内部的每个计数器都有的引脚是()

    • A、WR、RD、CS
    • B、OUT、CLK、GATE
    • C、RESET、READY、CLK

    正确答案:B

  • 第23题:

    A customer has two Ethernet Switch Modules installed in an IBM BladeCenter Enterprise chassis. The modules were configured identically. The Ethernet module in bay one was inadvertenly reset to factory defaults. Which solution returns the module to the customer-specific configuration?()

    • A、Back up the configuration from Ethernet module in bay 2 and restore it to the module in Bay 1 using the switch CLI or Web interface 
    • B、Swap the modules, which will automatically resynch the settings stored in the Advanced Management Module 
    • C、Back up the configuration of the Ethernet module in bay one and restore it to the Ethernet module in bay two using the AMM 
    • D、Restore the configuration from NVRAM using the Switch Module Web interface

    正确答案:A