-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL
More file actions
32 lines (18 loc) · 662 Bytes
/
INSTALL
File metadata and controls
32 lines (18 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
REQUISITE SOFTWARE
To use micc, the following software must already be installed:
Linux
GCC
gputils (GNU PIC Utilities)
INSTALLATION
To install micc:
make
make install # This must be done as root.
To uninstall micc:
make uninstall # This must be done as root.
To compile one or more source files into a binary file:
micc -o program.hex file1.c file2.c ...
This can also be done in two stages, generating assembly language (.s)
from each C source file and then linking them together:
micc -c file1.c file2.c ...
micc -o program.hex file1.s file2.s ...
There must be exactly one main() function per final binary file.