代码搜索:fifo
找到约 10,000 项符合「fifo」的源代码
代码结果 10,000
www.eeworm.com/read/151712/6959603
fifo
-- A First-in First-out Memory
-- a first-in first out memory, uses a synchronising clock
-- generics allow fifos of different sizes to be instantiated
-- download from: www.fpga.com.cn & www.pld.c
www.eeworm.com/read/225531/4794606
fifo
#!/bin/sh
# Make sure touch works on fifos without hanging.
if test "$VERBOSE" = yes; then
set -x
touch --version
fi
framework_failure=0
tmp=fifo-$$
rm -rf $tmp
mkfifo $tmp || framework_failure
www.eeworm.com/read/104056/15711079
fifo
#!/bin/sh
# Make sure touch works on fifos without hanging.
if test "$VERBOSE" = yes; then
set -x
touch --version
fi
framework_failure=0
tmp=fifo-$$
rm -rf $tmp
mkfifo $tmp || framework_failure
www.eeworm.com/read/477743/6733664
vhdl fifo2fifo.vhdl
-- Copyright © 2007 Wesley J. Landaker
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as publis
www.eeworm.com/read/392152/8360672
vhd fifo.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity Fifo is
generic(
data_width: NATURAL :=16;
addr_width: NATURAL :=3;
www.eeworm.com/read/192435/8381666
c++ fifo.c++
/* $Id: FIFO.c++,v 1.5 2005/05/30 14:52:33 tim Exp $ */
/*
* Copyright (c) 1990-1996 Sam Leffler
* Copyright (c) 1991-1996 Silicon Graphics, Inc.
* HylaFAX is a trademark of Silicon Graphics
*
*
www.eeworm.com/read/389033/8552240
v fifo.v
// Synchronous FIFO. 4 x 16 bit words.
//
module fifo (clk, rstp, din, writep, readp, dout, emptyp, fullp);
input clk;
input rstp;
input [15:0] din;
input readp;
input writep;
output [15:
www.eeworm.com/read/432029/8637032
h fifo.h
/*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Softw
www.eeworm.com/read/431747/8656919
java fifo.java
// FrontEnd Plus for JAD
// DeCompiled : fifo.class
package utils;
// Referenced classes of package utils:
// semaphore
public class fifo extends semaphore//堆栈
{
privat
www.eeworm.com/read/287512/8684610
vhd fifo.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_misc.all;
use ieee.std_logic_arith.all;
use work.ahb_funct.all;
use work.ahb_package.all;
entity fifo i