URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
Compare Revisions
- This comparison shows the changes necessary to convert path
/
- from Rev 96 to Rev 97
- ↔ Reverse comparison
Rev 96 → Rev 97
/eco32/trunk/stdalone/README
0,0 → 1,22
There are four different methods to run a standalone program. |
|
1. Simulator: Load the program with the '-l' command-line option |
into the simulated memory; use '-a 0x10000' to set the load |
address. Each Makefile has a target 'run' to automate this. |
|
2. Simulator: Pack the program onto a simulated disk (this will |
happen automatically if you use the Makefile target 'run-sim' |
in the subdirectory build/run). Boot this disk. Choose the |
partition with the bootable EOS32 file system, and enter |
'/boot/<progname.bin>' as the 'path to kernel'. |
|
3. FPGA: Load the program with the help of the load server. Type |
'loadserv <progname.exo>' on the PC side, and 'load 1' on the |
FPGA side (which runs the machine monitor). |
|
4. FPGA: Pack the program onto a simulated disk (this will |
happen automatically if you use the Makefile target 'run-server' |
in the subdirectory build/run). Make the disk available for |
use with the help of the disk server. Type 'diskserv <disk.img>' |
on the PC side, and 'boot 1' on the FPGA side (which runs the |
machine monitor). Then proceed as in 2. |