cpu-architecture

Tag

Cards List
#cpu-architecture

Programming the Gigatron

Hacker News Top · 2026-08-07 Cached

A technical article detailing the author's attempt to understand and program the Gigatron TTL Color Micro-computer, covering its Harvard architecture, CPU instructions, and programming techniques.

0 favorites 0 likes
#cpu-architecture

6× faster binary search: from compiled code to mechanical sympathy

Lobsters Hottest · 2026-07-14 Cached

This article details a series of low-level optimizations for binary search in Rust, achieving a 6x speedup by leveraging CPU architecture features like branch prediction and SIMD, applied to a scikit-learn gradient boosting use case.

0 favorites 0 likes
#cpu-architecture

Is x86 ready to ACE it?

Hacker News Top · 2026-07-14 Cached

The article analyzes the new ACE specification from the x86 Ecosystem Advisory Group, which extends Intel's AMX for AI matrix multiplication with fixed tile sizes and outer product instructions, comparing it to Arm's SME.

0 favorites 0 likes
#cpu-architecture

How ARM64 Instructions Are Really Encoded

Lobsters Hottest · 2026-06-25 Cached

An educational article that explains how ARM64 (AArch64) instructions are encoded in 32-bit fixed-length words, debunking common misconceptions and providing hands-on decoding examples using ADD immediate on Apple Silicon.

0 favorites 0 likes
#cpu-architecture

Show HN: We built an 8-bit CPU as 2nd year EE students

Hacker News Top · 2026-06-15 Cached

A fully functional 8-bit Harvard architecture CPU built from individual logic gates, designed in Logisim-Evolution, with open-source files and documentation. Created by second-year EE students.

0 favorites 0 likes
#cpu-architecture

Just How Bad Was The Intel IAPX432?

Lobsters Hottest · 2026-05-26 Cached

A recent benchmark of the famously slow Intel iAPX432 processor reveals that its performance may have been unfairly maligned, as hand-written code outperformed an 8086, suggesting poor compiler optimization was the culprit.

0 favorites 0 likes
#cpu-architecture

PC Engine CPU

Hacker News Top · 2026-05-08 Cached

A detailed technical overview of the PC Engine (TurboGrafx-16) CPU, the HuC6280, a fast 8-bit processor based on the 65C02, covering its architecture, clock speeds, and differences from the NES and SNES CPUs.

0 favorites 0 likes
#cpu-architecture

XOR'ing a register with itself is the idiom for zeroing it out. Why not sub?

Hacker News Top · 2026-04-22 Cached

Raymond Chen explores why x86 compilers universally prefer "xor eax,eax" over "sub eax,eax" to zero a register, attributing it to historical momentum and slightly safer flag behavior rather than technical superiority.

0 favorites 0 likes
#cpu-architecture

Unusual circuits in the Intel 386's standard cell logic

Ken Shirriff · 2025-11-22 Cached

An exploration of unusual circuits found in the Intel 386's standard cell logic, including large multiplexers and non-standard inverters, highlighting the chip's design history and place-and-route techniques.

0 favorites 0 likes
← Back to home

Submit Feedback