代码搜索结果

找到约 10,000 项符合 V 的代码

addsub.v

// megafunction wizard: %LPM_ADD_SUB% // GENERATION: STANDARD // VERSION: WM1.0 // MODULE: lpm_add_sub // ============================================================ // File Name: ADDSUB.v // Megaf

delay.v

`timescale 1ns/1ns module DELAY (In, Out, clk, reset, load); input [15:0] In; output [15:0] Out; input clk, reset, load; reg [15:0] register, outbuf; always @ (posedge clk) begin if( rese

interpolater.v

module INTERPOLATER (In, Out, clk, load, reset); input [15:0] In; output [15:0] Out; input clk, load, reset; parameter N = 5; reg [15:0] buffer, outtmp; reg [7:0] count; always @ (posedge clk) begi

decoder.v

////////////////////////////////////////////////////////////////////// //// //// //// 8051 core decoder

comp.v

////////////////////////////////////////////////////////////////////// //// //// //// 8051 compare

rom.v

////////////////////////////////////////////////////////////////////// //// //// //// 8051 program rom

ram.v

////////////////////////////////////////////////////////////////////// //// //// //// 8051 data ram

divide.v

////////////////////////////////////////////////////////////////////// //// //// //// divide for 8051 Core //// //// //// //// This file is part of the 8051 cores proj

acc.v

////////////////////////////////////////////////////////////////////// //// //// //// 8051 cores acccumulator

alu.v

////////////////////////////////////////////////////////////////////// //// //// //// alu for 8051 Core //// //// //// //// This file is part of the 8051 cores project