32x: drc: handlers wip
[picodrive.git] / cpu / sh2 / stub_x86.asm
CommitLineData
679af8a3 1section .text
2
3global sh2_drc_entry ; SH2 *sh2, void *block
4
5sh2_drc_entry:
6 push ebp
7 mov ebp, [esp+4+4] ; context
8 mov eax, [esp+4+8]
9 jmp eax
10
11global sh2_drc_exit
12
13sh2_drc_exit:
14 pop ebp
15 ret
16