URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [gas/] [testsuite/] [gas/] [all/] [eval.s] - Rev 859
Go to most recent revision | 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
Go to most recent revision | Compare with Previous | Blame | View Log