- Burien (/ˈbjʊəriən/ BURE-ee-ən) is a suburban city in King County, Washington, United States, located south of Seattle on Puget Sound. As of the 2020 census, Burien’s population was 52,066, which is a 56.3% increase since incorporation in 1993, making it the 25th most populous city in Washington. An annexation in 2010 increased the city’s population significantly.
- Reverse-engineering the 8085’s decimal adjust circuitry (righto.com)
In this post I reverse-engineer and describe the simple decimal adjust circuit in the 8085 microprocessor. Binary-coded decimal arithmetic was an important performance feature on early microprocessors. The idea behind BCD is to store two 4-bit decimal numbers in a byte. For instance, the number 42 is represented in BCD as 0100 0010 (0x42) instead of binary 00101010 (0x2a). This continues my reverse engineering series on the 8085’s ALU, flag logic, undocumented flags, register file, and instruction set.