mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-01 12:53:27 +01:00
21 lines
459 B
NASM
21 lines
459 B
NASM
|
;------------------------------------------------------------------------------
|
||
|
; @file
|
||
|
; Debug disabled
|
||
|
;
|
||
|
; Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
|
||
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
;
|
||
|
;------------------------------------------------------------------------------
|
||
|
|
||
|
BITS 16
|
||
|
|
||
|
%macro debugInitialize 0
|
||
|
;
|
||
|
; No initialization is required
|
||
|
;
|
||
|
%endmacro
|
||
|
|
||
|
%macro debugShowPostCode 1
|
||
|
%endmacro
|
||
|
|