虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Bit-BAND

  • 只包括两个核心文件sha1.cpp及sha1.h 计算数据的sha1摘要。简单

    只包括两个核心文件sha1.cpp及sha1.h 计算数据的sha1摘要。简单,好用。 由于bit endian及little endian的原因,有些计算sha1摘要的算法计算出来的结果与正确结果有差异。此源码经过测试,与RFC里列出的测试结果匹配。

    标签: sha sha1 cpp 核心

    上传时间: 2015-04-09

    上传用户:dongqiangqiang

  • 8位大小比较器的VHDL源代码

    8位大小比较器的VHDL源代码,Magnitude Comparator VHDL description of a 4-bit magnitude comparator with expansion inputs

    标签: VHDL 8位 比较器 源代码

    上传时间: 2015-04-15

    上传用户:guanliya

  • 这是最难的一个程序了

    这是最难的一个程序了,算法是运筹学里的branch band的集装箱问题的最优动态规划解法,当年我的头都大了才实现的,绝得数学加实践的程序

    标签: 程序

    上传时间: 2015-04-22

    上传用户:731140412

  • The original NuLib has been ported to many different systems. Version 3.2.5 is functionally similar

    The original NuLib has been ported to many different systems. Version 3.2.5 is functionally similar to v3.2.4, but the source code and documentation were cleaned up by Devin Reade, making it easier to build. NuLib2 is generally superior, but NuLib does have the advantage of running under 16-bit MS-DOS and GS/OS.

    标签: functionally different original Version

    上传时间: 2014-01-10

    上传用户:liglechongchong

  • ALTERA NIOS处理器实验

    ALTERA NIOS处理器实验,QUARTUS下用VHDL编译成处理器,自动band跟踪小程序

    标签: ALTERA NIOS 处理器 实验

    上传时间: 2015-04-24

    上传用户:ayfeixiao

  • This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrup

    This firmware translates a PS/2 mouse to a USB mouse. The translator firmware is entirely interrupt driven (with the exception of sending the data via USB to the host.) An interrupt is generated when the PS/2 start bit is received, at which time the firmware will begin its receive routine. In addition to this interrupt, every 168ms a timer overflow interrupts the main program and implements one state of the mouse state machine. This state machine handles sending bytes to and translating bytes received from the PS/2 mouse automatically. All of this is done in the background while the main program runs in the foreground. The only operation that the main program implements is sending mouse data to the PC via USB.

    标签: firmware mouse translates translator

    上传时间: 2015-04-26

    上传用户:cuiyashuo

  • 可预置的8位计数器程序的主要部分分析 #include <AT89X51.H> //器件配置文件 #define uchar unsigned char //变量类型的宏定义

    可预置的8位计数器程序的主要部分分析 #include <AT89X51.H> //器件配置文件 #define uchar unsigned char //变量类型的宏定义 #define uint unsigned int uchar code SEG7[10]={0x03,0x9f,0x25,0x0d,0x99, //0~9的数码管段码 0x49,0x41,0x1f,0x01,0x09} uchar data cnt[8] //在data区定义8位长度的数组,用来存放计数值 uchar data pre_cnt[8] //在data区定义8位长度的数组,用来存放预置值 sbit drv=P3^4 //定义输出驱动端 bit set_flag //定义工作标志 bit out_flag //定义输出标志 bit keydown_flag //键按下标志

    标签: unsigned include define uchar

    上传时间: 2015-04-29

    上传用户:changeboy

  • to show the waveform of audio file and play it on computer Purpose: Familiar with WAV file format a

    to show the waveform of audio file and play it on computer Purpose: Familiar with WAV file format and UI design It should have the following functions: Provide a Graphic User Interface for user to browse the file system and select one WAV file Show the waveform of input audio signal Play the selected WAV file Print the parameters of WAV file such as sampling rate, bit-depth, etc

    标签: file Familiar computer waveform

    上传时间: 2015-05-07

    上传用户:l254587896

  • Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to w

    Although there has been a lot of AVL tree libraries available now, nearly all of them are meant to work in the random access memory(RAM). Some of them do provide some mechanism for dumping the whole tree into a file and loading it back to the memory in order to make data in that tree persistent. It serves well when there s just small amount of data. When the tree is somewhat bigger, the dumping/loading process could take a lengthy time and makes your mission-critical program less efficient. How about an AVL tree that can directly use the disk for data storage ? If there s something like that, we won t need to read through the whole tree in order to pick up just a little bit imformation(a node), but read only the sectors that are neccssary for locating a certain node and the sectors in which that node lies. This is my initial motivation for writing a storage-media independent AVL Tree. However, as you step forth, you would find that it not only works fine with disks but also fine with memorys, too.

    标签: available libraries Although nearly

    上传时间: 2014-01-22

    上传用户:zhoujunzhen

  • graspForth is my humble attempt at a Forth-in-C that has the following goals: GCC ......... to su

    graspForth is my humble attempt at a Forth-in-C that has the following goals: GCC ......... to support all 32-bit micros that GCC cross-compiles to. Relocatable . to be able to run in-place in either Flash or Ram. Fast ........ to be "not much" slower than an assembly based native Forth. Small ....... to fit-in approx 300 words in less than 25Kbytes on a 32-bit machine. Portable .... to achieve a 5 minute port to a new 32bit micro-processor, or micro-controller.

    标签: graspForth Forth-in-C following attempt

    上传时间: 2015-05-23

    上传用户:tfyt