* this looks like so: ```rust let ipc_reader = { #[link_section = ".ipc"] static IPC: IpcCell = IpcCell::new(); IPC.primary_init().reader().unwrap() }; ... let ipc_writer = { #[link_section = ".ipc"] static IPC: IpcCell = IpcCell::new(); IPC.secondary_init().writer().unwrap() }; ```