代码搜索结果
找到约 10,000 项符合
Remote Control 的代码
fifo_control.v
/**************************************************
函数名:fifo_control
功 能:实现对fifo的控制
参 数:
**************************************************/
module fifo_control(enable,
clk,
sd_control.v
/***********************************************
函数名:sd_control
功 能:实现sd卡文件读取的控制
参 数:
**********************************************/
module sd_control( enable,
sd_data,
s
fifo_control.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
sd_control.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
sd_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
control2.vhd
library ieee ;
use ieee.std_logic_1164.all ;
use ieee.std_logic_arith.all ;
use work.butter_lib.all ;
entity control_main is
port (
a_small , sign_a , sign_b : in std_logic ;
control_tp.v
`timescale 1ns/1ns
module control_tp();
reg clk1,clk2;
wire reset;
wire[2:0] i;
wire OE;
control inst_cnt(clk1,clk2,i,OE,reset);
initial
begin
clk1=1;clk2=1;
#800 $stop;
end
always #5 clk2=~clk2;