Re: A86: .db numbers


[Prev][Next][Index][Thread]

Re: A86: .db numbers




If you're comfortable with hex a byte converts to the binary
concatenation of the two hex digits. i.e. 45d = 2Dh = 0010 1101


ComAsYuAre@aol.com wrote:
> 
> In a message dated 9/21/98 9:44:39 PM Eastern Daylight Time, tbarwick@esn.net
> writes:
> 
> > I have been having trouble learning how to write numbers in binary.  Could
> > someone tell me how to write, say, 45 in binary??
> >  Thanks,
> 
> well, your calculator can do it for you!!!!  just remember that each digit is
> 2^ bit number if it's 1
> 
> for example:
> 
> %00101101
> is 2^5+2^3+2^2+2+0=45


References: