; --------------------------------------------------------------------------------
; @Title: Script to load a trace file
; @Description: Loads a trace file
; @Author: REI
; @Copyright: (C) 1989-2014 Lauterbach GmbH, licensed for use with TRACE32(R) only
; --------------------------------------------------------------------------------
; $Id: trace_file.cmm 6932 2014-04-23 11:15:09Z kjmal $


LOCAL &filename
ENTRY %LINE &filename
  ON ERROR GOTO USE_TRACE_LOAD
  Trace.FILE &filename
  ON ERROR
ENDDO

USE_TRACE_LOAD:
  ON ERROR
  Trace.LOAD &filename
  PRINT "Loaded file with Trace.LOAD for Trace32 version older than release 2007."
ENDDO
