522
The good old days (sub.wetshaving.social)
top 38 comments
sorted by: hot top controversial new old
[-] FilthyShrooms@lemmy.world 14 points 6 hours ago
[-] gofsckyourself@lemmy.world 4 points 5 hours ago

Hah! This might be the best use of this meme template I've seen. And this template has a lot of good ones.

[-] chrisbtoo@lemmy.ca 58 points 15 hours ago

I feel like I should understand this, but I don't.

[-] waigl@lemmy.world 144 points 15 hours ago* (last edited 15 hours ago)

This is x86 assembler. (Actually, looking at the register names, it's probably x86_64. On old school x86, they were named something like al, ah (8 bit), ax (16 bit), or eax (32 bit).) Back in the old days, when you pressed a key on the keyboard, the keyboard controller would generate a hardware interrupt, which, unless masked, would immediately make the CPU jump to a registered interrupt handler, interrupting whatever else it was doing at the point. That interrupt handler would then usually save all registers on the stack, communicate with the keyboard controller to figure out what exactly happened, react to that, restore the old registers again and then jump back to where the CPU was before.

In modern times, USB keyboards are periodically actively polled instead.

[-] chrisbtoo@lemmy.ca 1 points 1 hour ago* (last edited 1 hour ago)

Thanks for the explanation. Ironically this was the bit I didn't know:

In modern times, USB keyboards are periodically actively polled instead.

I was thinking the implication was that some computer had faulty interrupt handling that would smash the status register or something.

Honestly I think I'm just too old to understand memes.

[-] starman2112@sh.itjust.works 20 points 6 hours ago* (last edited 6 hours ago)

The virgin USB: hey, uh, when you get a chance, uh, if it's not too much trouble, could you, uh, put an 'e' there? Whenever you get the chance is fine

The chad PS/2: THE USER SAID E.

[-] WhyJiffie@sh.itjust.works 17 points 13 hours ago

does that mean though that if I connect a PS/2 keyboard or mouse to my relatively modern computer (a "gamer" motherboard made ~6 years ago) 's PS/2 port, that it'll still trigger such an interrupt?

[-] atomicbocks@sh.itjust.works 15 points 11 hours ago

The other commenter is on the right track but the chip controls both USB and PS/2 as well as others;

In the 90s and 2000s, for x86 machines, slower I/O was handled by a chip called the Southbridge which worked in conjunction with a chip called the Northbridge that handled faster I/O like IDE and PCI. Later these were integrated into a single chip and, as of recent processor generations, into the processor itself.

AFAIK ghosting and key rollover are issues when using PS/2 but it can offer some milliseconds off latency when used in high cpu games.

[-] DeRp_DaWg@lemmy.world 5 points 10 hours ago* (last edited 10 hours ago)

AFAIK ghosting and key rollover are issues when using PS/2

I think it's more of an issue for USB keyboards than PS/2 keyboards.

[-] herrvogel@lemmy.world 6 points 9 hours ago

They are wholly independent from the protocol or interface. Ghosting is an electrical issue that is a result of keyboards being a bunch of switches arranged in a matrix. It makes the keyboard's controller register an extra keypress in certain conditions. Nothing to do with how the thing communicates with the host computer.

Key rollover issues can be related to ghosting. The limit for it is once again the keyboard's design at the circuit level, not its communication protocol.

Really they're both related to how cheaply built the keyboard is. That's the only thing.

[-] ugo@feddit.it 4 points 9 hours ago

Ghosting entirely depends on the wiring of the keyboard pcb. Key rollover can depend on the wiring of the keyboard pcb, but usually is limited by the usb HID protocol.

Generally speaking, usb can carry up to 6 keys of information in a single packet (I don’t remember off the top of my head if modifiers are included). It is possible to use extended packets and encode more info (and thus allow for more than 6 keys rollover) but it requires negotiation with the os so most vendors don’t bother as generally you don’t need to be able to press more than 6 keys at the same time for most applications.

[-] Colloidal@programming.dev 9 points 12 hours ago

I think there's a USB device inside the mobo to handle dumb peripherals. So it would still trigger an interrupt, but it wouldn't make it to the CPU. The USB keyboard controller would handle it and cache the strokes locally until polled by the CPU.

[-] grue@lemmy.world 5 points 12 hours ago

I would expect that any motherboard that went to the trouble of including a PS/2 port would handle it with a real hardware interrupt, because the whole point of still having those things is to avoid the latency overhead of USB.

[-] kopasz7@sh.itjust.works 8 points 10 hours ago

Largely an urban legend. The internal electronics of the keyboard/mouse matter more than the protocol for end to end latency.

There are USB keyboards that beat a PS/2 one, at just 125 Hz polling. 1000 Hz polling pulls ahead even more.

https://www.youtube.com/watch?v=eEswl6kZq5k&t=650

[-] lunachocken@lemm.ee 9 points 13 hours ago

I had to write a mini os and it handled keyboard interrupts. Certainly made it make a lot more since after writing it for my uni course

[-] SomethingBurger@jlai.lu 28 points 15 hours ago

The small bird is a CPU executing its instructions. The big bird is a keyboard sending an interrupt for the CPU to process immediately.

[-] istdaslol@feddit.org 41 points 16 hours ago

And their interrupt routine has an error that leads to changed memory and you don’t know why your Programm calculates „2+6=E“ and that only sometimes on every other run.

[-] cm0002@lemmy.world 18 points 15 hours ago
[-] perishthethought@lemm.ee 6 points 13 hours ago* (last edited 13 hours ago)

!!! I just learned about this recently because my PC has an Nvidia GPU and it sometimes wakes up from sleeping to a blank screen with just the mouse cursor showing.

I try that REISUB first but if that doesn't do anything, I have to go to Ctrl-Alt-F3 and do "sudo reboot".

Linux is fun except for when it's not.

[-] exu@feditown.com 1 points 43 minutes ago

You probably have to enable it in sysctl

[-] hddsx@lemmy.ca 4 points 13 hours ago

I’m confused. Why would you REISUB/O if you can use the reboot command?

REISUB is a last resort before hitting the physical power button

[-] perishthethought@lemm.ee 1 points 12 hours ago

Haha, because I'm lazy and going with the fastest, safe way to reboot when I get stuck.

[-] lime@feddit.nu 7 points 11 hours ago

reisub is not "safe". it is the "safest" way when your system has reached an otherwise broken state, but you're still interrupting things that may be saving state or changing configurations. if your system is working behind the scenes you may very well break it more.

[-] hddsx@lemmy.ca 5 points 12 hours ago

You should really use the reboot command first because you don’t have to control the order and timing. REISU(B/O) requires pauses between letters for the specific action to run. It also requires those letters to be in that particular order - you can’t sync the file system if you put it into read only. If REISUB is sometimes not working but you can go elsewhere and reboot, you’re likely not doing it right and you should err on the side of caution and use the reboot command

[-] perishthethought@lemm.ee 2 points 10 hours ago

Gotcha, thanks;

[-] callyral@pawb.social 10 points 15 hours ago

I'm still mad they killed PS/2 on recent motherboards. So much for NKRO I guess.

[-] istdaslol@feddit.org 3 points 9 hours ago

Don’t want break your illusion but for the most part those were just USB adapters so you didn’t had any of the implementational benefits because under the hood it was still USB

Not for the keyboards I have. And yes, I’ve tested it.

[-] dual_sport_dork@lemmy.world 11 points 13 hours ago

Never mind recent motherboards, I'm still salty about the era of boards from 2004-2010 or so which had USB ports but the BIOS would refuse to accept inputs from them until after POST so you'd have to dredge up a separate PS/2 keyboard and jack it in to be able to configure the damn thing or use the boot menu.

And I had at least one board from that time period which has this same flaw, but with the added layer of joy and excitement that they've removed the PS/2 port block in order to appear "modern." It's still there, of course, but only as a pin header that you need to access from inside the case and plug a breakout board into. If you lose that board the gods themselves couldn't even help you. I used to keep it stuck with painters tape to the inside of the case side panel.

[-] caseyweederman@lemmy.ca 1 points 5 hours ago

I thought I had dreamed those days

[-] caseyweederman@lemmy.ca 1 points 5 hours ago

Terrible, dark dreams

[-] sylver_dragon@lemmy.world 4 points 11 hours ago

Never mind recent motherboards, I’m still salty about the era of boards from 2004-2010 or so which had USB ports but the BIOS would refuse to accept inputs from them until after POST so you’d have to dredge up a separate PS/2 keyboard and jack it in to be able to configure the damn thing or use the boot menu.

Had one of these in a server rack. Which was all kinds of fun because the rack KVM was USB. We ultimately just left the PS/2 keyboard plugged in and sitting on top of the server in the rack. Given the shitshow which was cable management in those racks (we shared them with several departments), that keyboard was hardly the worst sin.

[-] grue@lemmy.world 2 points 12 hours ago

I don't know about AM5, but I'm running a 5700X3D on a motherboard that still has a PS/2 port. (Not that I'm using it, but it's there.) You can still have a pretty modern system with PS/2 if you really want it.

X670 tier boards were some of the last to have PS/2. I got an X870 board :(

[-] grue@lemmy.world 1 points 6 hours ago

Mine is a B350 -- I'm still running the same motherboard I used 7 years ago with my old Ryzen 1700X. Considering how much depends on the CPU these days instead of the chipset, does it even really matter if the chipset is older?

[-] Sabin10@lemmy.world 5 points 15 hours ago

Don't forget the xt/at port

[-] codexarcanum@lemmy.dbzer0.com 1 points 15 hours ago
this post was submitted on 23 May 2025
522 points (100.0% liked)

linuxmemes

25040 readers
1886 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  •  

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS