; ###----------------------------------------------------------------### ; # file : addu000.u # ; # date : Mar 26 1996 # ; # descr. : functional test for mips # ; ###----------------------------------------------------------------### ; ###--------------------------------------------------------### ; # unsigned addition # ; ###--------------------------------------------------------### .org 0x00400000 const1 .equ 0x07cb const2 .equ 0xffff07cb .start init init: addiu r13, r0, const1 addiu r14, r0, const2 bne r14, r13,bad nop nop .org 0x004000d0 good: j good nop bad: j bad nop .end