代码搜索结果
找到约 10,000 项符合
Display 的代码
display.c
/***************************************************************************/
/*
display.h
/***************************************************************************/
/*
display.c
/***************************************************************************/
/*
display.bdf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
display.v
//锁存器:显示单元
module display(reset,DATA_IN , DATA_OUT , CLK );
input reset, CLK ;
input [23:0] DATA_IN ;
output [23:0] DATA_OUT ;
reg [23:0] DATA_OUT_TEMP;
always @(negedge CLK or n
display.bsf
/*
WARNING: Do NOT edit the input and output ports in this file in a text
editor if you plan to continue editing the block that represents it in
the Block Editor! File corruption is VERY likely to
display.h
#include "./System.h"
#include "./Component/Include/FS/typedef.h" //使用文件系统的typedef文件,2008-8-25 PM by edu_xy
/*
There are eight categories of instructions that:
Specify the index
Read the stat
display.c
/**********************Copyright (C), 2008-2009, Aiding Digital. Co., Ltd.*****************************
文 件 名:Dislpay.c
功 能:液晶显示相关C函数
作 者:EDU
版 本:ECS-10 V01
日 期:2008-08-29 AM, edu_xy
display.vhd
library ieee;
use ieee.std_logic_1164.all;
entity DISPLAY is
port(d:in std_logic_vector(3 downto 0);
q:out std_logic_vector(6 downto 0));
end DISPLAY;
architecture disp_are of DISPLAY
display.vhd
library ieee;
use ieee.std_logic_1164.all;
entity DISPLAY is
port(d:in std_logic_vector(3 downto 0);----连接seltime扫描部分d信号
q:out std_logic_vector(6 downto 0));----输出段选信号(电平)
end DISPLAY;