- The University of Utah operates a cosmic ray detector called the Fly’s Eye II, situated at the Dugway Proving Ground about an hour’s drive from Salt Lake City. The Fly’s Eye consists of an array of telescopes which stare into the night sky and record the blue flashes which result when very high energy cosmic rays slam into the atmosphere. From the height and intensity of the flash, one can calculate the nature of the particle and its energy.
- Reverse-engineering the register codes for the 8086 processor’s microcode (righto.com)
Like most processors, the Intel 8086 (1978) provides registers that are faster than main memory. As well as the registers that are visible to the programmer, the 8086 has a handful of internal registers that are hidden from the user. Internally, the 8086 has a complicated scheme to select which register to use, with a combination of microcode and hardware. Registers are assigned a 5-bit identifying number, either from the machine instruction or from the microcode. In this blog post, I explain how this register system works.
hacker news (shared in comments)