diff options
| author | Bobby <[email protected]> | 2026-02-24 07:51:50 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-02-24 07:51:50 +0530 |
| commit | 2a1ec6e05dd8484c4019d3af1d0ec79c6ad39a1c (patch) | |
| tree | cc7c83a053f27b0fee0a02cc3ef09bccd711f3c9 | |
| parent | 5fe89e6f5b6fd6f5b5589b9e5d4714e0f4fbe5e8 (diff) | |
| download | akiba-2a1ec6e05dd8484c4019d3af1d0ec79c6ad39a1c.tar.xz akiba-2a1ec6e05dd8484c4019d3af1d0ec79c6ad39a1c.zip | |
fix: Correct boot parameters magic value for Hikari
| -rw-r--r-- | hikari/boot/params.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hikari/boot/params.zig b/hikari/boot/params.zig index 4494cd0..ebc7c67 100644 --- a/hikari/boot/params.zig +++ b/hikari/boot/params.zig @@ -4,7 +4,7 @@ const paging = @import("../paging/paging.zig"); -pub const boot_params_magic: u64 = 0x4152494D41424B41; // "AKBAMIRA" +pub const boot_params_magic: u64 = 0x494152494D424B41; // "AKBMIRAI" pub const boot_params_version: u32 = 1; pub const BootParams = extern struct { |
