image_load_addr.rs 242 B

1234567891011
  1. use crate::TagType;
  2. /// If the image has relocatable header tag, this tag contains the image's
  3. /// base physical address.
  4. #[derive(Debug)]
  5. #[repr(C)]
  6. pub struct ImageLoadPhysAddr {
  7. typ: TagType,
  8. size: u32,
  9. load_base_addr: u32,
  10. }