add a note about how to execute ideas printf
This commit is contained in:
parent
7874f746eb
commit
685e8ef91e
|
@ -6809,7 +6809,7 @@ TEMPLATE static u32 FASTCALL OP_SWI(const u32 i)
|
||||||
{
|
{
|
||||||
u32 swinum = (cpu->instruction>>16)&0xFF;
|
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)
|
if(swinum==0xFC)
|
||||||
{
|
{
|
||||||
IdeasLog(cpu);
|
IdeasLog(cpu);
|
||||||
|
|
|
@ -953,7 +953,7 @@ TEMPLATE static u32 FASTCALL OP_SWI_THUMB(const u32 i)
|
||||||
{
|
{
|
||||||
u32 swinum = cpu->instruction & 0xFF;
|
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) {
|
if(swinum==0xFC) {
|
||||||
IdeasLog(cpu);
|
IdeasLog(cpu);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue