代码搜索:dataIn
找到约 2,888 项符合「dataIn」的源代码
代码结果 2,888
www.eeworm.com/read/291453/8417572
txt 汉明纠错吗编码器.txt
-- Hamming Encoder
-- A 4-bit Hamming Code encoder using concurrent assignments.
-- The output vector is connected to the individual parity bits using an aggregate assignment.
-- download from: w
www.eeworm.com/read/390924/8433389
txt 漢明糾錯嗎編碼器.txt
-- Hamming Encoder
-- A 4-bit Hamming Code encoder using concurrent assignments.
-- The output vector is connected to the individual parity bits using an aggregate assignment.
-- download from: w
www.eeworm.com/read/433021/8551858
vhd 汉明纠错码编码器_译码器.vhd
--Hamming Encoder
--A 4-bit Hamming Code encoder using concurrent assignments. The output vector is connected to the individual parity bits using an aggregate assignment.
ENTITY hamenc IS
PORT(datain
www.eeworm.com/read/188087/8573678
txt readme.txt
1. compile:
mpicc dwt.c -o dwt
2. run:
mpirun -np 4 dwt
3. result:
One dimensional wavelet transform's input data from file dataIn.txt
h[] : -1 0 1 2
g[] : 1 1 0 3
c[] : 1 4 2 5
www.eeworm.com/read/432089/8633599
c lcd.c
#include
#include
#define uint unsigned int
#define DISP_ON 0x3f
#define DISP_OFF 0x3e
#define COL 0x40 //列地址
#define PAGE 0xb8 //行地址
#define START_LI
www.eeworm.com/read/432089/8633714
lst lcd.lst
C51 COMPILER V7.50 LCD 04/25/2007 10:47:47 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE LCD
OBJECT MODULE PLACED IN LCD
www.eeworm.com/read/431723/8658495
bak segmain.v.bak
module segmain
(
clk,
rst,
datain,
dataout,
ledcom
);
input clk;
input rst;
input [15:0] datain;
output [3:0] dataout;
output [3:0] ledcom;
reg [3:0] led
www.eeworm.com/read/384663/8852095
v receiver_2.v
module receiver_2(clk,rst,datain,data_out_f);
input clk,rst;
input[7:0] datain;
reg[7:0] datain_1dly,datain_2dly,datain_3dly,datain_4dly,datain_5dly,datain_6dly,datain_7dly;
reg ena,vsync,hsync,hs
www.eeworm.com/read/426991/8987680
eqn ram.map.eqn
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and any o
www.eeworm.com/read/184775/9076816
txt hamming vhdl design by huangkun.txt
-- Hamming Encoder
-- A 4-bit Hamming Code encoder using concurrent assignments.
-- The output vector is connected to the individual parity bits using an aggregate assignment.
LIBRARY ieee;
US