how much memory can be accessed by a 32 bit machine?

前端 未结 7 1411
忘了有多久
忘了有多久 2020-12-02 06:40

What is meant by 32bit or 64 bit machine?

It’s the processor architecture…a 32 bit machine can read and write 32bit data at a time same way with 64 bit machine….

相关标签:
7条回答
  • 2020-12-02 07:47

    Basically, the term "x-bit machine" does not depend on your machine. That is why we do not need to change our processors or other hardware in order to migrate from a 32bit system to a 64bit one (or vice versa).

    32bit and 64bit stands for the addressing capability of the OS running on your machine.

    However, it still does not mean that a x-bit operating system is capable to address 2^x GB memory. Because the 'B' in "GB" means "byte" and not "bit". 1 byte equals 8 bits.

    Actually a 32bit system can not even address 2^32/8 = 2^29 GB memory space while there should some memory be reserved to the OS.

    It is something just below 3 GB.

    0 讨论(0)
提交回复
热议问题