~ubuntu-branches/debian/jessie/qemu/jessie

« back to all changes in this revision

Viewing changes to tests/lm32/test_ori.S

  • Committer: Package Import Robot
  • Author(s): Vagrant Cascadian
  • Date: 2011-10-03 12:29:18 UTC
  • mfrom: (1.2.13) (10.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20111003122918-zc4kv6epchrbgdta
Tags: 0.15.0+dfsg-1
* New upstream version.
* Install new qemu-system, qemu-user and qemu-user-static variants: 
  lm32, microblazeel, s390x, unicore32
* Patch from upstream to set QEMU_INCLUDES before QEMU_CFLAGS.
* Update debian/watch to check http://qemu.org/download.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.include "macros.inc"
 
2
 
 
3
start
 
4
 
 
5
test_name ORI_1
 
6
mvi r1, 0
 
7
ori r3, r1, 0
 
8
check_r3 0
 
9
 
 
10
test_name ORI_2
 
11
mvi r1, 0
 
12
ori r3, r1, 1
 
13
check_r3 1
 
14
 
 
15
test_name ORI_3
 
16
mvi r1, 1
 
17
ori r3, r1, 1
 
18
check_r3 1
 
19
 
 
20
test_name ORI_4
 
21
mvi r1, 1
 
22
ori r3, r1, 0
 
23
check_r3 1
 
24
 
 
25
test_name ORI_5
 
26
load r1 0xaa55aa55
 
27
ori r3, r1, 0x55aa
 
28
check_r3 0xaa55ffff
 
29
 
 
30
test_name ORI_6
 
31
load r3 0xaa55aa55
 
32
ori r3, r3, 0x55aa
 
33
check_r3 0xaa55ffff
 
34
 
 
35
end