搜索资源列表
BootCmos
- 龙已飞去的屠龙刀,系统关键数据/区MBR,DBR,CMOS-RAM 管理工具,适用Win9X/DOS ,开发工具BC3.1(+Turbo Vision),BIOS Int 13h-exiting the holding, the system key data / MBR District, DBR, CMOS-RAM management tools, application Win9X/DOS, development tools BC3.1 (Turbo Vision), the BI
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
特殊磁道加密源代码
- 使用的是API编程,可格式化、校验和读写特殊扇区。可用作Windows下的磁盘加密。本函数还有以下两个缺点以待改进: 1.本函数还只能读能读 A: 和 B:,即只能对软盘操作 2.不能改变磁盘扇区大小,只能是标准的 512 个字节。 参数说明: command 操作: 0 重置磁盘 2 读扇区 3 写扇区 4 校验磁道 5 格式化磁道 8 得到设备参数 (int 1EH) drive 驱动器 A:=0 B:=1 head 磁头号,范围 0 - 1 track 磁道号,范围 0 - 84 ( 80
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 地址时,这个