summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/or1k/or1ksim/README
blob: 9ce5709e0532f0648f37053044ba6daade895753 (plain) (blame)
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
This BSP should run only on or1ksim: the main simulator for or1k architecture.
or1ksim should be used for testing purposes.

svn co http://opencores.org/ocsvn/openrisc/openrisc/trunk/or1ksim
cd or1ksim
mkdir builddir_or1ksim
cd builddir_or1ksim
../configure --target=or32-elf --prefix=/opt/or1ksim
make all
make install
export PATH=/opt/or1ksim/bin:$PATH

Configuration file "sim.cfg" should be provided for complex board
configurations at the current directory (which you run or1ksim from) or at
~/.or1k/

The current sim.cfg file that configures or1ksim emulator to RTEMS/or1ksim BSP
is at the same directory as this README. You can also use or1ksim script from
rtems-tools/sim-scripts.

From command line type:

sim -f sim.cfg $PATH_TO_RTEMS_EXE

or (if you use a stable or1ksim release)

or32-elf-sim -f sim.cfg $PATH_TO_RTEMS_EXE

from sim-scripts:

or1ksim $PATH_TO_RTEMS_EXE

and then attach GDB to or1ksim from another terminal by running

or1ksim-gdb $PATH_TO_RTEMS_EXE