doc/wg/opentitan/notes/2020-06-11.md
Present:
Johnathan: Working on external assembly to work towards libtock-rs on stable.
However, new asm!() happened at the same time. Not particularly easy to use
external assembly files, might be better to switch to new asm!().
New asm!() is a rust-specific syntax whereas before it was LLVM-specific.
The issue is Rust can't guarantee it will be stable when just passing it to
LLVM.
Alphan: Configure MPU PR only if needed merged!
Brad: Progress on linking RISC-V apps for multiple addresses, and then letting Tockloader select the best option.
StaticRef for handles to MMIO registers.VolatileCell, so we are
entirely using the tock-register library.StaticRef is that creating it
requires an unsafe block since mapping the memory address to pointers is
fundamentally unsafe.