Fix compile error from last commit.

This commit is contained in:
Stephen Anthony 2024-07-31 13:37:38 -02:30
parent 86bb28d042
commit 151becc4fb
1 changed files with 3 additions and 3 deletions

View File

@ -143,12 +143,12 @@ class CortexM0
};
struct MemoryRegionAccessData {
uInt8* backingStore{nullptr};
uInt8* backingStore;
};
struct MemoryRegionAccessCode {
uInt8* backingStore{nullptr};
uInt8* ops{nullptr};
uInt8* backingStore;
uInt8* ops;
};
struct MemoryRegion {