bios_disk_load2.S 178 B

1234567891011121314151617
  1. /*
  2. Test loading 2 sectors instead of 1.
  3. Expected output: "ab"
  4. */
  5. #include "common.h"
  6. BEGIN
  7. CLEAR
  8. STAGE2
  9. PUTC $'a
  10. jmp sector3
  11. .org 512
  12. sector3:
  13. PUTC $'b
  14. hlt