OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.20.1/] [gas/] [testsuite/] [gas/] [all/] [eval.s] - Rev 205

Compare with Previous | Blame | View Log

.equ zero, 0
.equ one, 1
.equ two, 2
 
 
 .data
 
 .if two > one
   .byte one
 .else
   .byte two
 .endif
 
 .if one == one
   .byte one
  .else
    .byte two
  .endif
 
  .if one < two
    .byte one
  .else
    .byte two
  .endif
 
  .if one <> two
    .byte one
  .else
    .byte two
  .endif
 
  .if one != two
    .byte one
  .else
    .byte two
  .endif
 
  .if one <= two
    .byte one
  .else
    .byte two
  .endif
 
  .if two >= one
    .byte one
  .else
    .byte two
  .endif
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.