为您找到约 49 条结果,搜索耗时:0.0023秒

用于在FPGA上反跳按钮的Verilog代码

...请下载附件。//fpga4student.com // FPGA projects, Verilog projects, VHDL projects // Verilog code for button debouncing on FPGA // debouncing module module debounce(input pb_1,clk,output pb_out); wire slow_clk; wire Q1,Q2,Q2_bar; clock_div u1(clk,slow_clk); my_dff d1(slow_clk, pb_1,Q1 ...

Verilog中的流水线MIPS处理器(第1部分)

...you want to load */ // fpga4student.com: FPGA projects, Verilog Projects, VHDL projects // Verilog project: 32-bit 5-stage Pipelined MIPS Processor in Verilog // Instruction memory module `timescale 1 ps / 100 fs module InstructionMem(instruction, address); input [31:0] address; output [31:0...

16位RISC处理器的Verilog代码

...附件。`include "Parameter.v" // fpga4student.com // FPGA projects, VHDL projects, Verilog projects // Verilog code for RISC Processor // Verilog code for Instruction Memory module Instruction_Memory(  input[15:0] pc,  output[15:0] instruction );  reg [`col - 1:0] memory...

Verilog中的流水线MIPS处理器(第3部分)

...scale 1 ps / 100 fs // fpga4student.com: FPGA projects, Verilog Projects, VHDL projects // Verilog project: 32-bit 5-stage Pipelined MIPS Processor in Verilog // Forwarding Unit module ForwardingUnit(ForwardA,ForwardB,MEM_RegWrite,WB_RegWrite,MEM_WriteRegister,WB_WriteRegister,EX_rs,EX_rt); ou...

Verilog和LogiSim中的Tic Tac Toe游戏

...timescale 1ns / 1ps // fpga4student.com: FPGA projects, Verilog projects, VHDL projects // Verilog testbench code for TIC TAC TOE GAME module tb_tic_tac_toe;  // Inputs  reg clock;  reg reset;  reg play;  reg pc;  reg [3:0] computer_position;  reg [3:0] ...

FIFO存储器的Verilog代码

...10 ps/ 10 ps  // fpga4student.com: FPga projects, Verilog projects, VHDL projects // Verilog project: Verilog code for FIFO memory // Verilog Testbench code for FIFO memory  // 2. Preprocessor Directives   `define          DELA...

Verilog中的流水线MIPS处理器(第2部分)

...scale 1 ps / 100 fs // fpga4student.com: FPGA projects, Verilog Projects, VHDL projects // Verilog project: 32-bit 5-stage Pipelined MIPS Processor in Verilog // Verilog code for ALU module alu(Output, CarryOut, zero, overflow, negative, BussA, BussB, ALUControl); output CarryOut,overflow,nega...

Verilog HDL中的延迟计时器(LS7212)

...多请下载附件。//fpga4student.com: FPga projects, Verilog projects, VHDL projects  // Verilog project: Verilog code for delay timer LS7212  module delay_timer_ls7212   (         input [7:0] wb, // weighting bits    ...

用于16位单周期MIPS处理器的Verilog代码

...多请下载附件。//fpga4student.com: FPGA projects, Verilog projects, VHDL projects // Verilog project: Verilog code for 16-bit MIPS Processor  // Verilog code for 16 bit single cycle MIPS CPU   module mips_16( input clk,reset,        &nbsp...

微信捐赠

微信扫一扫体验

立即
上传
返回
顶部