Sunshine to Linux@programming.devEnglish • 13 days agoLinus Torvalds Rejects RISC-V Changes For Linux 6.17: "Garbage"www.phoronix.comexternal-linkmessage-square44fedilinkarrow-up1156arrow-down17
arrow-up1149arrow-down1external-linkLinus Torvalds Rejects RISC-V Changes For Linux 6.17: "Garbage"www.phoronix.comSunshine to Linux@programming.devEnglish • 13 days agomessage-square44fedilink
minus-square@zygo_histo_morpheus@programming.devlinkfedilink2•12 days agoOh my bad I don’t know where I got that from lol
minus-square@FizzyOrange@programming.devlinkfedilink3•12 days agoNw. You’re also wrong about endianness. This function would be written exactly the same irrespective of endianness: uint32_t u16_high_low_to_u32(uint16_t high, uint16_t low) { return (high << 16) | low; } That is endian agnostic.
Oh my bad I don’t know where I got that from lol
Nw. You’re also wrong about endianness. This function would be written exactly the same irrespective of endianness:
uint32_t u16_high_low_to_u32(uint16_t high, uint16_t low) { return (high << 16) | low; }
That is endian agnostic.