Eli5 : What is the difference between ISA and Kernel?

253 views

I used to thing that Kernel is the middle-man between hardware and software but i came across this article http://hackernoon.com/understanding-modern-cpu-architecture-part-1
And I confused.

Help me to understand what is the difference between them. Or they are different name for same thing.

In: 0

5 Answers

Anonymous 0 Comments

They are completely different.

Instruction sets architecture (ISA) is a language used to tell the CPU what to do. It defines how you ask the CPU to add, multiply, do other logic, etc.

The kernel is an operating system concept. It is the core code behind an operating system, whose primary job is to provide an environment and tools for programs to run. The kernel is the code that decides what programs to run in what order, allowing programs to access resources they need to run, etc.

You are viewing 1 out of 5 answers, click here to view all answers.