~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/Core/Src/HW/WII_IOB.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 _WII_IOBRIDGE_H_
 
6
#define _WII_IOBRIDGE_H_
 
7
 
 
8
#include "Common.h"
 
9
class PointerWrap;
 
10
 
 
11
namespace WII_IOBridge
 
12
{
 
13
 
 
14
void Init();
 
15
void Shutdown();
 
16
void DoState(PointerWrap &p);
 
17
 
 
18
void Update();
 
19
 
 
20
void Read8(u8& _rReturnValue, const u32 _Address);
 
21
void Read16(u16& _rReturnValue, const u32 _Address);
 
22
void Read32(u32& _rReturnValue, const u32 _Address);
 
23
void Read64(u64& _rReturnValue, const u32 _Address);
 
24
 
 
25
void Write8(const u8 _Value, const u32 _Address);
 
26
void Write16(const u16 _Value, const u32 _Address);
 
27
void Write32(const u32 _Value, const u32 _Address);
 
28
void Write64(const u64 _Value, const u32 _Address);
 
29
 
 
30
} // end of namespace AudioInterface
 
31
 
 
32
#endif
 
33
 
 
34