代码搜索:Async
找到约 3,194 项符合「Async」的源代码
代码结果 3,194
www.eeworm.com/read/457110/7334119
v async_fifo.v
// FIFO顶层模块
module async_fifo (rdata, wfull, rempty, wdata,
wreq, wclk, wrst_n, rreq, rclk, rrst_n);
parameter DATA_WIDTH = 8; // FIFO数据位宽
parameter ADDR_WIDTH = 4; // FIFO地址位宽
output
www.eeworm.com/read/457110/7334120
v async_cmp.v
// 异步比较器
module async_cmp (aempty_n, afull_n, wptr, rptr, wrst_n);
parameter ADDR_WIDTH = 4;
parameter N = ADDR_WIDTH-1;
output aempty_n, afull_n;
input [N:0] wptr, rptr;
input wrst_n;
www.eeworm.com/read/448304/7535316
v async_transmitter.v
// RS-232 TX module
// (c) fpga4fun.com KNJN LLC - 2003, 2004, 2005, 2006
//`define DEBUG // in DEBUG mode, we output one bit per clock cycle (useful for faster simulations)
module async_tran
www.eeworm.com/read/448304/7535317
v async_receiver.v
// RS-232 RX module
// (c) fpga4fun.com KNJN LLC - 2003, 2004, 2005, 2006
module async_receiver(clk, RxD, RxD_data_ready, RxD_data, RxD_endofpacket, RxD_idle);
input clk, RxD;
output RxD_data_re
www.eeworm.com/read/445258/7597087
c async_server.c
/*server.c*/
#include
#include
#include
#include
#include
#include
#include
#include
#
www.eeworm.com/read/435917/7781065
c test_async.c
/*
** 2005 December 14
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgivene
www.eeworm.com/read/435917/7781224
test async2.test
#
# May you do good and not evil.
# May you find forgiveness for yourself and forgive others.
# May you share freely, never taking more than you give.
#
#*************************************
www.eeworm.com/read/399161/7885245
c bounce_async.c
/* bounce_async.c
* purpose animation with user control, using O_ASYNC on fd
* note set_ticker() sends SIGALRM, handler does animation
* keyboard sends SIGIO, main only calls pause()
* compile cc
www.eeworm.com/read/242863/12976760
c async_io.c
//
// This file is part of the C++ Threads library.
//
// Copyright (C) 2001 Orn E. Hansen
//
#include "io.h"
#include "signal_num.h"
#include "sig_handler.h"
#include
#include
www.eeworm.com/read/241361/13152407
c bounce_async.c
/* bounce_async.c
* purpose animation with user control, using O_ASYNC on fd
* note set_ticker() sends SIGALRM, handler does animation
* keyboard sends SIGIO, main only calls pause()
* compile cc