annotate bootx64.c @ 6:a394e109feeb

new executable file
author taiki
date Tue, 18 Dec 2012 17:55:09 +0900
parents 0fefb1d94991
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
1 #include <efi.h>
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
2 #include <efilib.h>
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
3
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
4 EFI_STATUS
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
5 efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *system_tab)
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
6 {
2
0fefb1d94991 boot efi executable.
taiki
parents: 1
diff changeset
7 EFI_STATUS ret = EFI_SUCCESS;
1
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
8 return ret;
10316df81650 start to write efi source of "bootx64.c".
one
parents:
diff changeset
9 }