Introduction
Welcome to PCCOMP (the Picolaze's C Compiler).
If you are a FPGA designer and you are using picoblaze you will be happy to see a C compiler for Picoblaze.
The advantages of using a C compiler rather than assembler are obvious.
1. C is easy.
2. C is a portable language.
3. To debug and write a program in assembler may be very complicated.
The main disadvantage is that a program in C is not “short” as it would be if it was written in assembler
This compiler doesn't do any kind of code optimization. That is because at the moment I want to design
something that works correctly, even if is not efficient in terms of speed and code length. When the compiler is
completed maybe I will start to design the optimizer.