mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00

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