Hey, does anyone know an elegant way to initialize very large arrays? I have to define a L1 table with 4096 u32 entries, but all the values are known at compile time. This was solved with assembler code by the vendor, but I think this is also possible with Rust. The code can be found here: https://egit.irs.uni-stuttgart.de/ROMEO/zedboard-blinky-rs/src/commit/956f22b41beaca1f15943f36eeea9baa2b7eb9c1/zynq-rt/src/mmu.rs#L252 Right now, I wrote a run-time function to initialize the values, but I think the effort of doing this const time might be worth it for the low level boot code. If there is no "elegant" way, I would have just auto-generated the file with the const initialization of the array..