Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:
общая лексика
eXecutive In Place
спецификация "выполнение на месте"
спецификация, позволяющая операционной системе или приложениям исполняться из ПЗУ или флэш-памяти PC-карты без предварительной загрузки в ОЗУ системы, что в принципе позволяет уменьшить его объём
общая лексика
спецификация EXIP
вариант XIP-спецификации, предусматривающий отображение содержимого целой платы памяти PCMCIA на одно общее адресное пространство процессора типа 386 или 486
Смотрите также
In computer science, execute in place (XIP) is a method of executing programs directly from long-term storage rather than copying it into RAM. It is an extension of using shared memory to reduce the total amount of memory required.
Its general effect is that the program text consumes no writable memory, saving it for dynamic data, and that all instances of the program are run from a single copy.
For this to work, several criteria have to be met:
The storage requirements are usually met by using NOR flash memory or EEPROM, which can be addressed as individual words for read operations, although it is a bit slower than normal system RAM in most setups.