~ubuntu-branches/ubuntu/wily/qemu-kvm-spice/wily

« back to all changes in this revision

Viewing changes to tests/lm32/test_cmpgu.S

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-10-19 10:44:56 UTC
  • Revision ID: james.westby@ubuntu.com-20111019104456-xgvskumk3sxi97f4
Tags: upstream-0.15.0+noroms
ImportĀ upstreamĀ versionĀ 0.15.0+noroms

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.include "macros.inc"
 
2
 
 
3
start
 
4
 
 
5
test_name CMPGU_1
 
6
mvi r1, 0
 
7
mvi r2, 0
 
8
cmpgu r3, r1, r2
 
9
check_r3 0
 
10
 
 
11
test_name CMPGU_2
 
12
mvi r1, 0
 
13
mvi r2, 1
 
14
cmpgu r3, r1, r2
 
15
check_r3 0
 
16
 
 
17
test_name CMPGU_3
 
18
mvi r1, 1
 
19
mvi r2, 0
 
20
cmpgu r3, r1, r2
 
21
check_r3 1
 
22
 
 
23
test_name CMPGU_4
 
24
mvi r1, 1
 
25
mvi r2, 1
 
26
cmpgu r3, r1, r2
 
27
check_r3 0
 
28
 
 
29
test_name CMPGU_5
 
30
mvi r1, 0
 
31
mvi r2, -1
 
32
cmpgu r3, r1, r2
 
33
check_r3 0
 
34
 
 
35
test_name CMPGU_6
 
36
mvi r1, -1
 
37
mvi r2, 0
 
38
cmpgu r3, r1, r2
 
39
check_r3 1
 
40
 
 
41
test_name CMPGU_7
 
42
mvi r1, -1
 
43
mvi r2, -1
 
44
cmpgu r3, r1, r2
 
45
check_r3 0
 
46
 
 
47
test_name CMPGU_8
 
48
mvi r3, 0
 
49
mvi r2, 1
 
50
cmpgu r3, r3, r2
 
51
check_r3 0
 
52
 
 
53
test_name CMPGU_9
 
54
mvi r3, 1
 
55
mvi r2, 0
 
56
cmpgu r3, r3, r2
 
57
check_r3 1
 
58
 
 
59
test_name CMPGU_10
 
60
mvi r3, 0
 
61
cmpgu r3, r3, r3
 
62
check_r3 0
 
63
 
 
64
end