• umbraroze
    link
    fedilink
    201 year ago

    Oh you fancy PC people and your fancy syscall instruction.

    I still don’t know why I could remember jsr $ab1e. I didn’t even write that much assembly.

  • r00ty
    link
    fedilink
    171 year ago

    Or, you could just go the whole hog. Create your own simple CPU emulator, design a basic 8bitesque CPU, give it an output port that is the console, and load up some basic ASM to cycle through Hello World to the console port.

  • DumbAceDragon
    link
    fedilink
    English
    151 year ago

    echo "Hello world"

    This is different from the other two echos here, this is Nim not Bash.

  • @[email protected]
    link
    fedilink
    12
    edit-2
    1 year ago

    Definitely left. Right one won’t be optimized. (And there are so many some mistakes in your inline asm…)

      • @[email protected]
        link
        fedilink
        51 year ago

        Mostly the missing listing of clobbered registers. Other than that it’s mostly just that you’re doing useless things, like manually putting the stuff into the registers instead of letting the compiler do it, and the useless push and pop. And the loop is obviously not needed and would hurt performance if you do every write like that.

        asm!(
        "syscall",
        in("rax") 1,
        in("rdi") 1,
        in("rsi") text_ptr,
        in("rdx") text_size,
        
        )
        

        (“so many” was inappropriate, sorry.)

  • @[email protected]
    link
    fedilink
    5
    edit-2
    1 year ago

    Ec Emm this side is the best one …

    ++++++++[< +++++++++>-]<. ++++[<+++++++>-]<+. +++++++… +++.

    ++++++[<+++++++>-]<++. ------------. ++++++[<+++++++++>-]<+. <. +++. ------. --------.

    ++++[<++++++++>-]<+.

  • Arthur Besse
    link
    fedilink
    English
    3
    edit-2
    1 year ago

    dc <<<'10435358689859 70511561 11297399 23 5 3 2 ******P'

    note: lemmy’s “smart quotes” vs its input sanitization required me to code-format the second half of that line (and not the first half) to make it copy+paste runnable.