Fix compile error from last commit.

This commit is contained in:
Stephen Anthony 2024-07-31 13:37:38 -02:30
parent a4b216aac1
commit 9679d63bfc
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 {