desmume/tools/ds_tests/regs/arm9/source/main.cpp

70 lines
2.0 KiB
C++
Raw Normal View History

/* regs IO test
Copyright 2010 DeSmuME team
This file is part of DeSmuME
DeSmuME is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DeSmuME is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DeSmuME; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <nds.h>
#include <stdio.h>
#include "../../regstest.h"
#define myassert(e,msg) ((e) ? (void)0 : _myassert(__FILE__, __LINE__, #e, msg))
void _myassert(const char *fileName, int lineNumber, const char* conditionString, const char* message)
{
iprintf("---\nAssertion failed!\n\x1b[39mFile: \n%s\n\nLine: %d\n\nCondition:\n%s\n\n\x1b[41m%s",fileName, lineNumber, conditionString, message);
for(;;) swiWaitForVBlank();
}
int main(void) {
consoleDemoInit();
arm7comm->code = 0xDEADBEEF;
//fog table entries should not be readable. they should return 0
for(int i=0;i<32;i++)
{
GFX_FOG_TABLE[i] = 0xFF;
iprintf("%02X\n",GFX_FOG_TABLE[i]);
myassert(GFX_FOG_TABLE[i] == 0x00,"test whether fog table entries are non-readable");
}
iprintf("waiting for arm7 test to finish!\n");
//wait for arm7 test to finish
for(;;) {
if(arm7comm->code != 0xDEADBEEF) break;
swiWaitForVBlank();
}
iprintf("arm7 finish code: %d\n",arm7comm->code);
if(arm7comm->code == 1)
{
iprintf("arm7 test failed!\n");
iprintf("%s\n",arm7comm->message);
iprintf("offending val: 0x%08X\n",arm7comm->offender);
}
else
{
iprintf("all tests OK");
}
for(;;) swiWaitForVBlank();
return 0;
}