old-cross-binutils/gdb/testsuite/gdb.asm/xstormy16.inc
Corinna Vinschen a99aee835b * gdb.asm/xstormy16.inc (gdbasm_startup): Fix beginning of stack so
as not to clash with .data section.
2010-07-26 12:31:11 +00:00

34 lines
418 B
PHP

comment "subroutine prologue"
.macro gdbasm_enter
push r13
mov r13,r15
.endm
comment "subroutine epilogue"
.macro gdbasm_leave
pop r13
ret
.endm
.macro gdbasm_call subr
callf \subr
.endm
.macro gdbasm_several_nops
add r0,#0
add r0,#0
add r0,#0
add r0,#0
.endm
comment "exit (0)"
.macro gdbasm_exit0
mov.w r2,#0
halt
.endm
comment "crt0 startup"
.macro gdbasm_startup
mov r15,#8
.endm