If you wrap your buffer in a newtype that is marked with `#[repr(align(4))]` upon initialization, Something like ``` #[repr(align(4))] struct Aligned(T); ``` Then initialize your buffer like `static mut BUF: Aligned<[u16; 8]> = Aligned([0; 8]);` or whatever