代码搜索结果
找到约 10,000 项符合
V 的代码
timinggenerator.v
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 14:13:05 09/11/06
// Design Name:
// Mo
alphablending.v
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 13:44:22 09/15/06
// Design Name:
// Mo
syncprocessor.v
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 15:03:18 09/06/06
// Design Name:
// Mo
statemachine.v
`timescale 1ns / 1ps
////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 16:48:06 09/13/06
// Design Name:
// Mo
regfile.v
module regfile(clk,reset,regwr,in_address,radata,rbdata,wdata);
parameter n=256,m=8,l=4;
input clk,reset,regwr,in_address,radata,rbdata;
output wdata;
wire [m-1:0] radata,rbdata;
wire [3*l-1:0] i
alu.v
module alu(out,a,b,g,n,clk,ALUFN);
parameter m=8;
input a,b,g,n,clk,ALUFN;
wire [m:0] a,b,g;
wire [m-1:0] n;
wire [1:0] ALUFN;
output out;
reg [m-1:0] out;
reg t[m:0][m:0];
reg z[m:0][m:0]
pc.v
module pc(clk,reset,ia)
input clk,reset;
output ia;
reg [4:0] ia;
always @(reset) //difference between DFF and D-latch
begin
if(reset==0)
ia
12864.v
/*LCD12864显示程序
此程序控制LCD12864液晶屏,IC为KS0108或兼容型号
图形文件获取方法:
在字模提取<mark>V</mark>21软件中 ,导入一幅128*64黑白图像.
* 参数设置:
* 参数设置->其它选项,选择纵向取模,勾上字节倒序,保留逗号,
* 取模方式为C51。
将生成的数组通过keilc等C编译软件,在编译软件中新建一工程,写入源程序如下:
uns ...
newlcd.v
/*LCD12864显示程序
此程序控制LCD12864液晶屏,IC为KS0108或兼容型号
图形文件获取方法:
在字模提取<mark>V</mark>21软件中 ,导入一幅128*64黑白图像.
* 参数设置:
* 参数设置->其它选项,选择纵向取模,勾上字节倒序,保留逗号,
* 取模方式为C51。
将生成的数组通过keilc等C编译软件,在编译软件中新建一工程,写入源程序如下:
uns ...
lcd.v
module lcd(clk,rst,lcd_e,lcd_rw,lcd_rs,data);
input clk,rst;
output lcd_e,lcd_rw,lcd_rs;
output [7:0] data;
reg lcd_rw,lcd_rs;
reg [7:0] datain;
reg [7:0] data;
reg [10:0] state;
re