4 ms·
> Writing a CPU emulator is, in my opinion, the best way to REALLY understand how a CPU works. The 68k disassembler we wrote in college was such a Neo “I know
by t_sea 2y ago
> Writing a CPU emulator is, in my opinion, the best way to REALLY understand how a CPU works.
The 68k disassembler we wrote in college was such a Neo “I know kung fu” moment for me. It was the missing link that let me reason about code from high-level language down to transistors and back. I can only imagine writing a full emulator is an order of magnitude more effective. Great article!
- astrange 2y agoI would say writing an ISA emulator is actually not helpful for understanding how a modern superscalar CPU works, because almost all of it is optimizations that are hidden from you.