DSPLLE fix for latest commit (thanks lp)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4017 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
df504b0de9
commit
8155439dd1
|
@ -161,7 +161,7 @@ void DSPCore_SetException(u8 level)
|
||||||
void DSPCore_CheckExternalInterrupt()
|
void DSPCore_CheckExternalInterrupt()
|
||||||
{
|
{
|
||||||
// check if there is an external interrupt
|
// check if there is an external interrupt
|
||||||
if (! g_dsp.cr & CR_EXTERNAL_INT)
|
if (! (g_dsp.cr & CR_EXTERNAL_INT))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (! dsp_SR_is_flag_set(SR_EXT_INT_ENABLE))
|
if (! dsp_SR_is_flag_set(SR_EXT_INT_ENABLE))
|
||||||
|
|
|
@ -1,28 +1,19 @@
|
||||||
/*====================================================================
|
// Copyright (C) 2003 Dolphin Project.
|
||||||
|
|
||||||
filename: opcodes.h
|
// This program is free software: you can redistribute it and/or modify
|
||||||
project: GameCube DSP Tool (gcdsp)
|
// it under the terms of the GNU General Public License as published by
|
||||||
created: 2005.03.04
|
// the Free Software Foundation, version 2.0.
|
||||||
mail: duddie@walla.com
|
|
||||||
|
|
||||||
Copyright (c) 2005 Duddie
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License 2.0 for more details.
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or
|
// A copy of the GPL 2.0 should have been included with the program.
|
||||||
modify it under the terms of the GNU General Public License
|
// If not, see http://www.gnu.org/licenses/
|
||||||
as published by the Free Software Foundation; either version 2
|
|
||||||
of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
||||||
|
|
||||||
====================================================================*/
|
|
||||||
|
|
||||||
|
// Official SVN repository and contact information can be found at
|
||||||
|
// http://code.google.com/p/dolphin-emu/
|
||||||
#include "DSPIntUtil.h"
|
#include "DSPIntUtil.h"
|
||||||
#include "DSPMemoryMap.h"
|
#include "DSPMemoryMap.h"
|
||||||
#include "DSPIntExtOps.h"
|
#include "DSPIntExtOps.h"
|
||||||
|
|
Loading…
Reference in New Issue