代码搜索结果
找到约 2,241 项符合
Keypad 的代码
keyscan.v
module keypad(keyval,y,x,clk);
output [4:0] keyval; //返回的键值
output [3:0] x; //输出,列坐标
input [3:0] y; //输入,行坐标
input clk; //时钟源
reg [4:0] keyval;
initkeypad.c
#ifndef lint
static char sccsid[] = "@(#)initkeypad.c 1.1 92/07/30 SMI"; /* from S5R2 1.1 */
#endif
#include "curses.ext"
#ifdef KEYPAD
static struct map *_addone();
/*
* Make up the needed array
keyscan.v
module keypad(keyval,y,x,clk);
output [4:0] keyval; //返回的键值
output [3:0] x; //输出,列坐标
input [3:0] y; //输入,行坐标
input clk; //时钟源
reg [4:0] keyval;
100vhdl+
library ieee;
use ieee.std_logic_1164.all;
use work.p_alarm.all;
entity tb_decoder is
end tb_decoder;
architecture tb of tb_decoder is
component decoder
port(keypad:in std_logic
100vhdl+
library ieee;
use ieee.std_logic_1164.all;
use work.p_alarm.all;
entity tb_decoder is
end tb_decoder;
architecture tb of tb_decoder is
component decoder
port(keypad:in std_logic
69_tb_decoder.vhd
library ieee;
use ieee.std_logic_1164.all;
use work.p_alarm.all;
entity tb_decoder is
end tb_decoder;
architecture tb of tb_decoder is
component decoder
port(keypad:in std_logic
69_tb_decoder.vhd
library ieee;
use ieee.std_logic_1164.all;
use work.p_alarm.all;
entity tb_decoder is
end tb_decoder;
architecture tb of tb_decoder is
component decoder
port(keypad:in std_logic
69_tb_decoder.vhd
library ieee;
use ieee.std_logic_1164.all;
use work.p_alarm.all;
entity tb_decoder is
end tb_decoder;
architecture tb of tb_decoder is
component decoder
port(keypad:in std_logic
69_tb_decoder.vhd
library ieee;
use ieee.std_logic_1164.all;
use work.p_alarm.all;
entity tb_decoder is
end tb_decoder;
architecture tb of tb_decoder is
component decoder
port(keypad:in std_logic
key_scan.txt
module keypad(keyval,y,x,clk);
output [4:0] keyval; //返回的键值
output [3:0] x; //输出,列坐标
input [3:0] y; //输入,行坐标
input clk; //时钟源
reg [4:0] keyval;