您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

usbdisk.S 388B

1234567891011121314151617181920212223
  1. .text
  2. .arch i386
  3. .section ".prefix", "awx", @progbits
  4. .code16
  5. .org 0
  6. #include "mbr.S"
  7. /* Partition table: ZIP-compatible partition 4, 64 heads, 32 sectors/track */
  8. .org 446
  9. .space 16
  10. .space 16
  11. .space 16
  12. .byte 0x80, 0x01, 0x01, 0x00
  13. .byte 0xeb, 0x3f, 0x20, 0x01
  14. .long 0x00000020
  15. .long 0x00000fe0
  16. .org 510
  17. .byte 0x55, 0xaa
  18. /* Skip to start of partition */
  19. .org 32 * 512