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

« back to all changes in this revision

Viewing changes to tests/lm32/test_cmpgei.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 CMPGEI_1
 
6
mvi r1, 0
 
7
cmpgei r3, r1, 0
 
8
check_r3 1
 
9
 
 
10
test_name CMPGEI_2
 
11
mvi r1, 0
 
12
cmpgei r3, r1, 1
 
13
check_r3 0
 
14
 
 
15
test_name CMPGEI_3
 
16
mvi r1, 1
 
17
cmpgei r3, r1, 0
 
18
check_r3 1
 
19
 
 
20
test_name CMPGEI_4
 
21
mvi r1, 1
 
22
cmpgei r3, r1, 1
 
23
check_r3 1
 
24
 
 
25
test_name CMPGEI_5
 
26
mvi r1, 0
 
27
cmpgei r3, r1, -1
 
28
check_r3 1
 
29
 
 
30
test_name CMPGEI_6
 
31
mvi r1, -1
 
32
cmpgei r3, r1, 0
 
33
check_r3 0
 
34
 
 
35
test_name CMPGEI_7
 
36
mvi r1, -1
 
37
cmpgei r3, r1, -1
 
38
check_r3 1
 
39
 
 
40
test_name CMPGEI_8
 
41
mvi r3, 0
 
42
cmpgei r3, r3, 1
 
43
check_r3 0
 
44
 
 
45
test_name CMPGEI_9
 
46
mvi r3, 1
 
47
cmpgei r3, r3, 0
 
48
check_r3 1
 
49
 
 
50
test_name CMPGEI_10
 
51
mvi r3, 0
 
52
cmpgei r3, r3, 0
 
53
check_r3 1
 
54
 
 
55
end