mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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:
@ -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);
|
||||
}
|
||||
|
@ -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
|
Reference in New Issue
Block a user