- fixed missing nop after lw

Committed on the Free edition of March Hare Software CVSNT Server.
Upgrade to CVS Suite for more features and support:
http://march-hare.com/cvsnt/


git-svn-id: http://moon:8086/svn/vhdl/trunk@331 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2009-02-09 10:07:26 +00:00
parent 295d996216
commit e333f6ca2a
@@ -145,13 +145,9 @@ void Exec_at(void *pEntry)
__asm
(
"jr %[pEntry]\n" // jump entry
:
: [pEntry] "r" (pEntry)
);
__asm
(
"lw $v0, 16($sp)\n"
"nop\n"
"jr $v0\n" // jump entry
"rfe\n"
);
@@ -160,7 +156,6 @@ void Exec_at(void *pEntry)
".set reorder\n"
);
}
void PrintCPUinfo(void)
{
int result, rev_id;