tomshardware.com

dan1101, do games w Asus ROG Ally mentioned in latest SteamOS 3 beta release notes — Valve's platform expansion ambitions take shape

That would be smart to support specific handhelds with consistent sets of hardware instead of all the random combinations of hardware that most PCs have.

sanpo,

That’s not really on Valve though.

It’s the hardware makers that needs to step up and make sure their Linux drivers are well written.

I’m tired of having to install patched kernels to get basic functionality on laptops (looking at you Asus!).

simple, do games w Ayaneo officially enters the U.S. gaming market — $399 Next Lite and $999 Kun now available at Best Buy

About time. Very weird that you had to jump through hoops to get them before.

TastehWaffleZ, do games w Ayaneo officially enters the U.S. gaming market — $399 Next Lite and $999 Kun now available at Best Buy

Looks like the N-Gage grew up 🥹

this, do games w Ayaneo officially enters the U.S. gaming market — $399 Next Lite and $999 Kun now available at Best Buy
@this@sh.itjust.works avatar

I love my steam deck, but I’m also glad to see more competition in the handheld gaming pc market.

riskable, do games w Ayaneo officially enters the U.S. gaming market — $399 Next Lite and $999 Kun now available at Best Buy
@riskable@programming.dev avatar

The thing runs Windows so it’s not a Steam Deck competitor… It’s a has-been at launch.

Windows is absolute garbage for a handheld gaming device. When are these manufacturers going to learn and just ship the things with Linux? Many Chinese devices (made for running emulators) ship with some customized Linux so why aren’t more mainstream manufacturers doing it? Seems like a no-brainer to make a better device and save money on licensing costs.

helenslunch,
@helenslunch@feddit.nl avatar

It’s a handheld PC with a built-in controller. I don’t know how you can say that it’s not a competitor. Plenty of people are happy to deal with Windows for whatever reason. Just because you don’t like it doesn’t make it not a competitor.

If I wanted to make an argument for why it’s not, I’d say it’s because it doesn’t matter what hardware you have, they’re all going to be used to buy games on Steam.

HKayn,
@HKayn@dormi.zone avatar

I don’t know how you can say that it’s not a competitor.

It’s because they’re hyperfixated on Linux, just like the majority of the Lemmy userbase.

In reality any x86-based handheld is potential competition for the Steam Deck.

jacksilver,

The answer to your question is in your comment. The reason is that those devices are designed to run emulators (usually nothing past gamecube/ps2 era). They run Android because Android has support for emulating software, but the chips used in those devices aren’t designed to run current Gen games nor are they usually designed to run most Linux distros.

Although someone could try to do it, but if I had to guess it’s more work to do it right (Valve made a custom OS for the steamdeck).

jay, do games w Ayaneo officially enters the U.S. gaming market — $399 Next Lite and $999 Kun now available at Best Buy
@jay@mbin.zerojay.com avatar

There's very little reason to buy this when Best Buy is selling the ROG Ally X for $200 cheaper with bigger battery, better performance, better screen, better support, etc... But will say I'm glad to see Ayaneo making it into Best Buy at all. Just... needed to be a year earlier.

DumbAceDragon, do games w Ayaneo officially enters the U.S. gaming market — $399 Next Lite and $999 Kun now available at Best Buy
@DumbAceDragon@sh.itjust.works avatar

I will say I do like the metallic silver. Very 2000s.

intensely_human, do games w Ayaneo officially enters the U.S. gaming market — $399 Next Lite and $999 Kun now available at Best Buy

This is a bad marketing photo because it takes way too long to realize it’s an image of a coastline or something. It looks like the reflection off a glossy and warped screen.

heartfelthumburger, do gaming w AMD's Z2 Extreme CPU for next-gen gaming handhelds will arrive in early 2025
@heartfelthumburger@sopuli.xyz avatar

Hoping for a Steam Deck 2 with this

geneva_convenience,
@geneva_convenience@lemmy.ml avatar

This chip is going to be more expensive. Unless Valve releases a deck “pro” I don’t see it happening.

sunzu2,

I thought they said theybwont release a new deck until next gen. Is this thing not next gen?

notfromhere,

Hoping for Deckard with this.

simple, do games w AMD deprioritizing flagship gaming GPUs: Jack Hyunh talks new strategy against Nvidia in gaming market

That’s one way to admit they couldn’t catch up to Nvidia.

vorpuni,
@vorpuni@jlai.lu avatar

Not necessarily a bad thing if they can make the prices lower, if most people end up buying cheaper but adequate hardware developers will have an incentive to make their games work with that hardware. We have seen what games with NVidia partnerships ended up with in terms of bugs with ATI GPUs but aren’t those problems less severe now?

simple,

Definitely not a bad thing, I’d love more competition in the mid-range because so far AMD GPUs recently have basically been slightly worse than Nvidia at slightly lower prices. I still think GPUs like the 4060 are way too expensive, so if AMD actually undercuts them it could be nice for everyone.

ms_lane,

Very strange way of saying RDNA4 chiplets simply didn’t work.

Carighan, do games w AMD deprioritizing flagship gaming GPUs: Jack Hyunh talks new strategy against Nvidia in gaming market
@Carighan@lemmy.world avatar

I mean, yeah? ATI was great as a budget alternative, less performance but more value. Please go back to that!

LainTrain, do games w Expanded Steam gaming compatibility likely coming to Arm chips with hundreds of Windows games — Valve testing ARM64 Proton compatibility layer

A natural next step is to make a Steam Deck Mini of some sort once the compat is good enough for at least a hundred games or so.

poke,

The goal could also be PC gaming on a standalone VR headset.

steventhedev, do games w Expanded Steam gaming compatibility likely coming to Arm chips with hundreds of Windows games — Valve testing ARM64 Proton compatibility layer

From what I’ve understood of this - it’s transpiling the x86 code to ARM on the fly. I honestly would have thought it wasn’t possible but hearing that they’re doing it - it will be a monumental effort, but very feasible. The best part is that once they’ve gotten CRT and cdecl instructions working - actual application support won’t be far behind. The biggest challenge will likely be inserting memory barriers correctly - a spinlock implemented in x86 assembly is highly unlikely to work correctly without a lot of effort to recognize and transpile that specific structure as a whole.

BorgDrone,

it’s transpiling the x86 code to ARM on the fly. I honestly would have thought it wasn’t possible

Apple’s been doing it for years. They try to do ahead of time transpiling wherever they can but they also do it on-the-fly for things like JITed code.

steventhedev,

I thought FAT binaries don’t work like that - they included multiple instruction sets with a header pointing to the sections (68k, PPC, and x86)

Rosetta to the best of my understanding did something similar - but relied on some custom microcode support that isn’t rooted in ARM instructions. Do you have a link that explains a bit more in depth on how they did that?

BorgDrone,

Fat binaries contain both ARM and x86 code, but I was referring to Rosetta, which is used for x86-only binaries.

Rosetta does translation of x86 to ARM, both AOT and JIT. It does translate to normal ARM code, the only dependency on a Apple-specific custom ARM extension is that the M-series processors have a special mode that implements x86-like strong memory ordering. This means Rosetta does not have to figure out where to place memory barriers, this allows for much better performance.

So when running translated code Apple Silicon is basically an ARM CPU with an x86 memory model.

steventhedev,

That makes a lot of sense - I wonder if they also do the SIGSEGV trick like HotSpot to know when they need to JIT the next chunk of instructions

M500,

There is an open source project that already does this a bit called box86 and box64.

I think you can find videos of people running Skyrim on arm chips like phones or maybe raspberry pi 5.

They don’t run well, but with more powerful chips and valves experience and money, I’m sure they can do it.

steventhedev,

But does it run Doom? Using CMOV instructions only?

Blum0108,
DannyBoy, do games w Expanded Steam gaming compatibility likely coming to Arm chips with hundreds of Windows games — Valve testing ARM64 Proton compatibility layer

I mentioned this on a related article already but it’d be interesting to see an ARM Steamdeck after seeing the performance and battery life of the Apple desktop chips. I think gaming will eventually go the way of ARM.

Stern, do games w Steven Spielberg is ‘a big PC Gamer’ — loves shooters, and insists on keyboard and mouse
@Stern@lemmy.world avatar

Insists on KBM

A man of culture.

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • FromSilesiaToPolesia
  • test1
  • krakow
  • fediversum
  • esport
  • rowery
  • tech
  • muzyka
  • turystyka
  • NomadOffgrid
  • Technologia
  • Psychologia
  • ERP
  • healthcare
  • Gaming
  • Cyfryzacja
  • Blogi
  • shophiajons
  • informasi
  • retro
  • Travel
  • Spoleczenstwo
  • gurgaonproperty
  • slask
  • nauka
  • sport
  • Radiant
  • warnersteve
  • Wszystkie magazyny