搜索资源列表
tool_floppy_disk_wr
- 写软盘扇区的小程序及ASM源程序,采用ASM编程,直接使用BIOS INT 13H,使用方法,wr sourcefilename 0x115600 0x3000,参数1:被写文件名,参数2:起始逻辑扇区号,参数3:写长度-sector of floppy disks to write small programs and ASM source code, using ASM programming, direct use of the BIOS INT 13H, use, wr sourcefi
read2sec
- 我自己编写的一个汇编小程序 read2sec.asm 用扩展int 13h调用读取扇区内容(C调用的汇编子程序)-I prepared a compilation of small programs used to expand read2sec.asm call int 13h read Sector (C compilation subprogram call)
扩展Int 13H调用规范
- 硬盘参数释疑 到目前为止,人们常说的硬盘参数还是古老的 CHS (Cylinder/Head/Sector)参数。那么为什么要使用这些参数,它们的意义是什么?它们的取值范围是什么?-drive parameters construction date, known as the hard drive or the old parameters CHS (Cylinder / Head / Sector) parameters. Then why should the use of these p
int13h
- BIOS int 13h功能描述,DOS下编程很值得收藏。-descr iption of the interrupt 13H.
Partition_structure
- 基本INT 13H读写磁盘扇区 一、读磁盘 MOV AX,0201H MOV BX,7C00H MOV CX,0001H MOV DX,0080H INT 13H INT 3H 二、写磁盘 MOV AX,0301H MOV BX,7C00H MOV CX,0001H MOV DX,0080H INT 13H INT 3H -Partition structure
boot4200
- U盘第一扇区引导代吗,引导16~32扇区,U盘初始化为FAT32文件系统(注意笔记可能要求INT 13H 调用时DL=81H或者82H,本机为一体机测试用的是DL=0H)-U disk first sector of the boot-generation guide 16 to 32 sectors, U disk is initialized to the FAT32 file system (note the notes may require the invocation of the
test
- 如何获取真正中断入口地址 真正的中断地址往往在远跳转的地方,在判断哪个远跳转是真正的中断地址时,不同的中断要具体判断,如跟踪 INT 13H 时,我们知道 BIOS 的段地址一般为 E000,所以一旦判断到段地址为 E000 时,就可以把这个地址保存下来作为真正 INT 13H 地址,而跟踪 INT 21H 时,INT 21H 在 DOS 的内核中,所以要先用第一个 MCB 地址的功能取出 MCB 地址,而第一个 MCB 地址之前是系统内核区,当判断到段地址小于第一个 MCB 地址时,这个