搜索资源列表
Go2
- DOS死机客星,能打破程序死循环,按住Ctrl +Esc即可使死掉的程序立即返回到Dos She-DOS crashed off satellite, to break cycle of death procedures, press Ctrl Esc will die so the procedure to return immediately to Dos She
ZLG500C_1.0
- 周立功id读头程序 需要解压缩密码 希望高受破解或提供-first time procedures needed to extract the passwords we hope by break or
labbomb
- 二进制炸弹实验。可以构建一个实验平台,学生通过反汇编或gdb调试破解生成的二进制目标文件。老师通过在线统计可知道学生实验进度。-experimental binary bomb. Can build an experimental platform, a compilation of students passed the anti-gdb debugging or break the formation of binary target file. Teachers through onlin
int79h
- 编写一个自定义INT 79H的中断服务程序-prepared an INT 79H from the definition of a break in service procedures
BREAKER1
- This a game for code breaker and maker. This code is for code breaker which will output the 4 digits number automatically to break the code.-This is a game for code breaker and maker. This code is for code breaker which will output the 4 digits numbe
maker2
- This the code maker and breaker program. The code is the maker where it has 4 hidden digits number for the breaker to break. It has 10 chances to break the code.-This is the code maker and breaker program. The code is the maker where it has 4 hidden
How-to-break-the-2K-limit-of-Keil
- 如何突破Keil软件未注册情况下的2K限制,非常实用-How to break the Keil software is not registered under the 2K limit, very practical
COM8123(Interrupt)
- 这是一个COM8123以中断方式工作的实用程序,用51汇编编写,完全调试通过,加上详细注释发给大家。要使用COM8125,只要稍加改动就可以了。-This is a way to break COM8123 utility work, the compilation of the preparation of 51 fully debug through, together with detailed notes distributed to Members. To use the COM812
sfac
- 采用逆波兰式表示运算表达式,运算对象只接受两类:效数和十进制无符整效数-Using Reverse Polish Notation, said operation expressions, operands accept only two categories: efficiency without break the whole number and decimal number effect
interrupt
- 对于系统级语言设计之一的中断程序设计包括软中断和硬中断。后者设计到硬件端口的读写操作等等,应该用汇编实现比较好。而前者用C实现就要方便得多的了。-For system-level language design, one of the interrupt program design including soft and hard break interrupt. The latter design to the hardware port to read and write operation
clockzhongduan
- 时钟中断历程 可以下下来参考一下 很不错的程序 适合于汇编初学者参考-Process can break down the clock, under the procedures refer to very good reference for beginners compilation
Aexp14
- 中断控制器8259应用实验-中断方式控制彩灯点亮 * 中断方式控制彩灯点亮程序source file * 运行步骤:1.将PC4和IRQ10两个跳接开关分别联上 * 2.按下1次SW3,申请1次中断,使LED灯点亮1次-Interrupt Controller 8259 application test- interrupt control the lights lit* Interrupt control the lantern lit program source file
8259
- 8259A可编程中断控制器实验 单片的 pc机中断控制器8259A的地址为20H、21H。编程时要根据中断类型型号设置中断矢量,8259中断屏蔽寄存器IMR对应位要清零(允许中断),中断服务结束返回前要使用中断结束命令: MOV AL,20H OUT 20H,AL 中断结束返回dos时应将IMR对应位置1,以关闭中断。 -8259A programmable interrupt controller chip in the pc test machine interrupt
dnfwaiguayuanma
- 由于我的C用的比较少,所以大部分都用的汇编,部分地方用汇编写不是很方便,所以我用的C,由于只是学习,所以内核地址我没有计算都是硬编码的。过DNF主要分为三步,也许我的思路不太正确,反正可以OD调试,下断。 程序没怎么修边幅,因为只是测试,所以一般都没有写更改内核后的恢复,不过不妨碍使用。 -C because of my less used, so most of its assembly, part of the local assembly is not very easy to w
EcoTCP
- IPROM - TCP/IP for BBC/Master Computers over Econet =================================================== Author: Philip Blundell - Version: 0.14 - 16-Apr-1996 iprom/src - Philip Blundell s original ADE+ source code. This must be assembl
INTERPUT
- 8259中断 用命令提示符调用asm文件执行后在按键时产生中断,出现一个符号,10次后中断返回-8259 calls interrupt asm file with the command prompt after the implementation of an interrupt at time of press, the emergence of a symbol, after the break to return 10 times
82538259
- 8255C口输出,用8253中断,使其中断一秒后继续输出-output with 8255(C), break off with 8253 for 1 second,then countine to output
break-delay-int
- 中断-delay-int-清屏 等一些汇编中断指令 接口 汇编可用-int 10-21 break
SoftModalMessageBox
- 低级,底层的消息框。 反汇编,逆向,破解等。 为了下载而上传此代码。-Low-level, the underlying message box. Disassemble, reverse, break, etc. In order to download and upload the code.
142
- 求两个整数的最大公约数和最小公倍数,并编写主函数调用这两个子函数,输出结果,两个整数由键盘输入。-#include<iostream> using namespace std int x(int a,int b) //x为求最大公约数的函数 { int t=0 if(a>b)t=b else t=a for(int i=t i>=1 i--)if(a i==0&&b i==0)break return i