chiark / gitweb /
remove duplicate ifbit[01]
authorian <ian>
Wed, 29 Jun 2005 23:53:06 +0000 (23:53 +0000)
committerian <ian>
Wed, 29 Jun 2005 23:53:06 +0000 (23:53 +0000)
cebpic/i2c-test-reply.asm

index e3a49005eb8010bf8a9aa3a0f4d1af0fc60e3a88..f191ea1816695df9ad37240006d277e12b340e22 100644 (file)
@@ -122,22 +122,6 @@ panic macro message
         goto    panic_routine
         endm
 
-;----------------------------------------
-; ifbit1(REGISTER,BITNUMBER)
-;      executes the next instruction but only if bit BITNUMBER
-;      in REGISTER (which must be in the access bank) is set
-ifbit1 macro REGISTER, BITNUMBER
-       btfsc   REGISTER, BITNUMBER, 0
-       endm
-
-;----------------------------------------
-; ifbit0(REGISTER,BITNUMBER)
-;      executes the next instruction but only if bit BITNUMBER
-;      in REGISTER (which must be in the access bank) is clear
-ifbit0 macro REGISTER, BITNUMBER
-       btfss   REGISTER, BITNUMBER, 0
-       endm
-
 ;----------------------------------------
 ; debug(BYTE)
 ;      writes BYTE through the serial port