-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.origin.txt
44 lines (29 loc) · 1.32 KB
/
README.origin.txt
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
32
33
34
35
36
37
38
39
40
41
42
43
44
This is the ARMv5 ArchC 2.2 functional model.
This model has the system call emulation functions implemented,
so it is a good idea to turn on the ABI option.
To use acsim, the interpreted simulator:
acsim arm.ac -abi (create the simulator)
make -f Makefile.archc (compile)
arm.x --load=<file-path> [args] (run an application)
The [args] are optional arguments for the application.
There are two formats recognized for application <file-path>:
- ELF binary matching ArchC specifications
- hexadecimal text file for ArchC
To generate binary utilities use:
acbingen.sh -i<abs-install-path> -a<arch-name> arm.ac
This will generate the tools source files using the architecture
name <arch-name> (if omitted, armv5e is used), copy them to the
binutils source tree, build and install them into the directory
<abs-install-path> (which -must- be an absolute path).
Use "acbingen.sh -h" to get information about the command-line
options available.
For more information visit http://www.archc.org
CHANGELOG:
==========
Version 0.7.0:
- Model passed selected Mediabench and Mibench applications
- ArchC 2.1 compliant
- Support for automatic generation of binary tools
- Support for dynamic linker and loader when reading ELF files
- Support for GDB
- Support for compiled simulator and interpreted simulator