1use crate::platform_if::PlatformImpl; 2 3pub fn bss() -> &'static [u8] { 4 PlatformImpl::kernel_regions().bss.as_slice() 5} 6 7pub fn text() -> &'static [u8] { 8 PlatformImpl::kernel_regions().text.as_slice() 9}