Click here to Skip to main content
15,891,375 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi my friend could you explain for me about
BCD
EBCEDIC
ASCII

in assembely

thanks
Posted

1 solution

None of them have anything to do with Assembly: they are ways of encoding information.
BCD : Binary Coded Decimal. Each nibble (4 bits) holds the values 1 to 10. The values 11 through 15 are not used and are considered invalid. Not used too much these days, since hardware divide instructions and faster processors generally made divide by ten a quick and simple(ish) process.
EBCDIC : Extended Binary Coded Decimal Interchange Code. An eight bit way of storing characters ('A' to 'Z', 'a' to 'z' numbers, and a range of punctuation and specials. IBM proprietary and a PITA.
ASCII : American Standard Code for Information Interchange. 7 (or 8 in some cases) bit way of storing characters. What the whole world (pretty much) used before the introduction of UNICODE. Still in common use.

You could have found this on Google, very easily!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900