abstracting
[sped.git] / utils.asm
1
2 extern memmove
3
4 global shiftLeft
5 global shiftRight
6
7 section .text
8
9 shiftLeft:
10     push ebp
11     mov ebp, esp
12     
13     
14     
15     mov esp, ebp
16     pop ebp
17     ret
18
19 shiftRight:
20     push ebp
21     mov ebp, esp
22
23     
24     
25     mov esp, ebp
26     pop ebp
27     ret