Набор инструкций (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

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

Набор инструкций — это как книга правил для настольной игры. Она говорит, какие ходы разрешены, какие есть фигуры и как играть. Разные процессоры имеют разные книги правил.

🤓 Expert Deep Dive

x86 (CISC) использует сложные инструкции переменной длины, а ARM (RISC) — более простые и фиксированные для энергоэффективности.

📚 Источники