Suppose I wanted to modify the implementation of an existing instruction. For instance, suppose I wanted to change the microcode that is executed by my processor when a "mov" instruction is executed after being fetched and decoded. How would I do that?
Also, suppose I wanted to add a new instruction to the ISA. For instance, suppose there is an opcode that isn't currently being used that I wanted my processor to be able to decode and execute after it is fetched. How would I do that?
Truthfully, I don't even know where to begin with this, which is why I'm asking on stack overflow. I don't have any experience writing microcode, and I only know the term from my computer architecture class. I know it's pretty easy to look up x86 instruction listings, but I don't know where I would even look up microinstruction listings. I don't even know if Intel makes their microcode listings public. I don't know what program I would need to use to load those new microprograms into the appropriate memory inside my CPU. I think the bootloader might be involved, but I could be totally wrong about that. If I own my CPU, I think I am legally able to modify its microcode and reverse engineer its instructions, but it would be easier to understand how my CPU works and how its microcode can be altered through existing documentation, rather than through reverse engineering.
I know there are some smaller hardware vendors that make open source ISAs--so maybe buying a CPU from one of those vendors would be good if I want to experiment with this? But I don't know what CPU from an alternative vendor would be the best for that. But really, I don't think buying a new CPU should be necessary for what I'm trying to do, since I could just use my existing CPU to run an open source ISA in a virtual machine if I had to (I'm interested in microinstructions and microprograms from a software perspective, not a hardware perspective).
You'd:
a) Get a master's degree in Computer Engineering, Computer Science and/or Electrical/Electronic Engineering.
b) Apply for a job at Intel (or AMD), and get it
c) Work your way up the corporate structure to reach a position where you're able to influence the design of future products
Note that a simple
mov
instruction wouldn't use micro-code, so you'd have to change that first.Microcode is encrypted and treated as a trade secret; so "almost nobody on earth" (I'm guessing maybe 20 Intel employees?) has experience writing microcode for Intel CPUs.
"Open source ISA" mostly just means that a huge company that's able to spend many millions of $$ to manufacture their own chips saves about 50 cents on licensing fees.
The practical alternative is to use an FPGA (but the cost and performance is nowhere near what you'd get from a custom ASIC).