8085

Binary <-> Gray Conversion in 8085 Assembly

Mar 18, 2012

…a truly awesome implementation of gray to binary conversion in 8085 assembly language

Tags: 8085, assembly

Frequency Measurement of a Square Wave in 8085 Assembly

Mar 18, 2012

This code snippet continuously reads a square wave from Port A of the 8255 (programmable peripheral interface) and thus measures its time period.

Tags: 8085, assembly

GCD in 8085 Assembly

Mar 18, 2012

An 8085 microprocessor implementation of Euclid's algorithm, an efficient method for computing the Greatest Common Divisor (GCD) of two integers.

Tags: 8085, assembly

Square Root in 8085 Assembly

Mar 18, 2012

An 8085 assembly program to compute the square root of an integer. The algorithm is based on the fact that the sum of the first n odd natural numbers is equal to the square of n

Tags: 8085, assembly

Multiplication in 8085 Assembly

Mar 17, 2012

This is an implementation of multiplication by shifting and adding in 8085 assembly.

Tags: 8085, assembly