代码搜索:Decode
找到约 10,000 项符合「Decode」的源代码
代码结果 10,000
www.eeworm.com/read/18414/787076
fit decode.fit
-- MAX+plus II Compiler Fit File
-- Version 10.0 9/14/2000
-- Compiled: 11/25/2004 16:43:09
-- Copyright (C) 1988-2000 Altera Corporation
-- Any megafunction design, and
www.eeworm.com/read/18414/787083
hif decode.hif
HIF003
--
-- Copyright (C) 1988-2000 Altera Corporation
-- Any megafunction design, and related net list (encrypted or decrypted),
-- support information, device programming or simulation file, an
www.eeworm.com/read/18414/787090
pof decode.pof
www.eeworm.com/read/18414/787093
cnf decode(13).cnf
www.eeworm.com/read/18414/787104
cnf decode(9).cnf
www.eeworm.com/read/18414/787111
cnf decode(10).cnf
www.eeworm.com/read/18458/789845
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 =
www.eeworm.com/read/18458/789930
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 =
www.eeworm.com/read/18588/794977
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