diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2009-06-13 04:55:58 +0000 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2009-06-13 04:55:58 +0000 |
| commit | ff7f9020fe0d9bb5b41f7f6fdc10f0f3284f54d2 (patch) | |
| tree | 1d0972dbdc14dbcfb8b6dc806bcc2e7c348cbe65 /Source/Core/DSPCore/Src/DSPCodeUtil.h | |
| parent | f8a221dea252c8dbf716af9e9c6108688383b5c6 (diff) | |
dsp: renamed R09 to WR1 in some tests, removed unused code in DSPTables.cpp, added showing of origin file in dspspy (please fix if [runningUcode - 1] is wrong)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3417 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DSPCodeUtil.h')
| -rw-r--r-- | Source/Core/DSPCore/Src/DSPCodeUtil.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/DSPCore/Src/DSPCodeUtil.h b/Source/Core/DSPCore/Src/DSPCodeUtil.h index 7cd7cf5a2f..9652a93b28 100644 --- a/Source/Core/DSPCore/Src/DSPCodeUtil.h +++ b/Source/Core/DSPCore/Src/DSPCodeUtil.h @@ -27,9 +27,10 @@ bool Assemble(const char *text, std::vector<u16> &code); bool Disassemble(const std::vector<u16> &code, bool line_numbers, std::string &text);
bool Compare(const std::vector<u16> &code1, const std::vector<u16> &code2);
void GenRandomCode(int size, std::vector<u16> &code);
-void CodeToHeader(const std::vector<u16> &code, const char *name, std::string &header);
-void CodesToHeader(const std::vector<u16> *codes, int numCodes,
- const char *name, std::string &header);
+void CodeToHeader(const std::vector<u16> &code, std::string _filename,
+ const char *name, std::string &header);
+void CodesToHeader(const std::vector<u16> *codes, const std::vector<std::string> filenames,
+ int numCodes, const char *name, std::string &header);
// Big-endian, for writing straight to file using File::WriteStringToFile.
void CodeToBinaryStringBE(const std::vector<u16> &code, std::string &str);
|
