搜索资源列表
shizh
- 这个时钟程序是我在1993年编的一个小程序,现在贴出来给大家做参考,它执行后驻留内存,到整点时会报时,你可以用 Ctrl-Alt-U 把它从内存中下掉,可以用 Ctrl-Alt-C 变换颜色,用 Ctrl-Alt-O 把报时声音关掉(如果感到讨厌的话),在驻留内存时,用了直接改内存控制块的方法,所以用 MEM 或 MI 无法在内存中看到它,键盘控制用了直接截取 INT 9 的方法。 这个程序虽然很小,编译后才1K多一点点字节,但是麻雀虽小,五脏俱全,在这个程序中,你可以参考到以下编程方法
9S12DP256_Vector_Remapping
- motorola dp256 的中断向量映射表-motorola dp256 Interrupt Vector Mapping Table
中断矢量设置与读取有关的DOS功能调用
- 与中断矢量设置与读取有关的DOS功能调用,本例演示了如何编写中断服务程序,如何安装(将中断服务程序的地址设置到中断矢表中),以及如何通过软中断指令调用中断服务程序。为了突出重点,本例中中断服务程序代码未驻留内存。-and vector interrupt settings and read the DOS function calls, which in this case demonstrated how to prepare interrupted service procedures, h
xt00
- 用8086,8255,8259和8254构造系统实现对指示灯控制。 8255的PA0,PA1,PA2的三位DIP开关,通过DIP开关的闭合状态决定接在 PB口上的八个指示灯之一闪烁。如PA2,PA1,PA0为000时,PB0上所接的指 示灯闪烁,其余灯熄灭。要求闪烁频率为每秒10次。设8259地址为20H和 21H,8255地址为60H~63H,8254地址为40H~43H,时钟频率为50KHz, 8259中断向量号为70H和71H.试设计硬件连接电路,填写中断向量
Asm
- ASM的一点心得, 专题介绍! 硬盘分区表/中断向量地址-ASM that experience, presentations! Hard disk partition table/interrupt vector address ...
zhongduan_list
- 大家好,这是dos里的所有中断向量表,包括没有发布的都有,而且有非常详细的说明和简单的例子在里面-Hello everyone, this is where all the dos interrupt vector table, including those with no release of both, but also very detailed instructions and simple examples in which
BOOT
- 这是一个引导型DOS病毒,通过修改MBR和系统中断向量来实现其操作-This is a DOS boot-type virus by modifying the MBR and the system interrupt vector to achieve its operational
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
virus
- 通过简单汇编语言完成中断向量的修该,使得执行80号中断时不执行原功能,而是输出A Virus Interrupt !-Complete assembly language through a simple amendment to the interrupt vector, making the implementation of 80 does not perform the original function of interrupt, but the output of A Virus I
8259
- 8259A矢量中断方式的硬件连接和软件编程的方法。-The 8259A vector interrupt hardware connections and software programming.
myIntGate
- 通过中断门访问内核 象全局描述符表GDT一样,在整个系统中,中断描述符表IDT只有一个。中断描述符表寄存器IDTR指示IDT在内存中的位置。由于80386只识别256个中断向量号,所以IDT最大长度是2K。 中断描述符表IDT所含的描述符只能是中断门、陷阱门和任务门。也就是说,在保护模式下,80386只有通过中断门、陷阱门或任务门才能转移到对应的中断或异常处理程序。 -By interrupt doors to access the kernel Like the Glo
8254-count-application-experiments
- 8254计数应用实验 INTR对应的中断矢量地址 显示的字符串-8254 count application experiments the INTR corresponding interrupt vector address displayed string
clock
- 1、取原来的中断向量,保存并且设置新的中断向量; 2、在设置光标的位置,然后读取系统时间,保存数据; 3、用了2个子函数分别实现输出时间和符号‘:’; 4、设置驻留区的大小,然后结束并驻留内存。 -1, take the original interrupt vector, saved and set a new interrupt vector 2, set the cursor position, and then reads the system time, save t
install-INT21H
- 安裝中斷程式INT21H,save old interrupt vector,install interrupt vector 40H-Installation interrupt program INT21H
Handling interrupts
- 内中断,汇编程序处理0号除法溢出中断的程序,设置中断向量表,保存中断处理程序。(Internal interrupt, assembler processing division 0 overflow interrupt program, set interrupt vector table, save interrupt processing program.)