~ahs3/+junk/cq-qemu

« back to all changes in this revision

Viewing changes to tests/lm32/test_cmpei.S

  • Committer: Al Stone
  • Date: 2012-02-09 01:17:20 UTC
  • Revision ID: albert.stone@canonical.com-20120209011720-tztl7ik3qayz80p4
first commit to bzr for qemu

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.include "macros.inc"
 
2
 
 
3
start
 
4
 
 
5
test_name CMPEI_1
 
6
mvi r1, 0
 
7
cmpei r3, r1, 0
 
8
check_r3 1
 
9
 
 
10
test_name CMPEI_2
 
11
mvi r1, 0
 
12
cmpei r3, r1, 1
 
13
check_r3 0
 
14
 
 
15
test_name CMPEI_3
 
16
mvi r1, 1
 
17
cmpei r3, r1, 0
 
18
check_r3 0
 
19
 
 
20
test_name CMPEI_4
 
21
load r1 0xffffffff
 
22
cmpei r3, r1, -1
 
23
check_r3 1
 
24
 
 
25
test_name CMPEI_5
 
26
mvi r3, 0
 
27
cmpei r3, r3, 0
 
28
check_r3 1
 
29
 
 
30
test_name CMPEI_6
 
31
mvi r3, 0
 
32
cmpei r3, r3, 1
 
33
check_r3 0
 
34
 
 
35
end