代码搜索结果
找到约 7,641 项符合
V 的代码
cpu_test_bench.v
//Legal Notice: (C)2007 Altera Corporation. All rights reserved. Your
//use of Altera Corporation's design tools, logic functions and other
//software and tools, and its AMPP partner logic function
cpu_jtag_debug_module.v
//Legal Notice: (C)2007 Altera Corporation. All rights reserved. Your
//use of Altera Corporation's design tools, logic functions and other
//software and tools, and its AMPP partner logic function
nios.v
//megafunction wizard: %Altera SOPC Builder%
//GENERATION: STANDARD
//VERSION: WM1.0
//Legal Notice: (C)2007 Altera Corporation. All rights reserved. Your
//use of Altera Corporation's design
cpu_jtag_debug_module_wrapper.v
//Legal Notice: (C)2007 Altera Corporation. All rights reserved. Your
//use of Altera Corporation's design tools, logic functions and other
//software and tools, and its AMPP partner logic function
pll.v
// megafunction wizard: %ALTPLL%
// GENERATION: STANDARD
// VERSION: WM1.0
// MODULE: altpll
// ============================================================
// File Name: pll.v
// Megafunctio
decoder1.v
module decoder(out,in);
output [7:0] out;
input [2:0] in;
assign out=1'b1
half_adder_3.v
module half_adder(a,b,out,carry);
input a,b;
output out,carry;
xor n1(out,a,b);
and n2(carry,a,b);
endmodule
shifter.v
module shifter(in,clock,reset,out);
input in,clock,reset;
output [7:0] out;
reg [7:0] out;
always@(posedge clock)
begin
if(reset)
out=8'b0000;
else
test.v
//////////////////////////////////////////////////////////////
////////Module name :test /////////////
////////Function :used to test
frequency5x2.v
///////////////////////////////////////////////////////////////////////////////
//This module is used to change the 50Mhz frequency to 20Mhz./////////////////
//Xiaoming,Chen,31,july,2002.////////////