-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core/Dxe: Changed line ending to Windows style.
- Loading branch information
Mikhail Krichanov
committed
Sep 2, 2024
1 parent
edf576c
commit c820082
Showing
23 changed files
with
7,028 additions
and
7,028 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
//------------------------------------------------------------------------------ | ||
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
//------------------------------------------------------------------------------ | ||
|
||
#include <AsmMacroIoLibV8.h> | ||
|
||
.extern ASM_PFX(Ring3Call) | ||
|
||
//------------------------------------------------------------------------------ | ||
// EFI_STATUS | ||
// EFIAPI | ||
// SysCall ( | ||
// IN UINT8 Type, | ||
// ... | ||
// ); | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(SysCall) | ||
svc #0 | ||
ret | ||
|
||
//------------------------------------------------------------------------------ | ||
// VOID | ||
// EFIAPI | ||
// Ring3EntryPoint ( | ||
// IN RING3_CALL_DATA *Data | ||
// ); | ||
// | ||
// (x0) Data | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(Ring3EntryPoint) | ||
b ASM_PFX(Ring3Call) | ||
//------------------------------------------------------------------------------ | ||
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
//------------------------------------------------------------------------------ | ||
|
||
#include <AsmMacroIoLibV8.h> | ||
|
||
.extern ASM_PFX(Ring3Call) | ||
|
||
//------------------------------------------------------------------------------ | ||
// EFI_STATUS | ||
// EFIAPI | ||
// SysCall ( | ||
// IN UINT8 Type, | ||
// ... | ||
// ); | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(SysCall) | ||
svc #0 | ||
ret | ||
|
||
//------------------------------------------------------------------------------ | ||
// VOID | ||
// EFIAPI | ||
// Ring3EntryPoint ( | ||
// IN RING3_CALL_DATA *Data | ||
// ); | ||
// | ||
// (x0) Data | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(Ring3EntryPoint) | ||
b ASM_PFX(Ring3Call) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
//------------------------------------------------------------------------------ | ||
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
//------------------------------------------------------------------------------ | ||
|
||
#include <AsmMacroIoLib.h> | ||
|
||
.extern ASM_PFX(Ring3Call) | ||
|
||
//------------------------------------------------------------------------------ | ||
// EFI_STATUS | ||
// EFIAPI | ||
// SysCall ( | ||
// IN UINT8 Type, | ||
// ... | ||
// ); | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(SysCall) | ||
svc #0 | ||
bx LR | ||
|
||
//------------------------------------------------------------------------------ | ||
// VOID | ||
// EFIAPI | ||
// Ring3EntryPoint ( | ||
// IN RING3_CALL_DATA *Data | ||
// ); | ||
// | ||
// (r0) Data | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(Ring3EntryPoint) | ||
b ASM_PFX(Ring3Call) | ||
//------------------------------------------------------------------------------ | ||
// Copyright (c) 2024, Mikhail Krichanov. All rights reserved. | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
//------------------------------------------------------------------------------ | ||
|
||
#include <AsmMacroIoLib.h> | ||
|
||
.extern ASM_PFX(Ring3Call) | ||
|
||
//------------------------------------------------------------------------------ | ||
// EFI_STATUS | ||
// EFIAPI | ||
// SysCall ( | ||
// IN UINT8 Type, | ||
// ... | ||
// ); | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(SysCall) | ||
svc #0 | ||
bx LR | ||
|
||
//------------------------------------------------------------------------------ | ||
// VOID | ||
// EFIAPI | ||
// Ring3EntryPoint ( | ||
// IN RING3_CALL_DATA *Data | ||
// ); | ||
// | ||
// (r0) Data | ||
//------------------------------------------------------------------------------ | ||
ASM_FUNC(Ring3EntryPoint) | ||
b ASM_PFX(Ring3Call) |
Oops, something went wrong.