Files
ps5-linux-loader/shellcode_hv/shellcode_hv_args.h
Andy Nguyen 50b28fb8c1 More cleanup.
Rename shellcode_hypervisor to shellcode_hv and kernel_code to boot_linux.
2026-05-12 23:32:23 +02:00

10 lines
334 B
C

// This file is shared between kernel shellcode and hypervisor shellcode
#include <stdint.h>
typedef struct {
uint64_t bzimage_pa; // Already relocated by Kernel shellcode
uint64_t initrd_pa; // Already relocated by Kernel shellcode
uint64_t linux_info_pa; // Already relocated by Kernel shellcode
} shellcode_hv_args;