~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/Core/Src/HW/MemoryInterface.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2013 Dolphin Emulator Project
 
2
// Licensed under GPLv2
 
3
// Refer to the license.txt file included.
 
4
 
 
5
#ifndef _MEMORYINTERFACE_H
 
6
#define _MEMORYINTERFACE_H
 
7
 
 
8
#include "Common.h"
 
9
class PointerWrap;
 
10
 
 
11
namespace MemoryInterface
 
12
{
 
13
void DoState(PointerWrap &p);
 
14
 
 
15
void Read16(u16& _uReturnValue, const u32 _iAddress);
 
16
void Read32(u32& _uReturnValue, const u32 _iAddress);   
 
17
void Write32(const u32 _iValue, const u32 _iAddress);
 
18
void Write16(const u16 _iValue, const u32 _iAddress);
 
19
} // end of namespace MemoryInterface
 
20
 
 
21
#endif
 
22
 
 
23