• 0 Posts
  • 52 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle













  • 3 and 5.

    5 because it would even work on toasters that can do more than just toast, i.e. a toaster plus computer.

    3 because the other pills don’t sound useful. And it doesn’t say how often I can use this teleportation. So I assume through repeated teleportation I’d be super fast. If it doesn’t also teleport my cloths, I’d probably not use it too often though, apart from changing cloths (the 17.78 cm should be barely enough). It would also be interesting to fly using repeated teleportation. Though if my speed is not also reset through teleportation, I’d still fall, and landing would be dangerous. And if cloths and similar are not teleported with me, I also couldn’t take a parachute or wings with me.




  • 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.)