1;------------------------------------------------------------------------------
2; @file
3; Port 0x80 debug support macros
4;
5; Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
6; SPDX-License-Identifier: BSD-2-Clause-Patent
7;
8;------------------------------------------------------------------------------
9
10BITS    16
11
12%macro  debugInitialize 0
13    ;
14    ; No initialization is required
15    ;
16%endmacro
17
18%macro  debugShowPostCode 1
19    mov     al, %1
20    out     0x80, al
21%endmacro
22
23