We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a2330 commit 5264483Copy full SHA for 5264483
src/constance_port_arm_test_driver/src/main.rs
@@ -80,9 +80,11 @@ macro_rules! instantiate_test {
80
const MEMORY_MAP: &'static [port::MemoryMapSection] = &[
81
// On-chip RAM (10MB)
82
port::MemoryMapSection::new(0x2000_0000..0x2050_0000, 0x2000_0000)
83
+ .with_sharable(false)
84
.with_executable(true)
85
.with_writable(false),
- port::MemoryMapSection::new(0x2050_0000..0x20a0_0000, 0x2050_0000),
86
+ port::MemoryMapSection::new(0x2050_0000..0x20a0_0000, 0x2050_0000)
87
+ .with_sharable(false),
88
// I/O areas
89
port::MemoryMapSection::new(0x3fe0_0000..0x4000_0000, 0x3fe0_0000).as_device_memory(),
90
port::MemoryMapSection::new(0xe800_0000..0xe830_0000, 0xe800_0000).as_device_memory(),
0 commit comments