1#[repr(C)]
2#[derive(Debug)]
3/// Response to [`KernelAddressRequest`]
4pub struct KernelAddressResponse {
5/// The response revision number
6pub revision: u64,
7/// The physical base of the kernel
8pub physical_base: u64,
9/// The virtual base of the kernel
10pub virtual_base: u64,
11}