• Binary number
    How do I use a binary number so that the compiler understand it? This is what I've done: 10101010b But the compiler gives an error: syntax error near 'b'
  • Binary number
    How can a Binary number be used in a program?
  • How to enter an binary data in Keil?
    How can we do this In assembly we do mov P0, #10001000B But in Keil how can we do this P0 = 10001000, in binary not by P0 = 0x11; Thank you!
  • Binary number representation
    Hi Sir, I am trying to do AND operation with a binary number. I;m little bit confused, here in forums for representation of binary number in keil is 11001100Y but while I'm trying to do the same...
  • How to input a binary number?
    I'm using Keil to developing C8051 programs. In C51, we can type 0xff to input a hex number, so how to type a binary number? On the Internet someone said we can type for example 0b00010001 to express...