2001-11-22 01:07:24 +00:00
|
|
|
comment "subroutine prologue"
|
|
|
|
.macro gdbasm_enter
|
|
|
|
push %ebp
|
|
|
|
mov %esp,%ebp
|
|
|
|
.endm
|
|
|
|
|
|
|
|
comment "subroutine epilogue"
|
|
|
|
.macro gdbasm_leave
|
|
|
|
pop %ebp
|
|
|
|
ret
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro gdbasm_call subr
|
|
|
|
call \subr
|
|
|
|
.endm
|
|
|
|
|
|
|
|
.macro gdbasm_several_nops
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
.endm
|
|
|
|
|
|
|
|
comment "exit (0)"
|
|
|
|
.macro gdbasm_exit0
|
|
|
|
hlt
|
|
|
|
.endm
|
|
|
|
|
|
|
|
comment "crt0 startup"
|
|
|
|
.macro gdbasm_startup
|
|
|
|
xor %ebp, %ebp
|
|
|
|
.endm
|
2001-12-04 19:45:57 +00:00
|
|
|
|
|
|
|
comment "Declare a data variable"
|
* gdb.asm/alpha.inc, gdb.asm/frv.inc, gdb.asm/i386.inc,
gdb.asm/ia64.inc, gdb.asm/m68hc11.inc, gdb.asm/m68k.inc,
gdb.asm/mips.inc, gdb.asm/pa.inc, gdb.asm/powerpc.inc,
gdb.asm/s390.inc, gdb.asm/s390x.inc, gdb.asm/sh.inc,
gdb.asm/x86_64.inc: Use .purgem before redefining macros.
2005-03-07 21:16:50 +00:00
|
|
|
.purgem gdbasm_datavar
|
2001-12-04 19:45:57 +00:00
|
|
|
.macro gdbasm_datavar name value
|
|
|
|
.data
|
|
|
|
\name:
|
|
|
|
.long \value
|
|
|
|
.endm
|