]> git.proxmox.com Git - mirror_edk2.git/blame - UefiCpuPkg/ResetVector/Vtf0/Port80Debug.asm
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / UefiCpuPkg / ResetVector / Vtf0 / Port80Debug.asm
CommitLineData
bc252e8e
EB
1;------------------------------------------------------------------------------\r
2; @file\r
3; Port 0x80 debug support macros\r
4;\r
01a1c0fc 5; Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>\r
0acd8697 6; SPDX-License-Identifier: BSD-2-Clause-Patent\r
bc252e8e
EB
7;\r
8;------------------------------------------------------------------------------\r
9\r
10BITS 16\r
11\r
12%macro debugInitialize 0\r
13 ;\r
14 ; No initialization is required\r
15 ;\r
16%endmacro\r
17\r
18%macro debugShowPostCode 1\r
19 mov al, %1\r
20 out 0x80, al\r
21%endmacro\r
22\r