use dolphin-style typedefs in dsp-lle testing

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2793 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-03-30 03:27:31 +00:00
parent 20b54fb71f
commit 57105f08d6
28 changed files with 687 additions and 701 deletions

View file

@ -25,12 +25,12 @@
#include "gdsp_opcodes_helper.h"
bool WriteDMEM(uint16 addr, uint16 val)
bool WriteDMEM(u16 addr, u16 val)
{
return dsp_dmem_write(addr, val);
}
uint16 ReadDMEM(uint16 addr)
u16 ReadDMEM(u16 addr)
{
return dsp_dmem_read(addr);
}