3 public static uint test_call (uint a
, uint b
) {
7 public static int test_alu ()
39 public static int test_branch ()
43 if (a
== b
) t
= 1; else t
= 0;
46 if (a
!= b
) t
= 0; else t
= 1;
49 if (a
>= b
) t
= 1; else t
= 0;
52 if (a
> b
) t
= 0; else t
= 1;
55 if (a
<= b
) t
= 1; else t
= 0;
58 if (a
< b
) t
= 0; else t
= 1;
64 public static int Main() {
67 if (test_call (3, 5) != 8)
71 if (test_branch () != 0)