代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/370389/9602579
qsf encode.qsf
# 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
www.eeworm.com/read/370389/9602580
cdf encode.cdf
/* Quartus II Version 5.0 Build 148 04/26/2005 SJ Full Version */
JedecChain;
FileRevision(JESD32A);
DefaultMfr(6E);
P ActionCode(Cfg)
Device PartName(EP1C3T144) Path("") File("encode.sof"
www.eeworm.com/read/370389/9602602
v encode.v
/*
优先编码器,由拨码键盘输入,结果由数码管显示
*/
module encode(a,c,en);
input[8:1] a;
output[7:0] c;
reg[7:0] c;
output[7:0] en;
reg[3:0] c_tmp;
integer i;
assign en=8'b11111110;
always@(a)
begin
www.eeworm.com/read/370389/9602603
pof encode.pof
www.eeworm.com/read/370389/9602607
qpf encode.qpf
# 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
www.eeworm.com/read/370389/9602611
hif encode.hif
Version 5.0 Build 148 04/26/2005 SJ Full Version
33
1689
OFF
OFF
OFF
OFF
OFF
FV_OFF
VRSM_ON
VHSM_ON
0
# entity
encode
# logic_option {
AUTO_RAM_RECOGNITION
ON
}
# case_sensitive
# s
www.eeworm.com/read/370389/9602621
psp encode.psp
www.eeworm.com/read/368322/9701647
cpp encode.cpp
#include "stdafx.h"
#include "encode.h"
#define ENCODE_BUFFER_SIZE 256
static char _encode_table[] = {
'\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
'\010',
www.eeworm.com/read/368322/9701940
h encode.h
#ifndef _ENCODE_H_
#define _ENCODE_H_
#ifdef __cplusplus
extern "C" {
#endif
const char * map_encode(const char * dat);
const char * map_decode(const char * dat);
const char * hex_encod