chiark / gitweb /
actually use B for bitmask ops
authorian <ian>
Mon, 2 May 2005 13:57:15 +0000 (13:57 +0000)
committerian <ian>
Mon, 2 May 2005 13:57:15 +0000 (13:57 +0000)
iwjpictest/harness.asm

index 1b97e6d38ccb35d5faf085fc2762cbcd42fe78ad..1d0bf6cb77e47d306b498a53e283c44e68f75a06 100644 (file)
@@ -292,28 +292,28 @@ command_byte_read_fromset
 
 command_bitwise_read_mask
        serial_literal  '?'
-       mov_fw          e
+       mov_fw          b
        and_wfw         star_r
        bra             command_endswitch_phex
 
 command_bitwise_read_mask_fromset
        serial_literal  '_'
-       mov_fw          e
+       mov_fw          b
        and_wfw         star_s
        bra             command_endswitch_phex
 
 command_bitwise_or
-       mov_fw          e
+       mov_fw          b
        ior_wfw         star_s
        bra             command_endswitch_set
 
 command_bitwise_xor
-       mov_fw          e
+       mov_fw          b
        xor_wfw         star_s
        bra             command_endswitch_set
 
 command_bitwise_and_not
-       mov_fw          e
+       mov_fw          b
        com_w
        and_wfw         star_s
        bra             command_endswitch_set