Datasheet
Section 2 CPU 
    Rev. 3.00 Mar. 15, 2006 Page 41 of 526 
   REJ09B0060-0300 
•  After executing BCLR instruction 
  P57 P56 P55 P54 P53 P52 P51 P50 
Input/output  Output  Output  Output Output Output Output Output Input 
Pin state  Low 
level 
High 
level 
Low 
level 
Low 
level 
Low 
level 
Low 
level 
Low 
level 
High 
level 
PCR5  1  1  1 1 1 1 1 0 
PDR5  1 0 0 0 0 0 0 0 
•  Description on operation 
1.  When the BCLR instruction is executed, first the CPU reads PCR5. Since PCR5 is a write-only 
register, the CPU reads a value of H'FF, even though the PCR5 value is actually H'3F. 
2.  Next, the CPU clears bit 0 in the read data to 0, changing the data to H'FE. 
3.  Finally, H'FE is written to PCR5 and BCLR instruction execution ends. 
As a result of this operation, bit 0 in PCR5 becomes 0, making P50 an input port. However, bits 7 
and 6 in PCR5 change to 1, so that P57 and P56 change from input pins to output pins. To prevent 
this problem, store a copy of the PCR5 data in a work area in memory and manipulate data of the 
bit in the work area, then write this data to PCR5. 
•  Prior to executing BCLR instruction 
MOV.B #3F, R0L 
MOV.B R0L, @RAM0 
MOV.B R0L, @PCR5 
  The PCR5 value (H'3F) is written to a work area in 
memory (RAM0) as well as to PCR5. 
  P57 P56 P55 P54 P53 P52 P51 P50 
Input/output Input Input  Output Output Output Output Output Output 
Pin state  Low 
level 
High 
level 
Low 
level 
Low 
level 
Low 
level 
Low 
level 
Low 
level 
Low 
level 
PCR5  0 0 1 1 1 1 1 1 
PDR5  1 0 0 0 0 0 0 0 
RAM0  0 0 1 1 1 1 1 1 










