mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +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.
16 lines
147 B
ArmAsm
16 lines
147 B
ArmAsm
# check the NOT insn.
|
|
# mach: example
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
JMP 3
|
|
HALT
|
|
|
|
SET r2, 0xc
|
|
NOT r0, r2
|
|
EQ r3, r0, 0x7ff3
|
|
JF r3, 2
|
|
|
|
pass
|