]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/EbcDxe/EbcDebugger/EdbCmdExtIo.c
IntelSiliconPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Universal / EbcDxe / EbcDebugger / EdbCmdExtIo.c
CommitLineData
e8a5ac7c 1/** @file\r
748edcd5 2\r
e8a5ac7c
DB
3Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials\r
748edcd5
PB
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
748edcd5 12\r
e8a5ac7c 13**/\r
748edcd5 14\r
e8a5ac7c 15#include "Edb.h"\r
748edcd5 16\r
e8a5ac7c 17/**\r
748edcd5 18\r
e8a5ac7c 19 DebuggerCommand - IB.\r
748edcd5 20\r
e8a5ac7c
DB
21 @param CommandArg The argument for this command\r
22 @param DebuggerPrivate EBC Debugger private data structure\r
23 @param ExceptionType Exception type.\r
24 @param SystemContext EBC system context.\r
25\r
26 @retval EFI_DEBUG_CONTINUE formal return value\r
748edcd5 27\r
e8a5ac7c 28**/\r
748edcd5
PB
29EFI_DEBUG_STATUS\r
30DebuggerExtIoIB (\r
31 IN CHAR16 *CommandArg,\r
32 IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,\r
33 IN EFI_EXCEPTION_TYPE ExceptionType,\r
34 IN OUT EFI_SYSTEM_CONTEXT SystemContext\r
35 )\r
748edcd5
PB
36{\r
37 EDBPrint (L"Unsupported\n");\r
38 //\r
39 // TBD\r
40 //\r
41 return EFI_DEBUG_CONTINUE;\r
42}\r
43\r
e8a5ac7c
DB
44\r
45/**\r
46\r
47 DebuggerCommand - IW.\r
48\r
49\r
50 @param CommandArg - The argument for this command\r
51 @param DebuggerPrivate - EBC Debugger private data structure\r
52 @param ExceptionType - Exception type.\r
53 @param SystemContext - EBC system context.\r
54\r
55 @retval EFI_DEBUG_CONTINUE - formal return value\r
56\r
57**/\r
748edcd5
PB
58EFI_DEBUG_STATUS\r
59DebuggerExtIoIW (\r
60 IN CHAR16 *CommandArg,\r
61 IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,\r
62 IN EFI_EXCEPTION_TYPE ExceptionType,\r
63 IN OUT EFI_SYSTEM_CONTEXT SystemContext\r
64 )\r
748edcd5
PB
65{\r
66 EDBPrint (L"Unsupported\n");\r
67 //\r
68 // TBD\r
69 //\r
70 return EFI_DEBUG_CONTINUE;\r
71}\r
72\r
e8a5ac7c
DB
73/**\r
74\r
75 DebuggerCommand - ID.\r
76\r
77\r
78 @param CommandArg - The argument for this command\r
79 @param DebuggerPrivate - EBC Debugger private data structure\r
80 @param ExceptionType - Exception type.\r
81 @param SystemContext - EBC system context.\r
82\r
83 @retval EFI_DEBUG_CONTINUE - formal return value\r
84\r
85**/\r
748edcd5
PB
86EFI_DEBUG_STATUS\r
87DebuggerExtIoID (\r
88 IN CHAR16 *CommandArg,\r
89 IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,\r
90 IN EFI_EXCEPTION_TYPE ExceptionType,\r
91 IN OUT EFI_SYSTEM_CONTEXT SystemContext\r
92 )\r
748edcd5
PB
93{\r
94 EDBPrint (L"Unsupported\n");\r
95 //\r
96 // TBD\r
97 //\r
98 return EFI_DEBUG_CONTINUE;\r
99}\r
100\r
e8a5ac7c
DB
101/**\r
102\r
103 DebuggerCommand - OB.\r
104\r
105 @param CommandArg - The argument for this command\r
106 @param DebuggerPrivate - EBC Debugger private data structure\r
107 @param ExceptionType - Interrupt type.\r
108 @param SystemContext - EBC system context.\r
109\r
110 @retval EFI_DEBUG_CONTINUE - formal return value\r
111\r
112**/\r
748edcd5
PB
113EFI_DEBUG_STATUS\r
114DebuggerExtIoOB (\r
115 IN CHAR16 *CommandArg,\r
116 IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,\r
117 IN EFI_EXCEPTION_TYPE ExceptionType,\r
118 IN OUT EFI_SYSTEM_CONTEXT SystemContext\r
119 )\r
748edcd5
PB
120{\r
121 EDBPrint (L"Unsupported\n");\r
122 //\r
123 // TBD\r
124 //\r
125 return EFI_DEBUG_CONTINUE;\r
126}\r
127\r
e8a5ac7c
DB
128\r
129/**\r
130\r
131 DebuggerCommand - OW.\r
132\r
133 @param CommandArg - The argument for this command\r
134 @param DebuggerPrivate - EBC Debugger private data structure\r
135 @param ExceptionType - Interrupt type.\r
136 @param SystemContext - EBC system context.\r
137\r
138 @retval EFI_DEBUG_CONTINUE - formal return value\r
139\r
140**/\r
748edcd5
PB
141EFI_DEBUG_STATUS\r
142DebuggerExtIoOW (\r
143 IN CHAR16 *CommandArg,\r
144 IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,\r
145 IN EFI_EXCEPTION_TYPE ExceptionType,\r
146 IN OUT EFI_SYSTEM_CONTEXT SystemContext\r
147 )\r
748edcd5
PB
148{\r
149 EDBPrint (L"Unsupported\n");\r
150 //\r
151 // TBD\r
152 //\r
153 return EFI_DEBUG_CONTINUE;\r
154}\r
155\r
e8a5ac7c
DB
156\r
157/**\r
158\r
159 DebuggerCommand - OD.\r
160\r
161 @param CommandArg - The argument for this command\r
162 @param DebuggerPrivate - EBC Debugger private data structure\r
163 @param ExceptionType - Interrupt type.\r
164 @param SystemContext - EBC system context.\r
165\r
166 @retval EFI_DEBUG_CONTINUE - formal return value\r
167\r
168**/\r
748edcd5
PB
169EFI_DEBUG_STATUS\r
170DebuggerExtIoOD (\r
171 IN CHAR16 *CommandArg,\r
172 IN EFI_DEBUGGER_PRIVATE_DATA *DebuggerPrivate,\r
173 IN EFI_EXCEPTION_TYPE ExceptionType,\r
174 IN OUT EFI_SYSTEM_CONTEXT SystemContext\r
175 )\r
748edcd5
PB
176{\r
177 EDBPrint (L"Unsupported\n");\r
178 //\r
179 // TBD\r
180 //\r
181 return EFI_DEBUG_CONTINUE;\r
182}\r