mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-31 09:30:39 +00:00
Rename memreadwrite.h to memaccess.h
This commit is contained in:
parent
7f0acaf3d3
commit
7628ec92c0
@ -30,7 +30,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
#include "ppcmmu.h"
|
||||
#include "devices/memctrlbase.h"
|
||||
#include "memreadwrite.h"
|
||||
#include "memaccess.h"
|
||||
#include "ppcemu.h"
|
||||
#include <array>
|
||||
#include <cinttypes>
|
||||
|
@ -21,7 +21,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
#include "displayid.h"
|
||||
#include "endianswap.h"
|
||||
#include "memreadwrite.h"
|
||||
#include "memaccess.h"
|
||||
#include "pcidevice.h"
|
||||
#include <atirage.h>
|
||||
#include <cstdint>
|
||||
|
@ -31,7 +31,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
#include "hwcomponent.h"
|
||||
#include "memctrlbase.h"
|
||||
#include "memreadwrite.h"
|
||||
#include "memaccess.h"
|
||||
#include "mmiodevice.h"
|
||||
#include "mpc106.h"
|
||||
|
||||
|
@ -26,7 +26,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
#include "machinefactory.h"
|
||||
#include "devices/memctrlbase.h"
|
||||
#include "memreadwrite.h"
|
||||
#include "memaccess.h"
|
||||
#include "machineproperties.h"
|
||||
#include <cinttypes>
|
||||
#include <cstring>
|
||||
|
@ -1,9 +1,9 @@
|
||||
/** @file Set of macros for accessing integers of various sizes and endianness
|
||||
in host memory.
|
||||
/** @file Set of macros for accessing host memory units of various sizes
|
||||
and endianness.
|
||||
*/
|
||||
|
||||
#ifndef MEM_READ_WRITE_H
|
||||
#define MEM_READ_WRITE_H
|
||||
#ifndef MEM_ACCESS_H
|
||||
#define MEM_ACCESS_H
|
||||
|
||||
#include "endianswap.h"
|
||||
#include <cinttypes>
|
||||
@ -99,4 +99,4 @@
|
||||
(addr)[3] = ((val) >> 24) & 0xFF; \
|
||||
} while (0)
|
||||
|
||||
#endif /* MEM_READ_WRITE_H */
|
||||
#endif /* MEM_ACCESS_H */
|
Loading…
Reference in New Issue
Block a user