;;;-*- Mode: LISP; Package:system-internals ; Base: 8. -*-

;;;                           RESTRICTED RIGHTS LEGEND

;;;Use, duplication, or disclosure by the Government is subject to
;;;restrictions as set forth in subdivision (b)(3)(ii) of the Rights in
;;;Technical Data and Computer Software clause at 52.227-7013.
;;;
;;;                     TEXAS INSTRUMENTS INCORPORATED.
;;;                              P.O. BOX 2909
;;;                           AUSTIN, TEXAS 78769
;;;                                 MS 2151
;;;
;;; Copyright (C) 1985, Texas Instruments Incorporated. All rights reserved.

;;;
;;; Defsystem for NVRAM, which includes routines for setting up (and changing) 
;;; NVRAM format, writing crash record information, and analyzing crash records.
;;; First integrated into Explorer system 4/85 in Experimental J (some minimal
;;; support in Experimental I).  -ab
;;;


;;; Build notes:
;;; These modules all depend on templates from QDEV, so that must be compiled
;;; and loaded before us.

(DEFSYSTEM NVRAM
  (:NAME "NVRAM")
  (:PATHNAME-DEFAULT "dj:ptm.nvram;")
  (:PATCHABLE "dj:ptm.patch-NVRAM;")
  (:MODULE NVRAM ("nvram-defs"
		  "setup-nvram"			;NVRAM initialization routines
		  "crash-record"		;Crash analyzer
		  "support-functions"		;Miscellaneous crash record support routines
		  "shutdown"))			;System shutdown
  (:COMPILE-LOAD NVRAM))

