Computer RAM gets biggest upgrade in 25 years but it may be too little, too late — LPCAMM2 won’t stop Apple, Intel and AMD from integrating memory directly on the CPU::LPCAMM2 is a revolution in RAM, but it faces an uphill struggle
Computer RAM gets biggest upgrade in 25 years but it may be too little, too late — LPCAMM2 won’t stop Apple, Intel and AMD from integrating memory directly on the CPU::LPCAMM2 is a revolution in RAM, but it faces an uphill struggle
I’m familiar with what RAM is for.
The idea I’m getting at is, back in the day computer software especially video games came on ROM cartridges, which were little more than a plastic shell around a small circuit board that had a ROM chip or two, maybe a battery backed RAM chip to save game progress if you’re Nintendo. This ROM was attached to the same data bus on the CPU as the system’s built-in RAM, which meant the CPU could read from it just like RAM. This meant that cartridge-based systems didn’t need as much total RAM, because instructions, graphics, audio etc. were read directly from ROM, and it didn’t have to load instructions or graphics into memory before executing/displaying them. So no loading screens.
Modern computer SSDs are attached via SATA or at best the PCIe bus, and the CPU has to interact with a controller on the device to get data loaded into memory before it can be executed. Could you attach some non-volatile storage on the same bus with the RAM. Like, the average ATX motherboard has 4 RAM slots, right? Could you mount two sticks of RAM and two sticks of non-volatile storage that exists in the memory address space?
Google linux swap and ramdisk, also cache systems of modern filesystems like bcache, what you think of was already created one way or another, but you probably trying to say that we shouldn’t need to upload data to ram at all, well, data usually compressed or/and encoded so it needs space to uncompress/decode and here’s where ram/swap comes into action, also you can compress ram/swap to get more space look up zram zswap, also there’s linux kernel patches for ram deduplication, also if you manipulate swappiness you can regulate which data uploads to swap (higher numbers upload to swap unsaved data and data which was on disk already gets uploaded from disk thus saving ram space) all ram optimisations you can think of is already implemented