Metropoli BBS
VIEWER: abort.asm MODE: TEXT (ASCII)
include qlib.inc
include process.inc

.data
  abort_msg db 'Abnormal program termination',13,10,'$'

.code
abort proc
  mov edx,offset abort_msg
  mov ah,9
  int 21h
  callp exit,3
abort endp

end

[ RETURN TO DIRECTORY ]