F´ Flight Software - C/C++ Documentation  devel
A framework for building embedded system applications to NASA flight quality standards.
MemCommon.cpp
Go to the documentation of this file.
1 #include <Os/Mem.hpp>
2 
3 #include <cstring>
4 
5 namespace Os {
6 
7  U32 Mem::virtToPhys(U32 virtAddr) {
8  return virtAddr;
9  }
10 
11  U32 Mem::physToVirt(U32 physAddr) {
12  return physAddr;
13  }
14 
15 }
static U32 physToVirt(U32 physAddr)
Translate physical to virtual memory.
Definition: MemCommon.cpp:11
static U32 virtToPhys(U32 virtAddr)
Translate virtual to physical memory.
Definition: MemCommon.cpp:7
Definition: File.cpp:6