mirror of
git://projects.qi-hardware.com/iris.git
synced 2024-11-05 03:37:30 +02:00
32 lines
310 B
Plaintext
32 lines
310 B
Plaintext
|
#!/bin/sh
|
||
|
cat << EOF
|
||
|
.globl init_start
|
||
|
.globl thread_start
|
||
|
.set noreorder
|
||
|
.balign 0x1000
|
||
|
EOF
|
||
|
|
||
|
for i in "$@" ; do
|
||
|
cat << EOF
|
||
|
$i:
|
||
|
.incbin "fs/$i.elf"
|
||
|
.balign 0x1000
|
||
|
EOF
|
||
|
done
|
||
|
|
||
|
cat << EOF
|
||
|
end_threads:
|
||
|
init_start:
|
||
|
thread_start:
|
||
|
EOF
|
||
|
|
||
|
for i in "$@" ; do
|
||
|
cat << EOF
|
||
|
.word $i
|
||
|
EOF
|
||
|
done
|
||
|
|
||
|
cat << EOF
|
||
|
.word 0
|
||
|
EOF
|