What’s the difference between a “32-bit” and “64-bit” game? How does this affect the engine and how much RAM it can use?

208 views

This hit me today as I was prepping some pasta. I’ve got a relatively beefy gaming rig that has 12 gigs of VRAM and 48 gigs of normal RAM. However, older games will still have a tendency to drop frames when a lot of stuff is happening at once, even with these standards. From what I’ve read this is because there’s something in the games, or their engines, or whatever that means they can’t use the full RAM capacity of my computer or draw from it as much as they need. I’ve even noticed this when configuring game settings for, as an example, *Total War: Rome II*, where even though it detects my graphics card it won’t draw on its full strength to get what it needs, always locking at around 3-4 gigs. By contrast, the more modern *Total War: Warhammer III* can use my rig’s full power, meaning I basically never drop frames when playing it.

Why is this? What inherently stops 32 bit games from using more VRAM?

In: 3

8 Answers

Anonymous 0 Comments

Bits are like the number of places in a number. For example, the number 100 has three places. You can represent any number between 0 and 100. The number 1,000 has four places and can represent any value between 0 and 1,000.

All of the numbers we use on a daily basis are based on the number 10. Hence, we call it a base 10 number system. You count up: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, then you roll over to the next “place” to get 10.

If you need to keep track of 10 items, you need only need 2 places. If you need to keep track of 100,000 of items, you need 6 places.

Binary numbers are similar, but they are base 2 instead. So you count up: 0, 1, then you roll over to the next place to get 10. It helps to think in terms of quantity instead of numbers:

|Quantity|Base 10|Base 2|
|:-|:-|:-|
|zero|0|0|
|•|1|1|
|••|2|10|
|•••|3|11|
|••••|4|100|
|•••••|5|101|
|••••• •|6|110|
|••••• ••|7|111|
|••••• •••|8|1000|
|••••• ••••|9|1001|
|••••• •••••|10|1010|

In order for your system to use memory, it has to keep track of the memory available. This is called addressing. For example, if you had 10 “slots” of memory, you’d need two places to keep track of the memory using base 10, but because computers store information using binary (base 2), you’d need four places in binary. We call these binary places “bits”.

So if you have 12 GB, you need more bits to keep track of it all. That’s where 64-bit architecture has an advantage. It can keep track of massive amounts of memory using a single number. 32-bit architecture has fewer places, so it either has to rely on tricks (like dividing up memory addressing into chunks), or simply cannot address any more.

You are viewing 1 out of 8 answers, click here to view all answers.