Home | History | Annotate | Download | only in all
      1 .equ zero, 0
      2 .equ one, 1
      3 .equ two, 2
      4 
      5 
      6  .data
      7 
      8  .if two > one
      9    .byte one
     10  .else
     11    .byte two
     12  .endif
     13 
     14  .if one == one
     15    .byte one
     16   .else
     17     .byte two
     18   .endif
     19 
     20   .if one < two
     21     .byte one
     22   .else
     23     .byte two
     24   .endif
     25 
     26   .if one <> two
     27     .byte one
     28   .else
     29     .byte two
     30   .endif
     31 
     32   .if one != two
     33     .byte one
     34   .else
     35     .byte two
     36   .endif
     37 
     38   .if one <= two
     39     .byte one
     40   .else
     41     .byte two
     42   .endif
     43 
     44   .if two >= one
     45     .byte one
     46   .else
     47     .byte two
     48   .endif
     49