home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / SOURCE.ZIP / ASM106.ZIP / BOOT.ASM < prev    next >
Assembly Source File  |  1995-08-15  |  647b  |  20 lines

  1. ; +------------------------------------------------------------+ ;
  2. ; | Sample bootsector program for use with the Magic Assembler | ;
  3. ; +------------------------------------------------------------+ ;
  4.         mov     ax,07c0
  5.         mov     ds,ax
  6.         xor     bx,bx
  7.         mov     ah,0e
  8.         mov     si,offset(string)
  9. @1      lodsb
  10.         cmp     al,00
  11.         je      @2
  12.         int     10
  13.         jmps    @1
  14. @2      xor     ah,ah
  15.         int     16
  16.         callf   ffff:0000
  17.  
  18. string  db      'Sorry, this disk is not bootable.' 0a 0d 
  19.         db      'Please insert another disk and press any key to reboot.' 0a 0d 00
  20.