mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-01 05:55:23 +08:00
26da232cbd
Provide a simple example simulator for people porting to new targets to use as a reference. This one has the advantage of being used by people and having a fun program available for it. It doesn't require a special target -- the example simulators can be built for any existing port.
32 lines
306 B
ArmAsm
32 lines
306 B
ArmAsm
# check the GT insn.
|
|
# mach: example
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
JMP 3
|
|
HALT
|
|
|
|
GT r0, 3, 2
|
|
EQ r1, r0, 1
|
|
JF r1, 2
|
|
|
|
GT r0, 2, 2
|
|
EQ r1, r0, 0
|
|
JF r1, 2
|
|
|
|
GT r0, 1, 2
|
|
EQ r1, r0, 0
|
|
JF r1, 2
|
|
|
|
SET r2, 3
|
|
SET r3, 4
|
|
GT r0, r2, r3
|
|
EQ r1, r0, 0
|
|
JF r1, 2
|
|
GT r0, r3, r2
|
|
EQ r1, r0, 1
|
|
JF r1, 2
|
|
|
|
pass
|