Convert PIC assembly instructions to machine code

I saw that there are certain formats for converting MIPS build instructions into machine code. There should be a similar procedure for converting a PIC assembly to native code manually. Can you kindly provide me with documentation related to this?

+4
source share
3 answers

Microchip specifications contain references to a set of instructions, including the instruction coding order. Please note that most of the series are completely different (for example, 16 and 18 series are not similar to each other), so make sure that you get the correct technical description.

Here is an example 16F627A taken from page 118 of the PIC16F627A datasheet : Pic16 instruction set reference

+4
source

Something like this guide should do.

But he can’t resist: why do you do it manually?

+2
source

You are probably looking for the MIPS32® M4K® instruction set. If so, you can find everything on the MIPS homepage .

0
source

All Articles