2015-05-25 13:11:41 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
|
|
|
// Copyright 2004 Duddie & Tratax
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
2009-03-23 09:10:32 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2009-06-28 10:24:44 +00:00
|
|
|
|
2014-09-07 20:06:58 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-05-01 20:06:24 +00:00
|
|
|
|
2016-12-30 13:25:40 -05:00
|
|
|
namespace DSP
|
|
|
|
{
|
2009-06-28 16:23:40 +00:00
|
|
|
void dsp_reg_store_stack(int stack_reg, u16 val);
|
|
|
|
u16 dsp_reg_load_stack(int stack_reg);
|
2016-12-30 13:25:40 -05:00
|
|
|
} // namespace DSP
|