~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/Core/Src/HW/DSPHLE/UCodes/UCode_GBA.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
#pragma once
 
6
 
 
7
#include "UCodes.h"
 
8
 
 
9
struct CUCode_GBA : public IUCode
 
10
{
 
11
        CUCode_GBA(DSPHLE *dsp_hle, u32 crc);
 
12
        virtual ~CUCode_GBA();
 
13
        u32 GetUpdateMs();
 
14
 
 
15
        void HandleMail(u32 _uMail);
 
16
        void Update(int cycles);
 
17
};