After a project is created in FortisIDE, various file types are found in the WorkSpace window. What are they?
A project includes all the information for creating a specific program. A newly created project should include 8 types of files: *.spj, *.rc, *.set, *.env*, *.asm, prog.lik, *.cmd, *.inc. After the project is built, FortisIDE will automatically add these 8 files into it. 1. *.spj, *.rc, *.set, *.env (with the same name as the project): System Files. .spj can represent the type of a project file. Users can open a project through clicking a *.spj file. 2. *.asm: Assemble Language Program Files 3. prog.lik: It can direct the linker to link object files. Open this file and directly modify the contents in the file. 4. *.cmd (with the same name as the project): It can inform the ICE / emulation board how to download binary files (.tsk /.bin), namely to decide file mapping on ICE and emulation board. 5. *.inc: Head File. It defines every I/O port and hardware register and it must be contained in sound codes.