Home | History | Annotate | Download | only in bfin
      1 	.text
      2 	.global idle
      3 idle:
      4 	IDle;
      5 
      6 	.text
      7 	.global csync
      8 csync:
      9 	csync;
     10 
     11 	.text
     12 	.global ssync
     13 ssync:
     14 	SSYNC;
     15 
     16 	.text
     17 	.global emuexcpt
     18 emuexcpt:
     19 	EMuExCpt;
     20 
     21 	.text
     22 	.global cli
     23 cli:
     24 	cli r7;
     25 	CLI R0;
     26 
     27 	.text
     28 	.global sti
     29 sti:
     30 	STI r1;
     31 	stI r2;
     32 
     33 	.text
     34 	.global raise
     35 raise:
     36 	raise 15;
     37 	RAISE 0;
     38 
     39 	.text
     40 	.global excpt
     41 excpt:
     42 	excpt 15;
     43 	EXCPT 0;
     44 
     45 	.text
     46 	.global testset
     47 testset:
     48 	testset(p5);
     49 	TESTset (P0);
     50 
     51 	.text
     52 	.global nop
     53 nop:
     54 	nop;
     55 	MNOP;
     56 
     57