• Lemminary@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    the other day I needed to read some assembly and decompiled C

    As one casually does lol Jokes aside, that’s pretty cool. I wish I had the technical know-how and, most importantly, the patience for it.

    • FizzyOrange@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      Assembly is very simple (at least RISC-V assembly is which I mostly work with) but also very tedious to read. It doesn’t help that the people who choose the instruction mnemonics have extremely poor taste - e.g. lb, lh, lw, ld instead of load8, load16, load32, load64. Or j instead of jump. Who needs to save characters that much?

      The over-abbreviation is some kind of weird flaw that hardware guys all have. I wondered if it comes from labelling pins on PCB silkscreens (MISO, CLK etc)… Or maybe they just have bad taste.

      I once worked on a chip that had nested acronyms.

      • amorpheus@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        Who needs to save characters that much?

        Do you realize how old assembly language is?

        It predates hard disks by ten years and coincided with the invention of the transistor.