;  
; group b, test 2  
;  
; 16-bit load immediate  
;  
  
m4_include(..\tmacros.h)  
  
INIT_TEST(b,0x02)  
  
; declare symbols here  
    SYM(next0)  
    SYM(next1)  
    SYM(next2)  
  
; Begin test here  
  
SUBTEST(1)  
  
;   Mostly tested already in group_a, but go ahead and do some more  
    ld.16   a,0x1234  
    cmpb.eq.16	a,0x1234,next0  
    FAIL  
  
next0:  
    ld.16   b,0x4433  
    copy    a,b  
    cmpb.eq.16	a,0x4433,next1  
    FAIL  
  
next1:  
    ld.16   c,0x4321  
    copy    a,c  
    cmpb.eq.16	a,0x4321,next2  
    FAIL  
  
next2:  
      
  
;   Finally, when done branch to pass  
    END_TEST  
  
