home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / basic / library / qb_pds / dos / bdisk / bootloc.asm < prev    next >
Encoding:
Assembly Source File  |  1987-12-09  |  272 b   |  15 lines

  1.         PUBLIC bootsoff, bootsseg
  2.         .MODEL medium
  3.         .DATA
  4.         EXTRN _bootsec:BYTE
  5.         .CODE
  6. bootsoff PROC
  7.         mov ax, OFFSET _bootsec
  8.         ret
  9. bootsoff ENDP
  10. bootsseg PROC
  11.         mov ax, @DATA
  12.         ret
  13. bootsseg ENDP
  14.         END
  15.