Interpreters
What are we really interpreting?
Interpreters are functions that we write in our programming langage without a requirement of them to be compiled into machine code.
We can take a function like SWV to see the interpreted code
But, How do you know what to execute?
During the process of reading the source code, one instruction at a time, each instruction is decoded through the Opcode and then executed immediately.
And through this, can get the needed instruction and execute the function that is mapped to the original location.