• AllNewTypeFace
    link
    fedilink
    arrow-up
    45
    arrow-down
    1
    ·
    30 days ago

    “Hand-written assembly” is not more powerful than any other Turing-complete language (including Perl and Python), just more painfully slow and prone to human error to write. (Perhaps if you have a special case requiring speed (such as the processing being done in a tight loop in a financial trading app and the results needing to beat rival trading systems by milliseconds or something equally esoteric), it’d make sense, but in that case, a modern compiler (for, say, C/C++/Rust or similar) would yield comparable results, and if a lot is riding on those milliseconds, you’d eschew code and build a FPGA that pulls the data out of memory buffers in hardware or similar.)

    So these days, the only use case for hand-writing assembly language (other than low-level OS/firmware programming or compiler development) is performative Feats Of Strength, where the challenge is the point. And in that case, you’d be trying to do something heroically challenging, like writing an Atari 2600 demake of Baldur’s Gate or something.

    • stingpie@lemmy.world
      link
      fedilink
      arrow-up
      19
      ·
      30 days ago

      Hand written assembly is much more powerful than a turing-complete high level language because it lets you fuck up everything. Rust and python are way too wimpy to allow a user to destroy their computer.

      • vext01@lemmy.sdf.org
        link
        fedilink
        arrow-up
        1
        ·
        29 days ago

        On the other hand you can’t really have UB in code written in asm.

        Just throwing that out there!