2010-02-02 18:56:00 +01:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; @file
|
|
|
|
; This file includes all other code files to assemble the reset vector code
|
|
|
|
;
|
2010-09-07 12:23:05 +02:00
|
|
|
; Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>
|
2010-04-24 14:25:26 +02:00
|
|
|
; This program and the accompanying materials
|
2010-02-02 18:56:00 +01:00
|
|
|
; are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
; which accompanies this distribution. The full text of the license may be found at
|
|
|
|
; http://opensource.org/licenses/bsd-license.php
|
|
|
|
;
|
|
|
|
; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
;
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
%ifdef ARCH_IA32
|
|
|
|
%ifdef ARCH_X64
|
|
|
|
%error "Only one of ARCH_IA32 or ARCH_X64 can be defined."
|
|
|
|
%endif
|
|
|
|
%elifdef ARCH_X64
|
|
|
|
%else
|
|
|
|
%error "Either ARCH_IA32 or ARCH_X64 must be defined."
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%include "CommonMacros.inc"
|
|
|
|
|
|
|
|
%include "PostCodes.inc"
|
|
|
|
|
|
|
|
%ifdef DEBUG_NONE
|
|
|
|
%include "DebugDisabled.asm"
|
|
|
|
%elifdef DEBUG_PORT80
|
|
|
|
%include "Port80Debug.asm"
|
|
|
|
%elifdef DEBUG_SERIAL
|
|
|
|
%include "SerialDebug.asm"
|
|
|
|
%else
|
|
|
|
%error "No debug type was specified."
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%include "Ia32/SearchForBfvBase.asm"
|
|
|
|
%include "Ia32/SearchForSecEntry.asm"
|
|
|
|
|
|
|
|
%ifdef ARCH_X64
|
2010-09-07 12:23:05 +02:00
|
|
|
%include "Ia32/Flat32ToFlat64.asm"
|
2010-02-02 18:56:00 +01:00
|
|
|
%endif
|
|
|
|
|
2010-09-07 12:23:05 +02:00
|
|
|
%include "Ia16/Real16ToFlat32.asm"
|
2010-02-02 18:56:00 +01:00
|
|
|
%include "Ia16/Init16.asm"
|
|
|
|
|
|
|
|
%include "Main.asm"
|
|
|
|
|
|
|
|
%include "Ia16/ResetVectorVtf0.asm"
|
|
|
|
|