Набір інструкцій (ISA)

Інтерфейс між програмним забезпеченням та апаратним.

🌐 Терміни іншими мовами:

An Instruction Set Architecture (ISA) is the abstract model of a computer. It defines the machine language instructions, registers, data types, and memory architecture. It acts as the contract between software developers (or compiler writers) and hardware engineers.

        graph LR
  Center["Набір інструкцій (ISA)"]:::main
  Rel_kernel["kernel"]:::related -.-> Center
  click Rel_kernel "/terms/kernel"
  Rel_api["api"]:::related -.-> Center
  click Rel_api "/terms/api"
  Rel_operating_systems["operating-systems"]:::related -.-> Center
  click Rel_operating_systems "/terms/operating-systems"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧠 Перевірка знань

1 / 1

🧒 Простими словами

Набір інструкцій — це як книга правил для настільної гри. Вона каже, які ходи дозволені, які є фігури і як грати. Різні процесори (як x86 або ARM) мають різні книги правил.

🤓 Expert Deep Dive

x86 (CISC) використовує складні інструкції змінної довжини, тоді як ARM (RISC) — простіші та фіксовані для енергоефективності. Сучасні ISA зазвичай 64-бітні.

📚 Джерела