URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-binutils/] [binutils-2.19.1/] [gas/] [testsuite/] [gas/] [all/] [eval.s] - Rev 6
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