mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@827 be3aeb3a-fb24-0410-a615-afba39da0efa
18 lines
265 B
NASM
18 lines
265 B
NASM
section .text
|
|
|
|
global sh2_drc_entry ; SH2 *sh2, void *block
|
|
|
|
sh2_drc_entry:
|
|
push ebx
|
|
push ebp
|
|
mov ebp, [esp+8+4] ; context
|
|
mov eax, [esp+8+8]
|
|
jmp eax
|
|
|
|
global sh2_drc_exit
|
|
|
|
sh2_drc_exit:
|
|
pop ebp
|
|
pop ebx
|
|
ret
|
|
|