Diff for /np2/np2tool/PWOFF.ASM between versions 1.1 and 1.3

version 1.1, 2004/01/31 11:39:30 version 1.3, 2004/06/10 04:49:48
Line 1 Line 1
   
 .model small          ORG             100h
 .186          USE16
           CPU             8086
   
 CODE    SEGMENT  %include        'np2tool.inc'
                 ASSUME CS:CODE,DS:nothing,ES:nothing,SS:nothing  
                 ORG 0100H  
   
 include np2tool.inc  
   
 START:                  cld  START:                  cld
                                 push    cs                                  push    cs
Line 19  START:   cld Line 16  START:   cld
                                 int             21h                                  int             21h
   
 err_nonnp2:             mov             ah, 9  err_nonnp2:             mov             ah, 9
                                 mov             dx, offset illegal                                  mov             dx, str_illegal
                                 int             21h                                  int             21h
                                 mov             ah, 9                                  mov             ah, 9
                                 mov             dx, bx                                  mov             dx, bx
                                 int             21h                                  int             21h
                                 mov             ah, 9                                  mov             ah, 9
                                 mov             dx, offset crlf                                  mov             dx, str_crlf
                                 int             21h                                  int             21h
                                 mov             ax, 4c01h                                  mov             ax, 4c01h
                                 int             21h                                  int             21h
   
   
 include np2tool.x86  %include        'np2tool.x86'
                         db      8, 'poweroff'                          db      8, 'poweroff'
   
   
 illegal         db      'Illegal hardware - $'  str_illegal     db      'Illegal hardware - $'
 crlf            db      0dh, 0ah, '$'  str_crlf        db      0dh, 0ah, '$'
   
 CODE    ENDS          ends
         END START  
   

Removed from v.1.1  
changed lines
  Added in v.1.3


RetroPC.NET-CVS <cvs@retropc.net>