代码搜索:Decode
找到约 10,000 项符合「Decode」的源代码
代码结果 10,000
www.eeworm.com/read/348288/3157570
h decode.h
/*
decode.h: common definitions for decode functions
copyright 2007 by the mpg123 project - free software under the terms of the LGPL 2.1
see COPYING and AUTHORS files in distribution or http://mp
www.eeworm.com/read/348288/3157578
c decode.c
/*
decode.c: decoding samples...
copyright 1995-2006 by the mpg123 project - free software under the terms of the LGPL 2.1
see COPYING and AUTHORS files in distribution or http://mpg123.org
initi
www.eeworm.com/read/345073/3203600
c decode.c
/***********************************************
copyright by Haia Tech
www.haia2004.com
************************************************/
#include
//#include
#include
www.eeworm.com/read/345073/3203604
h decode.h
/***********************************************
copyright by Haia Tech
www.haia2004.com
************************************************/
#ifndef _DECODE_H_
#define _DECODE_H_
void deco
www.eeworm.com/read/343627/3218519
v decode.v
module decode (binary,one_hot);
input [3:0] binary;
output[9:0] one_hot;
reg [9:0] one_hot;
always @(binary)
begin
case (binary)
4'b0001 : one_hot = 10'b0000000001; //1
4'b0010 : on
www.eeworm.com/read/343627/3218549
v decode.v
module decode (binary,one_hot);
input [3:0] binary;
output[9:0] one_hot;
reg [9:0] one_hot;
always @(binary)
begin
case (binary)
4'b0001 : one_hot = 10'b0000000001; //1
4'b0010 : on
www.eeworm.com/read/343627/3219051
v decode.v
module decode (ONE_HOT, BINARY);
input [3:0] BINARY;
output [9:0] ONE_HOT;
reg [9:0] ONE_HOT;
always@(BINARY)
case (BINARY)
4'b0001 : ONE_HOT = 10'b0000000001; // 1
4'b0010 : ONE_HOT =