test_intr.s
779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*******************************
*prog name: test_intr
*
*
*******************************/
.text
nop;
nop;
ori $1, $0, 0x10;/* set interrupt value */
ori $2, $0, 0x8; /* clear interrupt value */
nop;
nop;
mtc0 $1, $4; /* set interrupt */
nop;
nop;
break;
nop;
nop;
mtc0 $2, $4; /* clear interrupt */
nop;
nop;
break;
nop;
nop;
mtc0 $1, $4; /* set interrupt */
nop;
nop;
break;
nop;
nop;
mtc0 $2, $4; /* clear interrupt */
nop;
nop;
break;
nop;
break;
nop;
break;
nop;
break;
nop;
break;
nop;
break;