]> git.proxmox.com Git - mirror_edk2.git/blame - EmbeddedPkg/Scripts/LauterbachT32/T32.CMM
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / EmbeddedPkg / Scripts / LauterbachT32 / T32.CMM
CommitLineData
98790d81 1;\r
2; Copyright (c) 2011, Hewlett-Packard Company. All rights reserved.<BR>\r
3; \r
878b807a 4; SPDX-License-Identifier: BSD-2-Clause-Patent\r
98790d81 5; \r
6\r
7; Copy this to your C:\T32 directory\r
8;Default startup program for TRACE32\r
9;\r
10;This startup program can be modified according to your needs.\r
11\r
12; update this path to reflect YOUR current working dir\r
13GLOBAL &wcdir\r
14&wcdir="D:\bios"\r
15\r
16;choose hex mode for input\r
17 radix hex\r
18\r
19;Add some extra buttons to the toolbar\r
20\r
21 menu.rp\r
22 (\r
23 add\r
24 toolbar\r
25 (\r
26 separator\r
27 toolitem "Source/List" ":list" "Data.List"\r
28 toolitem "Memory Dump" ":dump" "Data.dump"\r
29 toolitem "Register" ":reg" "Register"\r
30 separator\r
31 toolitem "Watch" ":varwatch" "Var.Watch"\r
32 toolitem "Stack" ":varframe" "Var.Frame /l /c"\r
33 toolitem "Automatic Watch" ":varref" "Var.Ref"\r
34 separator\r
35 toolitem "List Breakpoints" ":break" "Break.List"\r
36 toolitem "List Symbols" ":symbols" "sYmbol.Browse"\r
37 toolitem "System Settings" ":config" "SYStem"\r
38 separator\r
39 )\r
40 )\r
41\r
42 if language()!=""\r
43 (\r
44 local &menuname\r
45 &menuname="~~/t32"+language()+".men"\r
46 if os.file(&menuname)\r
47 menu.rp &menuname\r
48 )\r
49\r
50;Recall and Define History File\r
51 autostore , history bookmark\r
52 \r
53; Execute EFI setup script\r
54 chdir &wcdir\Platform\T32_Scripts\r
55 do EFI\r
56\r
57enddo\r
58\r
59\r