mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
1368b914e9
Now that all port tests live under testsuite/sim/*/, and none live in testsuite/ directly, flatten the structure by moving all of the dirs under testsuite/sim/ to testsuite/ directly. We need to stop passing --tool to dejagnu so that it searches all dirs and not just ones that start with "sim". Since we have no other dirs in this tree, and no plans to add any, should be fine.
64 lines
947 B
PHP
64 lines
947 B
PHP
# MACRO: exit
|
|
.macro exit nr
|
|
mov \nr, d1;
|
|
# Trap function 1: exit().
|
|
mov 1, d0;
|
|
syscall;
|
|
.endm
|
|
|
|
# MACRO: pass
|
|
# Write 'pass' to stdout and quit
|
|
.macro pass
|
|
# Trap function 5: write().
|
|
mov 5, d0;
|
|
# Use stdout.
|
|
mov 1, d1;
|
|
# Point to the string.
|
|
mov 1f, a0;
|
|
mov a0, (12, sp);
|
|
# Number of bytes to write.
|
|
mov 5, d3;
|
|
mov d3, (16, sp);
|
|
# Trigger OS trap.
|
|
syscall;
|
|
exit 0
|
|
.data
|
|
1: .asciz "pass\n"
|
|
.endm
|
|
|
|
# MACRO: fail
|
|
# Write 'fail' to stdout and quit
|
|
.macro fail
|
|
# Trap function 5: write().
|
|
mov 5, d0;
|
|
# Use stdout.
|
|
mov 1, d1;
|
|
# Point to the string.
|
|
mov 1f, a0;
|
|
mov a0, (12, sp);
|
|
# Number of bytes to write.
|
|
mov 5, d3;
|
|
mov d3, (16, sp);
|
|
# Trigger OS trap.
|
|
syscall;
|
|
exit 0
|
|
.data
|
|
1: .asciz "fail\n"
|
|
.endm
|
|
|
|
# MACRO: start
|
|
# All assembler tests should start with a call to "start"
|
|
.macro start
|
|
.data
|
|
.global _stack
|
|
_stack:
|
|
.rept 8
|
|
.long 0
|
|
.endr
|
|
.text
|
|
.global _start
|
|
_start:
|
|
mov _stack, a0;
|
|
mov a0, sp;
|
|
.endm
|