代码搜索结果
找到约 10,000 项符合
V 的代码
disp.v
//
// decoder for 7 led display
//
module disp (in, out);
input [7:0] in;
output [13:0] out;
reg [13:0] out;
always @(in)
begin
case (in[7:4])
4'h0: out[13:7] = 7'b1110111;
lcm.v
//write by ppkliu 2003.05.11
//module lcm(clkorg,r1,r2,LCD_RS,LCD_RW,LCD_EN,LCD_DB);
module lcm(clkorg,restart,LCD_RS,LCD_RW,LCD_EN,LCD_DB);
output [7:0] LCD_DB;
output LCD_RW,LCD_RS,LCD_EN;
diag.v
//;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
// ;;
// ICDIY - 开放矽智财 ;;
//
serial.v
//;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
// ;;
// ICDIY - 开放矽智财 ;;
//
comparator.v
// 实验名称 : 四位比较器
// 程序名称 : comparator.v
// 日 期 : 2001/2/20
//*********************************************************
// 定义模块(module)
//******************
adder.v
// 实验名称 : 加法器
// 程序名称 : adder.v
// 日 期 : 2001/2/20
//*********************************************************
// 定义模块(module)
//***********************
decoder.v
//实验名称 : 解码器实验
//程序名称 : decoder.v 主程序
//日期 : 2002/2/20
//*********************************************************
// 定义模组(module)
//********************
timescale.v
`timescale 1ns / 10ps
v.pm
package V;
use Getopt::Std 'getopts';
getopts('vp:d:');
require Exporter;
@ISA = 'Exporter';
@EXPORT = qw( dprofpp $opt_v $results $expected report @results );
@EXPORT_OK = qw( notok ok $num );
$n
dummy.v
module dummy(
clk,
reset_n,
address,
read,
readdata,
write,
byteenable,
writedata,
waitrequest
);
input clk;
input reset_n;
input [31:0] readdata;
input waitrequest;
outpu