aboutsummaryrefslogtreecommitdiff
path: root/hikari/efi/types/reset.zig
blob: 4bf206f47e7486a975ec2ea4879ce23e6c901f15 (plain)
1
2
3
4
5
6
7
8
//! Hikari EFI Reset Types

pub const ResetType = enum(u32) {
    cold = 0,
    warm = 1,
    shutdown = 2,
    platform_specific = 3,
};