
! This file defines the file pattern for PKX files.
!
Source 		= 3
     
File_Pattern	=
   Header	= 0		! 0 bytes of header information
   Data		= 1		! 1 image expected
   Trailer	= 0		! 0 no trailer information

Image_Pattern	= 
   Header	= 0		! The internal header is the first packet
   Data		= -1		! Unknown number of packets
   Trailer	= 0		! No trailer for each image

Packet_Pattern	= 
   Header	= 0		! No packet synch data
   Data		= -1		! Unknown number of segments
   Trailer	= 0		! Packets don't have trailing synch

Segment_Pattern	= 
   Header	= 0		! 6 bytes of synch for each segment
   Data		= 122		! 122 bytes of data in each segment
   Trailer	= 0		! no trailing synch 

Instr_position	= 1		! Location of the instrument code

!--------------------------------------------------------------------------
! This section contains the bytes from the beginning of the file which
! uniquely identify the file as a PKX file.

Byte  	= 0
Compare = EQ
Value	= 58		! = 0x3A Mission ID

Byte	= 17
Compare = EQ
Value	= 0		! Spare must be zero
