What memory locations is assembly code allowed access?

Regarding the asm! macro, the rust reference says:

The set of memory locations that assembly code is allowed to read and write are the same as those allowed for an FFI function

  • Refer to the unsafe code guidelines for the exact rules.

However, I can not find any information on that in the unsafe code guidelines

1 Like

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.