Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - BIN-H
Search - BIN-H - List
S3C4510模拟器及实例源码 安装ADS1.2之后,再安装模拟器。模拟器安装路径必须选择到ADS的bin目录,所以必须先安装ADS。安装模拟器时请仔细阅读提示文字。 模拟器安装完成后,会在桌面建立快捷图标S3C4510B_Board,运行这个快捷图标可以看到开发板的图形,在AXD启动后将可以在S3C4510B_Board上面看到效果。 模拟器安装完成后,还会建立文件夹 C:\ArmEmulate,桌面快捷图标S3C4510B_Board 就是指向这里。这个文件夹下有5个子文件夹,分别是: 1. C:\ArmEmulate\GPIO\ , 这个文件夹里是GPIO的程序例子。 2. C:\ArmEmulate\Include, 这个文件夹里只有一个头文件S3C4510B.h,包含S3C4510B寄存器的定义。 3. C:\ArmEmulate\make, 这个文件夹里是gnu 的make工具包,所有的程序都是用makefile管理的,没有工程文件。 4. C:\ArmEmulate\TIMER,这个文件夹里是TIMER的程序例子。 5. C:\ArmEmulate\UCOSIITest,这个文件夹里是UCOSII的程序例子,如果想了解UCOS的运行过程,可以使用这个例子单步运行,查看程序流程和内存,变量。 在程序例子文件夹中还有一个ads12.bat批处理文件,用于使用makefile时设置临时环境变量。 具体使用过程,请看C:\ArmEmulate\Readme.txt。 -S3C4510 simulator and examples of source installation ADS1.2, followed by the installation of simulators. Simulator installation path must choose to ADS bin directory, you must have the ADS. When installed simulator carefully reading the text. Simulator installation is completed, the speedy establishment of the desktop icon S3C4510B_Board. to run this fast icon can see the development board graphics, AXD will start in the above S3C4510B_Board see results. Simulator installation is complete, will also establish folders C : \ ArmEmulate. speedy desktop icon S3C4510B_Board refers here. This folder has five sub-folders, which are : 1. C : \ ArmEmulate \ GPIO \, the folder is GPIO example of the procedure. 2. C : \ ArmEmulate \ Include. this folder is only a first S3C4510B.h document, S3C4510B
Update : 2024-05-01 Size : 1378304 Publisher :

\Tinix: 书中所附代码 其中很多目录中除了包含源代码(*.asm, *.inc, *.c, *.h)外,还有这样一些文件: boot.bin 引导扇区(Boot Sector),可通过 FloppyWriter 写入软盘(或软盘映像)。 loader.bin LOADER,直接拷贝至软盘(或软盘映像)根目录。 kernel.bin 内核(Kernel),直接拷贝至软盘(或软盘映像)根目录。 bochsrc.bxrc Bochs 配置文件,如果系统中安装了 Bochs-2.1.1 可直接双击之运行。其它细节请见书第 2.7 节。 godbg.bat 调试时可使用此批处理文件。它假设 Bochs-2.1.1 安装在 D:\Program Files\Bochs-2.1.1\ 中。 TINIX.IMG 软盘映像。可直接通过 Bochs 或者 Virtual PC 运行。 *.com 可以在 DOS (必须为纯 DOS) 下运行的文件。 \Tools: 一些小工具 (在 VC6 下编译通过) DescParser 描述符分析器,输入描述符的值,可以得出起基址、界限、属性等信息。 ELFParser ELF 文件分析器,可以列出一个 ELF 文件的 ELF Header、 Program Header、Section Header 等信息。 FloppyWriter 用以写引导扇区,支持软盘和软盘映像。 KrnlChecker 用以检查一个 Tinix 内核加载后位置是否正确。 -\ Tinix : There are many of them attached code directory contains in addition to the source code (*. asm2.*. inc,*. c,*. h), if there are such documents : boot.bin boot (Boot Sector) written by FloppyWriter diskette (or floppy disk image). Loader.bin LOADER direct copy to a diskette (or floppy disk image) root directory. Kernel.bin kernel (Kernel), the direct copying to floppy disk (or floppy disk image) root directory. Bochsrc.bxrc Bochs configuration files, If the system installed Bochs- 2.1.1 can be directly's Double-click operation. Other details, see paragraph 2.7. Godbg.bat debugging can use this batch file. It assumes that Bochs- 2.1.1 installed on the D : \ Program Files \ Bochs- 2.1.1 \ China. TINIX.IMG floppy disk image. Bochs directly or through Virtual PC operation.*
Update : 2024-05-01 Size : 1665024 Publisher : wonge

VC和prolog联合开发的prolog的编译器.是我的毕业设计,河海大学2006届毕业生的优秀毕业设计.以下是论文的一部分: 第三章 VC++与PROLOG的接口 一.接口方案及准备工作 在这里,我所采用的接口方案是直接调用库函数.PROLOG系列语言中,有一种叫Amzi PROLOG的,提供了较完善的库函数接口.在我的毕业设计中,我所采用的是Amzi PROLOG 5.0版本所提供的库函数接口,所引用的文件为Amzi.h,amzi.dll,amzi.lib.这些文件可以通过下载并安装Amzi PROLOG 5.0而获得,具体使用方法为: 找到Amzi PROLOG 5.0所被安装的路径\bin目录下面的amzi.dll文件,并且复制到你的windows目录下,或复制到你的程序文件所在的目录. 找到Amzi PROLOG 5.0所被安装的路径\include目录下的amzi.h文件,并且复制到VC++所在文件夹的include子目录下. 找到Amzi PROLOG 5.0所被安装的路径\lib目录下的amzi.lib文件,复制到你的程序文件所在的目录. 选择VC++编译菜单中的工程,添加到工程,把文件amzi.dll添加到工程中...这是我论文中的一节,相信根据这段你已经能完整的编译连接我的源代码了,如果你想得到进一步的指导和我的完整的论文请联系韩冬09966782050-VC and prolog jointly developed by the compiler. I graduated from the design, Hehai University 2006 graduates of outstanding graduate design. Following is part of the thesis : Chapter III VC and a PROLOG interface. Interface programs and preparatory work here, I have adopted the program interface is a direct function of the call. PROLOG language series, There is a call Amzi PROLOG, provided a better interface to the library functions. I graduated in the design, I used the 5.0 version of PROLOG Amzi provided by the function interface, quoted by the paper as Amzi.h, amzi.dll. amzi.lib. These documents can be downloaded and installed Amzi PROLOG 5.0 obtains specific use : find Amzi PROLOG 5.0 to be installed in the path \ bin directory of text amzi.dll pieces, and copy it to your Windo
Update : 2024-05-01 Size : 113664 Publisher : 寒冬

linux grub 程序的windows版本 可以作为硬盘的引导程序。方便运行ghost或其他的操作系统-linux grub procedures can be used as the windows version of the boot hard drive. Facilitate the running ghost or other operating system
Update : 2024-05-01 Size : 140288 Publisher : 王杰涛

类似flashget下载工具代码 本来想在完善了上传的,但太忙了,有些功能可能没有实现或存在一些 bug. 编译运行说明 1)安装BCG 9.4把BCGCBPRO940d.dll BCGPStyle2007Luna.dll BCGPStyle2007Obsidian.dll BCGPStyle2007Silver.dll copy 到bin目录下 2)把程序里的SHELLAIP目录下的SHELLAPI.H覆盖vc安装目录下vc98/include/下 3)编译,运行。公司里下载请设置HTTP代理。 软件功能特点:多线程下载,断点序传,暂停下载,方便的目录管理,支持HTTP代理(我们公司里下高设置HTTP代码),方便的个性化设置,界面美观,占用内存小,下载速度快等等。 不足的地方:里面有些功能只做了界面,没有实现,:) 比如现在下载文件只能放在C:\MyDown\下 BT下载功能也没有做。没有仔细的测试过,可能存在一些bug. 有什么问题可以联系我 QQ:1495501
Update : 2024-05-01 Size : 429056 Publisher : 李明

DL : 0
由三星的2442修改而来,正确引导eboot,请注意用三星公版的硬件配置,具体可以参考QQ2440,因为我在些平台上跑过,具体操作 1.target settings : post-linker:选择为 ARM fromELF 2.ARM assembler与 ARM c Compiler 的 architecture or processor 选择为:ARM920T 3.ARM linker的 output:RO base为 0x00000000 (当仿真时为:0x30000000),layout的 object/sysmbol:为2440init.o section:Init 4.ARM fromELF 的 output:format:plain binary , output file name:nboot.bin 下面为全部源码,注意用ADS编译 2442addr.h 2442addr.inc 2442init.s 2442lib.c 2442lib.h 2442loader-1208.c 2442slib.h 2442slib.s Def.h k9s1208_s.s Memcfg.inc Nand.h Nand_mini.c Option.h Option.inc-By Samsung from 2442 to amend, correct guidance eboot, Please note that Samsung used the public version of the hardware configuration, can refer to specific QQ2440, because I ran in some platforms, the specific operation 1.target settings: post-linker: choice for the ARM fromELF2.ARM assembler and ARM c Compiler of the architecture or processor choices: ARM920T3.ARM linker
Update : 2024-05-01 Size : 1195008 Publisher : lzy

DL : 0
《Windows多媒体编程基础》书第五章源代码SimpleBrowse一款简单易用的图片浏览器。其他目录中都是编译时需要的库和包含文件等(Bin是调试输出)。该工程较好的演示了一个工程中个要素之间的关系,可以帮助理解.h/.lib/.dll文件各自扮演的角色
Update : 2024-05-01 Size : 2224128 Publisher : pl

=== ==== 关于本光盘 ========== \Tinix: 书中所附代码 其中很多目录中除了包含源代码(*.asm, *.inc, *.c, *.h)外,还有这样一些文件: boot.bin 引导扇区(Boot Sector),可通过 FloppyWriter 写入软盘(或软盘映像)。 loader.bin LOADER,直接拷贝至软盘(或软盘映像)根目录。 kernel.bin 内核(Kernel),直接拷贝至软盘(或软盘映像)根目录。 bochsrc.bxrc Bochs 配置文件,如果系统中安装了 Bochs-2.1.1 可直接双击之运行。其它细节请见书第 2.7 节。 godbg.bat 调试时可使用此批处理文件。它假设 Bochs-2.1.1 安装在 D:\Program Files\Bochs-2.1.1\ 中。 TINIX.IMG 软盘映像。可直接通过 Bochs 或者 Virtual PC 运行。 *.com 可以在 DOS (必须为纯 DOS) 下运行的文件。 \Tools: 一些小工具 (在 VC6 下编译通过) DescParser 描述符分析器,输入描述符的值,可以得出起基址、界限、属性等信息。 ELFParser ELF 文件分析器,可以列出一个 ELF 文件的 ELF Header、 Program Header、Section Header 等信息。 FloppyWriter 用以写引导扇区,支持软盘和软盘映像。 KrnlChecker 用以检查一个 Tinix 内核加载后位置是否正确。-err
Update : 2024-05-01 Size : 1737728 Publisher : 朱昭威

Emu Source Pioneee reciver sti55xx , emu_emm.bin, emu.c, emu.h
Update : 2024-05-01 Size : 187392 Publisher : telesat

JIDA32 DEMO for Windows 9x/NT/2000/XP/Vista/CE, Linux, VxWorks -1. Purpose: ----------- JIDA is an API that provides control over many Kontron Embedded Modules specific board features. 2. Files/Directories: --------------------- \Jida32.pdf \ReadMe.txt \inc\Jida.h \inc \src \src\JidaTst \src\JidaTst\WinCE \src\JWDogTst \src\JWDogTst\WinCE \src\JidaDemo \Win9xNT \Win9xNT\bin \Win9xNT\lib \WinCE \WinCE\bin \WinCE\lib 3. Demo Installation: --------------------- For full information please refer to JIDA32.PDF Windows 9x, Windows NT, Windows 2000, Windows XP, and Windows Vista: ----------------------------------- Run the sample JidaTst.EXE in the \Win9xNT\bin directory which will dynamically install the drivers. Under Win NT/2000/XP/Vista you need Admin rights to install the drivers for the first time. For Win 98/ME copy the jidan.sys to the windows\system32\drivers directory. The driver***MUST*** be in that directory. If had an older version installed then DO NOT load the jidav.vxd anymore. T
Update : 2024-05-01 Size : 278528 Publisher : Hunt

DL : 0
VC++网络仪表使用方法:   pdh.dll (Win32 SDK 4)Demo例程pdh目录中带有该动态链接库,将这个文件放在VC的bin 目录中。   如果在VC+6.0中使用,则要将pdh目录中的pdh.dll、pdh.h、pdh.lib ,分别放在VC 的bin、include和lib目录中,重新编译、链接。   先在Meters菜单中选择监控面板,与所要连接的机器建立连接(本地或网络),如下图示。然后在Timer菜单中选择Start,就可以进行监视了。-VC++ network devices to use: pdh.dll (Win32 SDK 4) Demo routine pdh directory with the dynamic link library, this file on VC' s bin directory. If the VC+6.0 to use, they should be pdh directory pdh.dll, pdh.h, pdh.lib, respectively, on the VC' s bin, include and lib directory, recompile and link. First menu, select Control Panel Meters, and the connection to connect the machines (local or network), as shown below. Timer menu and then select Start, you can monitor the.
Update : 2024-05-01 Size : 78848 Publisher : zs1

ARToolKit is a software library for building Augmented Reality (AR) applications. These are applications that involve the overlay of virtual imagery on the real world.
Update : 2024-05-01 Size : 792576 Publisher : nana

QQ农场外挂 VC2008源代码 农场外挂源代码 农场源代码 -//验证QQ密码 bool WebQQFunction::LoginQQ(CString qqname, CString qqmm, CString qqxym, CString outstr) { CHttpConnection*pHttpConnect = Session.GetHttpConnection("ptlogin2.qq.com") CString szFormData CHttpFile* pFile qqxym.MakeUpper() szFormData.Format("u= s&p= s&verifycode= s",qqname,GetQQmd5pass(qqmm,qqxym),qqxym) szFormData+="&aid=15000102&u1=http 3A 2F 2Fxiaoyou.qq.com 2Findex.php 3Fmod 3Dlogin&fp=&h=1&ptredirect=1&ptlang=0&from_ui=1&dumy=1" if( pHttpConnect ) { pFile = pHttpConnect->OpenRequest( CHttpConnection::HTTP_VERB_POST,"/login") } if (pFile) { // pFile->AddRequestHeaders("POST /login HTTP/1.1\n") pFile->AddRequestHeaders("Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/msword,*/*\n") pFile->AddRequestHeaders("Referer: http://ui.ptlogin2.qq.com/cgi-bin/login?appid=15000102\n")
Update : 2024-05-01 Size : 268288 Publisher : 罗俊杰

DL : 0
a program provide the convert functions between the radix64 format and the bin format,can be used in linux kernel(when used in the linux kernel,list.h need not be included)
Update : 2024-05-01 Size : 2048 Publisher : hu jun

DL : 0
./SkeAni/Src 源程序。SkeAni.cpp 和 SkeAni.h 是 SkeAni 的核心源程序。 skeani.vsh 是 Vertex Shader 源程序。其它文件是 D3D SDK 附带的 D3D 程序框架。 ./SkeAni/Prj VC6.0 项目文件。 ./SkeAni/Bin 已经编译好的 SkeAni.exe。注意要正确执行 SkeAni.exe, 模型文件 modal.saf 和 Vertex Shader 文件 skeani.vsh 必须 和 SkeAni.exe 在同一目录下。 ./SkeAni/Modal 模型文件 modal.saf。 ./SkeAni/Screenshot 演示程序抓图。如果无法正确运行演示程序,可以参考演示抓图。-./SkeAni/Src source. SkeAni.cpp and SkeAni.h is SkeAni the core source. skeani.vsh is Vertex Shader source. Other files are included with D3D D3D SDK application framework. ./SkeAni/Prj VC6.0 project files. ./SkeAni/Bin has been compiled SkeAni.exe. Note To properly perform SkeAni.exe, and Vertex Shader model file modal.saf file skeani.vsh must SkeAni.exe in the same directory. ./SkeAni/Modal model file modal.saf. ./SkeAni/Screenshot capture demonstration program. If you can not properly run the demo program, refer to the presentation capture.
Update : 2024-05-01 Size : 294912 Publisher : l

SCMDOSC
DL : 0
DOS-C version 1.0 Beta 2 for PC/XT/AT/AT386/AT486 免费的 DOS 操作系统及完全的源代码,可用于工业控制,嵌入系统等,不需要支付额外的费用。兼容 MS-DOS Directory Structure ------------------- dos-c root directory +-----dist holds image of distribution disk +-----doc documentation directory +-----hdr common *.h files +-----lib LIBM.LIB and DEVICE.LIB +-----src source directories for: +--------+-----boot boot.bin +--------+-----command COMMAND.COM and HELP.EXE +--------+-----drivers DEVICE.LIB +--------+-----fs common kernel and ipl fs manage files +--------+-----ipl IPL.SYS +--------+-----kernel KERNEL.EXE +--------+-----misc miscellaneous files for kernel and ipl +--------+-----tmp +--------+-----utils SYS.EXE-his diskette contains DOS-C version 1.0 Beta 2 for PC/XT/AT/AT386/AT486 computers. This is the December 6, 1998 release in an ongoing project. There is a companion book, "The FreeDOS Kernel" (ISBN: 0-87930-436-7) published by R&D Books, an imprint of Miller Freeman of Lawrence, Kansas (USA) and distributed in the USA and Canada by Publishers Group West.
Update : 2024-05-01 Size : 614400 Publisher : king

DL : 0
计算和匹配图像的三维直方图,h=getPatchHist(img,weight,nbins),nbins为每一个通道上bin的个数,如[8 8 8] -caculate and match the 3d histogram of an image
Update : 2024-05-01 Size : 2048 Publisher : 刘莹

DL : 0
算法仿真:论文《Image Inpaiting by Patch Propagation Using Patch Sparsity》中提出的图像修复算法的; 1)使用了OpenCV2.2.0开源机器视觉库,IDE为VS2010 2)设置系统环境变量OPENCV_DIR为OpenCV的安装路径,如C:\OpenCV2.2;VS2010属性页文件依赖于此环境变量,在Path中添加C:\OpenCV2.2\bin,更具体的环境配置可以查看OpenCV相关手册设置属性页文件或Email:zhenjia.dou@gmail.com 3)编译后为dll,导出函数可以查看文件Patch_Sparsity.h -The algorithms proposed in the paper《Image Inpaiting by Patch Propagation Using Patch Sparsity》
Update : 2024-05-01 Size : 15360 Publisher :

DL : 0
论文《Region Filling and Object Removal by Exemplar-Based Image Inpainting》中提出的图像修复算法 1)使用了OpenCV2.2.0和VS2010,设置系统环境变量OPENCV_DIR为OpenCV的安装路径,如C:\OpenCV2.2,在path中添加环境变量C:\OpenCV2.2\bin,可以根据OpenCV提供的用户手册设置属性页文件 2)生产dll,具体的函数可以查看文件Classic_Exemplar.h 3)如有问题请联系zhenjia.dou@gmail.com-The algorithms proposed in 《Region Filling and Object Removal by Exemplar-Based Image Inpainting》
Update : 2024-05-01 Size : 12288 Publisher :

DL : 0
,论文《Image Completion Using Efficient Belief Propagation Via Priority Scheduling and Dynamic Pruning》中提出的图像修复算法 1)使用了OpenCV2.2.0和VS2010,设置系统观景变量OPENCV_DIR为OpenCV的安装路径,如C:\OpenCV2.2,在path中添加环境变量C:\OpenCV2.2\bin 2)生产dll,具体的函数可以查看文件MRF_Based.h 3)如有问题请联系zhenjia.dou@gmail.com-The algorithms proposed in the papar<Image Completion Using Efficient Belief Propagation Via Priority Scheduling and Dynamic Pruning>
Update : 2024-05-01 Size : 15360 Publisher :
« 1 2 34 5 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.