this post was submitted on 14 May 2026
886 points (98.2% liked)

Programmer Humor

32119 readers
344 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Aganim@lemmy.world 59 points 1 month ago* (last edited 1 month ago) (1 children)

It moves the value of register (a CPU memory cell) rbx to register rax. It's not that important though.

Basically the comic shows that the CPU is happily chugging along, executing instructions when suddenly the keyboard sends an interrupt telling the CPU it must stop all work and listen to whatever it has to say.

That was how keyboards worked before USB (back when they used PS/2 or DIN connectors). With USB it's the other way around: the device gets polled X times per second to check if it has any data to send.

[โ€“] iocase@lemmy.zip 12 points 1 month ago

Iirc the south bridge now aggregates masked interrupts and groups them together instead of pestering the CPU a whole bunch