add "asm" test to testsuite's sln

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6236 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2010-09-28 04:25:49 +00:00
parent 88cd9f3df1
commit 4f534594cd
3 changed files with 10 additions and 4 deletions

View File

@ -26,11 +26,13 @@
#include "Helpers.h"
FILE *f = NULL;
int main(int argc, char **argv) {
int main(int argc, char **argv)
{
init_crap();
initialise_fat();
for(int a = 0; a < sizeof(instructions) / sizeof(inst); ++a)
for (uint a = 0; a < sizeof(instructions) / sizeof(inst); ++a)
{
RunInstruction(a);
}

View File

@ -1,2 +0,0 @@
all:
g++ -g -arch ppc dolphintest_asm.cpp asm_tables.cpp Helpers.cpp asm_integer.cpp asm_float.cpp -o Test