• @TrickDacy
    link
    English
    115 months ago

    Besides being a maintenance fucking nightmare, wouldn’t writing a game in assembly make it a lot harder to be cross platform? I really don’t get that panel.

    • @MimicJar
      link
      English
      85 months ago

      Yes, yes it would. They meant to say that it would improve performance (if done well, which it was). That improved performance would allow it to run on a wide variety of devices, including those with low specs.

      Also at the time writing for x86 only would have been plenty portable. Even today that would cover “standard” PC architecture. (Although nowadays you probably want to put it on mobile devices, gaming consoles or macOS, so not ideal.)

      • @TrickDacy
        link
        English
        55 months ago

        Yeah, it being about performance makes sense. Still don’t know how that dude managed to write a full-ass game in assembly though. Takes a special brain to even be able to think that way.

    • @clearleaf
      link
      English
      35 months ago

      That idea comes from the tycoon games because they run on newer windows versions easily. But it’s not because they were made in assembly. Any programming language can do that as long as the program doesn’t depend on specific OS features that get changed or removed. I think assembly is just synonymous with everything being from scratch.

    • @lunarul
      link
      English
      25 months ago

      I kept scrolling for this comment. Writing in assembly means you can only write for one specific instruction set. The innovation of programming languages was not just making things easier to write, it was the compiling step which could take the same code and produce machine code output for different systems, making it much easier to support multiple platforms.

      • @TrickDacy
        link
        English
        05 months ago

        Yeah exactly. Apparently they meant “most machines” as in “most machines that could run windows”. Like in a performance sense. Weird way to put it imo, since “most machines” to me would refer to platform concerns.