add a note about how to execute ideas printf

This commit is contained in:
zeromus 2010-01-09 20:41:23 +00:00
parent 7874f746eb
commit 685e8ef91e
2 changed files with 2 additions and 2 deletions

View File

@ -6809,7 +6809,7 @@ TEMPLATE static u32 FASTCALL OP_SWI(const u32 i)
{
u32 swinum = (cpu->instruction>>16)&0xFF;
//ideas-style debug prints
//ideas-style debug prints (execute this SWI with the null terminated string address in R0)
if(swinum==0xFC)
{
IdeasLog(cpu);

View File

@ -953,7 +953,7 @@ TEMPLATE static u32 FASTCALL OP_SWI_THUMB(const u32 i)
{
u32 swinum = cpu->instruction & 0xFF;
//ideas-style debug prints
//ideas-style debug prints (execute this SWI with the null terminated string address in R0)
if(swinum==0xFC) {
IdeasLog(cpu);
return 0;