Search found 1 match
- Tue Jun 14, 2022 12:57 am
- Forum: GBA Development
- Topic: Volatile now required for access to SRAM/VRAM unlike past versions
- Replies: 3
- Views: 8517
Re: Volatile now required for access to SRAM/VRAM unlike past versions
Unfortunately this is wrong. You don't really understand the semantics of "volatile" and how C looks at the memory access. All memory locations accessed by C code are uniformly from the point of view of the C compiler,This is often referred to as uniform memory access(UMA). The "uniform" here means ...