Revision 36,
1.0 KB
checked in by pntsvt00, 14 years ago
(diff) |
modificati i file per la compilazione. boot.s linkato a 0xFFF0000020
|
Rev | Line | |
---|
[18] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | ##bisognerebbe fare un makefile ma per ora: |
---|
| 4 | |
---|
[30] | 5 | if [ ! $# == 1 ]; then |
---|
| 6 | echo "usage: compila nome_file (without extension)" |
---|
| 7 | exit 0 |
---|
| 8 | fi |
---|
| 9 | |
---|
| 10 | |
---|
[33] | 11 | #assembla il boot.S |
---|
[36] | 12 | echo "create boot.o" |
---|
| 13 | /opt/sparc64-sun-solaris2.8-toolchain/bin/sparc-sun-solaris2.8-as -xarch=v9 -64 boot.S -o boot.o |
---|
[33] | 14 | |
---|
[18] | 15 | ## compila con ISA SPARC-V9 |
---|
[36] | 16 | echo "compile $1.c" |
---|
[33] | 17 | /opt/sparc64-sun-solaris2.8-toolchain/bin/sparc64-sun-solaris2.8-gcc -m64 -ffreestanding -nostdinc -Os -c $1.c |
---|
[18] | 18 | |
---|
[30] | 19 | ## linka con ISA SPARC-V9 a 64 bits |
---|
| 20 | echo "create $1.bin" |
---|
[36] | 21 | #/opt/sparc64-sun-solaris2.8-toolchain/sparc64-sun-solaris2.8/bin/ld -melf64_sparc --script linker.lds boot.o $1.o -o $1.bin |
---|
[30] | 22 | |
---|
[36] | 23 | ### da codice S1 |
---|
| 24 | /opt/sparc64-sun-solaris2.8-toolchain/sparc64-sun-solaris2.8/bin/ld -melf64_sparc --script=linker.map -EB -o $1.bin boot.o $1.o |
---|
[30] | 25 | |
---|
[36] | 26 | |
---|
[18] | 27 | ## fa il dump del file |
---|
[36] | 28 | /opt/sparc64-sun-solaris2.8-toolchain/sparc64-sun-solaris2.8/bin/objdump -zD $1.bin >$1.dump |
---|
[19] | 29 | |
---|
| 30 | ### crea memory.hex |
---|
[30] | 31 | echo "create memory_hello.hex for simulation" |
---|
| 32 | |
---|
| 33 | ../tools/dump2hex.php <$1.dump >../sim/memory_hello.hex |
---|
Note: See
TracBrowser
for help on using the repository browser.