mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 19:46:09 +08:00
2001-11-21 Michael Snyder <msnyder@redhat.com>
* gdb.asm/m32r.inc: New file. * gdb.asm/asm-source.exp: Recognize m32r target. * gdb.asm/configure.in: Recognize m32r target. * gdb.asm/configure: Regenerate.
This commit is contained in:
35
gdb/testsuite/gdb.asm/m32r.inc
Normal file
35
gdb/testsuite/gdb.asm/m32r.inc
Normal file
@ -0,0 +1,35 @@
|
||||
comment "subroutine prologue"
|
||||
.macro gdbasm_enter
|
||||
push fp -> push lr
|
||||
addi sp,#-4 -> mv fp,sp
|
||||
.endm
|
||||
|
||||
comment "subroutine epilogue"
|
||||
.macro gdbasm_leave
|
||||
addi sp,#4 -> pop lr
|
||||
pop fp -> jmp lr
|
||||
.endm
|
||||
|
||||
.macro gdbasm_call subr
|
||||
bl \subr -> nop
|
||||
.endm
|
||||
|
||||
.macro gdbasm_several_nops
|
||||
nop
|
||||
nop
|
||||
nop
|
||||
nop
|
||||
.endm
|
||||
|
||||
comment "exit (0)"
|
||||
.macro gdbasm_exit0
|
||||
ldi r0,#1 -> ldi r1,#0
|
||||
ldi r2,#0 -> ldi r3,#0
|
||||
trap #0 -> nop
|
||||
.endm
|
||||
|
||||
comment "crt0 startup"
|
||||
.macro gdbasm_startup
|
||||
ld24 sp,_stack
|
||||
ldi fp,#0
|
||||
.endm
|
Reference in New Issue
Block a user