2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-02-02 22:00:20 +08:00

analyzer: align to sdram page

This commit is contained in:
occheung 2024-10-10 13:07:02 +08:00
parent bb14a0b2e2
commit 9d905d95a5

View File

@ -10,7 +10,7 @@ use core::cell::RefCell;
const BUFFER_SIZE: usize = 512 * 1024;
#[repr(align(64))]
#[repr(align(2048))]
struct Buffer {
data: [u8; BUFFER_SIZE],
}