; BBCEconet Checking code
; Slayer - a desktop anti-virus for RISC OS
; Copyright (C) 1996 - 2000 Kiwi Software (UK)
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
; any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, write to the Free Software
; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
;
; info@kiwisoft.co.uk
; -------------------------------------------------------------------------


; created by Rob (4/10/98)

;look for the filesize-headerword =5284

			funcName "bbceconet_check"

.bbceconet_check	ldr	r0,bufferTopOfFile_16
			sub	r1,r0,#&8000
			sub	r2,filelength,r1
			teq	r2,#5284
			movne	pc,r14	;not bbceconet back to other checks

			ldr	r0,bufferTopOfFile_12
;			mov	r1,#&E1A0F000	;mov pc,r0
;			teq	r0,r1
			; doing this generates one less instruction
			teq	r0, #&E1A0F000
			movne	pc,r14	;not bbceconet backto other checks

 			mov	r0,#bbceconet
 			ldmfd	r13!,{pc}	;found virus: unstack and
 						;return to caller



