************************************************************************* * * * This is file: VBD_REVISION_NUMBER.SRC Rev. 17-APR-1992 * * * * This is the Revision Number specifications. The Revision Number is * * defined in D0 Note 967. * * During the initialization part of the program the Revision Number * * is loaded into the 5th word of the Crate Header. The Revision * * Number does not change from one event to the next. It appears in * * the Crate Header of each data block sent out with this program. * * The Revision Number specifies the revision of the: VME CPU Program, * * the COMINT PROM's, the Lookup System revision, and the L1 Trigger * * hardware revision. * * * ************************************************************************* ; CRATE HEADER REVISION NUMBER ; Defined in D0 Note 967 by Philippe Laurens ALIGN 4 ; Align to Longword VMECPUREVNUM DC.B $03 ; bits 31-24 VME CPU Program Revision Number. COMINTPROMRN DC.B $02 ; bits 23-16 COMINT PROM's Revision Number. LOOKUPREVNUM DC.B $01 ; bits 15-8 Lookup System Revision Number. HARDWRREVNUM DC.B $02 ; bits 7-0 Trigger Hardware Revision Number. XDEF VMECPUREVNUM,COMINTPROMRN ; Make the Revision Numbers XDEF LOOKUPREVNUM,HARDWRREVNUM ; into Global Symbols.