• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1;
2; Copyright (c) 2011, Hewlett-Packard Company. All rights reserved.<BR>
3;
4; This program and the accompanying materials
5; are licensed and made available under the terms and conditions of the BSD License
6; which accompanies this distribution.  The full text of the license may be found at
7; http://opensource.org/licenses/bsd-license.php
8;
9; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11;
12
13;choose hex mode for input
14 radix hex
15
16  menu.rp
17 (
18  add
19  toolbar
20  (
21   separator
22   toolitem "Reset Target"              "RS"      "sys.ResetTarget"
23   separator
24   toolitem "Load EFI DXE Symbols"      "DX"      "do EfiLoadDxe"
25   toolitem "Load EFI Runtime Symbols"  "RT"      "do EfiLoadRuntimeDxe"
26  )
27 )
28
29  system.config.debugaccessport 0
30  system.config.corebase 0x80001000
31  system.attach
32  break.sel.program onchip
33
34  setup.var %hex.on
35  setup.var %decimal.OFF
36
37
38enddo
39
40
41