Speiser0

joined 2 years ago
[–] Speiser0@feddit.de 5 points 2 years ago (4 children)

Dann aufdatumst du halt später.

[–] Speiser0@feddit.de 1 points 2 years ago (3 children)

For Mario, I totally agree. But Bowser is a king himself, so why would he fall in love with a princess just because she's a princess? I think his plans to marry her are rather for geopolitical reasons: A marriage would lead to a merge of both kingdoms, and the first born Bowser Jr. (who doesn't have Peach in his blood line) would eventually inherit this bigger kingdom.

[–] Speiser0@feddit.de 13 points 2 years ago

I once heard in some history tv show that it's called "dark ages" not because of the bad living conditions, but because we know so few things about it, compared to other history periods.

[–] Speiser0@feddit.de 18 points 2 years ago

This is actually not a melon but a cat. Please don't confuse these two things.

[–] Speiser0@feddit.de 5 points 2 years ago

But doesn't this apply to any kind of sausage we eat?

[–] Speiser0@feddit.de 11 points 2 years ago (1 children)

We all know the issues they're having because of the missing seatbelts. Now imagine someone of them wearing rollerblades.

[–] Speiser0@feddit.de 2 points 2 years ago

Just use str::as_ptr().

Here's an example (disclaimer: I haven't used inline asm in rust before, expect issues): https://godbolt.org/z/sczYGe96f

[–] Speiser0@feddit.de 4 points 2 years ago

Nice art!

Are the bananas from that plant pokemon vegan?

[–] Speiser0@feddit.de 12 points 2 years ago (1 children)

Why are they talking about a bear but showing a picture of nothing but a tree?

[–] Speiser0@feddit.de 6 points 2 years ago (2 children)

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

[–] Speiser0@feddit.de 13 points 2 years ago* (last edited 2 years ago) (4 children)

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

view more: ‹ prev next ›