Tiny ARMv7 interpreter update

This commit is contained in:
Nekotekina 2014-10-29 07:13:34 +03:00
parent 0f602e0e13
commit bf6415accd
9 changed files with 509 additions and 219 deletions

View file

@ -18,6 +18,7 @@ void ARMv7Thread::InitRegs()
memset(GPR, 0, sizeof(GPR[0]) * 15);
APSR.APSR = 0;
IPSR.IPSR = 0;
PC |= 1;
SP = m_stack_addr + m_stack_size;
}