代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/435572/7790202
obj key_scan.obj
XH
H 3 areas 14 global symbols
M E:\Cansum Project\I.T Mouse\I.T Mouse20040710\key_scan.asm
S flg_new_random Ref0000
S lcd_display Ref0000
S select_sound_barrier Ref0000
S cnt_point Ref0000
S c
www.eeworm.com/read/435556/7790463
bmp key_control.bmp
www.eeworm.com/read/435556/7790556
vhd key_control.vhd
------键盘控制,若按下键盘则输出keydown=1---------
library ieee;
use ieee.std_logic_1164.all;
entity key_control is
port(key:in std_logic_vector(9 downto 0);
keydown: out std_logic);
end entity key_control;
www.eeworm.com/read/435556/7790558
vwf key_control.vwf
/*
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
www.eeworm.com/read/435264/7794853
py func_key.py
#!/usr/bin/env python
# Filename: func_key.py
def func(a,b=5,c=10):
print 'a is',a,'and b is',b,'and c is',c
func(3,7)
func(25,c=24)
func(c=50,a=100)
www.eeworm.com/read/399997/7816342
vhd key_buffer.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE WORK.P_ALARM.ALL;
ENTITY KEY_BUFFER IS
PORT(KEY:IN T_DIGITAL;
CLK :IN STD_LOGIC;
RESET :IN STD_LOGIC;
NEW_TIME:OUT T
www.eeworm.com/read/299942/7819540
vhd key1.vhd
--Key1模块
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity key1 is
port(
kin:in std_logic;
kout:out std_logic_vector(1 downto 0)
);
end key1;
architec
www.eeworm.com/read/299942/7819587
sym key1.sym
www.eeworm.com/read/299887/7826312
v key_fittr.v
// key_fittr.v
// key_filter.v 按下为高电平
module filter_20ms(clk,in,out);
input clk;
input in;
output out;
reg[19:0] cnt;
reg out_r;
always @(posedge clk)
begin
if(in == 1'b0)
www.eeworm.com/read/199511/7847012