| author | |
| committer | |
| log | 03abc6edf450cfa6a55a3d416def44595a19a453 |
| tree | 5eaa90e717174a0aa16273869eee4a476fa460f5 |
| parent | 70e62b86121dc5d54073bb34fe950ce6b3dff2cd |
| signature | Commit is signed but in an unrecognized format. |
2 files changed, 11 insertions(+), 0 deletions(-)
std/os/uefi/tables.zig+1| ... | ... | @@ -1,5 +1,6 @@ |
| 1 | 1 | pub const BootServices = @import("tables/boot_services.zig").BootServices; |
| 2 | 2 | pub const ConfigurationTable = @import("tables/configuration_table.zig").ConfigurationTable; |
| 3 | pub const global_variable align(8) = @import("tables/runtime_services.zig").global_variable; | |
| 3 | 4 | pub const ResetType = @import("tables/runtime_services.zig").ResetType; |
| 4 | 5 | pub const RuntimeServices = @import("tables/runtime_services.zig").RuntimeServices; |
| 5 | 6 | pub const SystemTable = @import("tables/system_table.zig").SystemTable; |
std/os/uefi/tables/runtime_services.zig+10| ... | ... | @@ -39,3 +39,13 @@ pub const ResetType = extern enum(u32) { |
| 39 | 39 | ResetShutdown, |
| 40 | 40 | ResetPlatformSpecific, |
| 41 | 41 | }; |
| 42 | ||
| 43 | /// UEFI Specification, Version 2.8, 3.3 | |
| 44 | pub const global_variable align(8) = Guid{ | |
| 45 | .time_low = 0x8be4df61, | |
| 46 | .time_mid = 0x93ca, | |
| 47 | .time_high_and_version = 0x11d2, | |
| 48 | .clock_seq_high_and_reserved = 0xaa, | |
| 49 | .clock_seq_low = 0x0d, | |
| 50 | .node = [_]u8{ 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c }, | |
| 51 | }; |