4 comment "Can't rely on assembler comment character so do this."
6 comment "On some platforms (like HPUX), only labels are allowed"
7 comment "to start at the first column. Beware of this when editing"
8 comment "the assembly files for this test."
10 .macro include arch file
14 comment "Declare a data variable"
15 .macro gdbasm_datavar name value
21 comment "Declare a subroutine"
22 .macro gdbasm_declare name
26 comment "End a subroutine"
27 .macro gdbasm_end name
30 comment "arch.inc is responsible for defining the following macros:"
31 comment "enter - subroutine prologue"
32 comment "leave - subroutine epilogue"
33 comment "call - call a named subroutine"
34 comment "several_nops - execute several (typically 4) nops"
35 comment "exit0 - exit (0)"
37 comment "arch.inc may also override the default definitions of:"
38 comment "datavar - define a data variable"
39 comment "declare - declare the start of a subroutine"
40 comment "end - end a subroutine"