You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(fdt): change memory method to return iterator for multiple nodes
The memory() method now returns an iterator that can yield multiple memory
nodes instead of returning just the first one found. This allows handling
device trees with multiple memory regions.
BREAKING CHANGE: The memory() method return type changed from
Option<Memory<'a>> to impl Iterator<Item = Memory<'a>> + 'a. Callers must
now use .next() or other iterator methods to access memory nodes.
0 commit comments