Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - dos
Search - dos - List
dos批处理。
Update : 2012-03-08 Size : 1784218 Publisher : tankjoke@163.com

DOS源代码
Update : 2012-03-30 Size : 19629880 Publisher : bobo0841@163.com

DL : 0
一个DOS下模拟Unix下的vi的程序 -An vi in dos which simulates that in Unix
Update : 2024-05-17 Size : 102400 Publisher : 站长

DL : 0
又一个DOS下模拟vi的程序 -Another vi in dos which simulates that in Unix
Update : 2024-05-17 Size : 304128 Publisher : 站长

DL : 0
DOS下的图形界面开发包-DOS graphical interface development package
Update : 2024-05-17 Size : 190464 Publisher : 站长

DL : 0
DOS下检测IDE硬盘参数的程序-DOS examines the IDE hard disk parameter the procedure
Update : 2024-05-17 Size : 2048 Publisher : 站长

DL : 0
KeyPro加密狗模擬器 v4.20 for DOS-KeyPro encryption dog mold 鈻
Update : 2024-05-17 Size : 25600 Publisher : 站长

OtherSG125
DL : 0
DOS下的秒表程序,是个内存驻留程序-A MTERM program in DOS, simple terminal emulator
Update : 2024-05-17 Size : 12288 Publisher : 站长

DL : 0
飞虹2.0源码, DOS下仿WINDOWS界面的程序,含开发类库,有极高参考价值.作者RedSleeves-Feihong 2.0 source code, DOS interface under the imitation WINDOWS procedures, including the development of class libraries, a high reference value. RedSleeves author
Update : 2024-05-17 Size : 806912 Publisher : hlx5lm

大量Dos下的tcp程序,含有很多协议如telnet,ftp,tftp等源码-Dos under a large number of tcp procedures, contains a lot of agreement, such as telnet, ftp, tftp, such as source
Update : 2024-05-17 Size : 145408 Publisher : wzq

Otherdos
DL : 0
几个Dos下面的程序,有兴趣得可以看一看-Several Dos following procedures are interested enough to take a look at the
Update : 2024-05-17 Size : 317440 Publisher : 站长

msdos 3.30 source code
Update : 2024-05-17 Size : 984064 Publisher : 站长

DEbug 关于制作瑞星杀毒软件密钥盘的源码 MOV BX,200 ;内存基址(0面) MOV DH,00 ;磁头号00 MOV DL,00 ;驱动器号00(A盘) MOV CX,4F01 ;4F(即79)号磁道01号扇区 即(CH=4F CL=01) MOV AH,05 ;格式化磁道 MOV AL,09 ;连续读取9个扇区 INT 13 ;调用13号中断 INT 3 MOV BX,300 ;内存基址(1面) MOV DH,01 ;磁头号01 MOV DL,00 ;驱动器号00(A盘) MOV CX,4F01 ;4F(即79)号磁道01号扇区 即(CH=4F CL=01) MOV AH,05 ;格式化磁道 MOV AL,09 ;连续读取9个扇区 INT 13 ;调用13号中断 INT 20 ;返回dos 初学汇编,请各位多多指教!-Debug on the production of Rising antivirus software key source disk MOV BX, 200 memory base address (0 face) MOV DH, 00 head No. 00 MOV DL, 00 drive No. 00 (A disk) MOV CX, 4F01 4F (ie 79) of track that is on the 1st sector (CH = 4F CL = 01) MOV AH, 05 formatted track MOV AL, 09 consecutive read 9 sector INT 13 call on the 13th interruption INT 3 MOV BX, 300 memory base address (1 side) MOV DH, 01 head No. 01 MOV DL, 00 drive No. 00 (A disk) MOV CX, 4F01 4F (ie 79) of track that is on the 1st sector (CH = 4F CL = 01) MOV AH, 05 formatted track MOV AL, 09 consecutive read 9 sector INT 13 call on the 13th interrupt INT 20 return dos beginner compilation, please exhibitions!
Update : 2024-05-17 Size : 0 Publisher :

DL : 0
DOS软件EXE2BIN的C源程序代码 -DOS software EXE2BIN the C source code
Update : 2024-05-17 Size : 11264 Publisher : groupie

DL : 0
显示DOS系统环境块的C源程序-Show the DOS system environment block C source
Update : 2024-05-17 Size : 7168 Publisher : 邓振华

tcpip for dos
Update : 2024-05-17 Size : 8798208 Publisher : aiqin

DL : 0
一个DOS环境下的台球源代码,MYTC测试通过.- Under a DOS environment ping-pong source code, the MYTC test passes
Update : 2024-05-17 Size : 3072 Publisher : 陈静

DL : 0
又是个DOS的下的,时钟-a clock grogram running on DOS
Update : 2024-05-17 Size : 1024 Publisher : 陈静

Socket 编程的DOS下和Windows开发包 Microsoft TCP/IP SDK for DOS/Windows-Socket programming DOS and Windows development package Microsoft TCP/IP SDK for DOS/Windows
Update : 2024-05-17 Size : 106496 Publisher : 李永斌

DL : 0
PE可执行文件的镶入式程序的编写方法及示例(镶入式后门程序&原程序) 由于Microsoft公司的Windows系统是当前大部分个人电脑所使用的操作系统 主要包括win95,98,me,nt4,2000,xp等,而这些系统所使用的可执行文件的格式基 本上是PE结构的。这里的可执行文件的镶入式程序就是针对PE结构的可执行文件。 这里先简单说一下PE文件框架结构: DOS MZ header DOS stub//在不支持 PE文件格式的操作系统中它将简单显示一个错误提示 PE header//含了许多PE装载器用到的重要信息 Section table//每个Section的信息 Section 1 Section 2 Section 3.... 由于SectionAlignment 块对齐的原因每个Section之间都会产生很多空间, 镶入式程序的代码可以放在Section之间的空位上,比较方便的方法是把代码放在 最后一个Section的末尾,然后更改Misc.VirtualSize和SizeOfRawData这两个位 于Section table的IMAGE_SECTION_HEADER结构数组的成员。如果代码十分的长, 有时候会造成镶入的代码无法被完全加载而产生错误,这时需要更改SizeOfImage 在IMAGE_NT_HEADERS 结构中。 在不同的WINDOWS版本中api调用地址也有不同,为了解决这个问题可以更改引 入表让加载器-PE executable files embedded into the formal process of the preparation methods and examples (Insert-in procedures for the back door
Update : 2024-05-17 Size : 78848 Publisher :
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.