16 lines
247 B
ArmAsm
Executable file
16 lines
247 B
ArmAsm
Executable file
! get_bp.s
|
|
!
|
|
! return EBP in EAX
|
|
!
|
|
! Created: Sep 7, 1992 by Philip Homburg
|
|
|
|
.sect .text; .sect .rom; .sect .data; .sect .bss
|
|
|
|
.sect .text
|
|
.define _get_bp
|
|
_get_bp:
|
|
mov eax, ebp
|
|
ret
|
|
|
|
! $PchId: get_bp.ack.s,v 1.3 1996/02/23 08:30:52 philip Exp $
|
|
|