mirror of
https://github.com/ps5-linux/ps5-linux-loader.git
synced 2026-05-13 18:22:00 +00:00
10 lines
334 B
C
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;
|