assembly

Tag

Cards List
#assembly

@TrisH0x2A: in 2008 James Molloy wrote a free tutorial that taught people how to build a UNIX like operating system from scratch in…

X AI KOLs Following · 2026-06-02 Cached

A tweet highlights James Molloy's 2008 free tutorial 'Roll Your Own Toy UNIX Clone OS', which teaches building a Unix-like kernel from scratch in C and assembly, covering bootloader, memory management, filesystems, and multitasking.

0 favorites 0 likes
#assembly

Writing Portable ARM64 Assembly

Hacker News Top · 2026-05-31 Cached

A guide to writing ARM64 assembly code that is portable across Apple's Darwin and Linux/BSD systems, covering differences in ABI, symbol naming, and vector mnemonics.

0 favorites 0 likes
#assembly

Restartable Sequences

Hacker News Top · 2026-05-31 Cached

The article introduces Linux restartable sequences (rseq), a kernel feature that enables thread-safe data structures without locks or atomics, achieving dramatic performance improvements on many-core CPUs. It provides a tutorial and demonstrates up to 43x speedup on a 96-core AMD Threadripper.

0 favorites 0 likes
#assembly

SBCL: the ultimate assembly code breadboard (2014)

Hacker News Top · 2026-05-20 Cached

A technical blog post exploring how to use SBCL as a breadboard for assembly code, focusing on stack-based virtual machine techniques such as rotating stacks and efficient primop dispatch, with references to the F18 processor and x87 stack.

0 favorites 0 likes
#assembly

A mini-computer you run from a folder on your computer that can train small LLMS

Reddit r/artificial · 2026-05-17

VirtualPC is an open-source 8-bit computer simulator that can train small neural networks from assembly code, demonstrating machine learning at the bare-metal level.

0 favorites 0 likes
#assembly

Halt and Catch Fire

Hacker News Top · 2026-05-16 Cached

The article explores the origin and meaning of the phrase 'Halt and Catch Fire' in computing, tracing it from a joke mnemonic to actual CPU behavior in the Motorola 6800 and IBM System/360.

0 favorites 0 likes
#assembly

A Linux desktop in x86_64 Assembly

Lobsters Hottest · 2026-04-23 Cached

A developer rebuilt their entire Linux desktop stack—from shell to terminal, window manager, and utilities—in pure x86_64 Assembly using Claude Code, achieving microsecond startup times and hours of extra battery life.

0 favorites 0 likes
#assembly

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
← Back to home

Submit Feedback