summaryrefslogtreecommitdiffstats
path: root/zpu/roadshow/roadshow/helloworld
diff options
context:
space:
mode:
authorBert Lange <b.lange@hzdr.de>2015-04-15 13:36:55 +0200
committerBert Lange <b.lange@hzdr.de>2015-04-15 13:36:55 +0200
commita1c964908b51599bf624bd2d253419c7e629f195 (patch)
tree06125d59e83b7dde82d1bb57bc0e09ca83451b98 /zpu/roadshow/roadshow/helloworld
parentbbfe29a15f11548eb7c9fa71dcb4d2d18c164a53 (diff)
parent8679e4f91dcae05aef40f96629f33f0f4161f14a (diff)
downloadzpu-a1c964908b51599bf624bd2d253419c7e629f195.zip
zpu-a1c964908b51599bf624bd2d253419c7e629f195.tar.gz
Merge branch 'master' of https://github.com/zylin/zpu
Diffstat (limited to 'zpu/roadshow/roadshow/helloworld')
-rw-r--r--zpu/roadshow/roadshow/helloworld/build.sh6
-rw-r--r--zpu/roadshow/roadshow/helloworld/test.binbin0 -> 49836 bytes
-rw-r--r--zpu/roadshow/roadshow/helloworld/test.c12
-rw-r--r--zpu/roadshow/roadshow/helloworld/test.elfbin0 -> 279826 bytes
-rw-r--r--zpu/roadshow/roadshow/helloworld/test.zpubin0 -> 262353 bytes
5 files changed, 18 insertions, 0 deletions
diff --git a/zpu/roadshow/roadshow/helloworld/build.sh b/zpu/roadshow/roadshow/helloworld/build.sh
new file mode 100644
index 0000000..8069e36
--- /dev/null
+++ b/zpu/roadshow/roadshow/helloworld/build.sh
@@ -0,0 +1,6 @@
+zpu-elf-gcc test.c -o test.elf -phi
+zpu-elf-objcopy -O binary test.elf test.bin
+sh ../build/makefirmware.sh ../build/ic300.bit test.zpu test.bin
+
+
+
diff --git a/zpu/roadshow/roadshow/helloworld/test.bin b/zpu/roadshow/roadshow/helloworld/test.bin
new file mode 100644
index 0000000..540ccaf
--- /dev/null
+++ b/zpu/roadshow/roadshow/helloworld/test.bin
Binary files differ
diff --git a/zpu/roadshow/roadshow/helloworld/test.c b/zpu/roadshow/roadshow/helloworld/test.c
new file mode 100644
index 0000000..5243468
--- /dev/null
+++ b/zpu/roadshow/roadshow/helloworld/test.c
@@ -0,0 +1,12 @@
+/* zpu-elf-gcc -g -Wl,--relax test.c -phi -o hello.elf */
+int main(int argc, char **argv)
+{
+ for (;;)
+ {
+ int c;
+ printf("Hello world!\n");
+ printf("Press any key!\n");
+ c=inbyte();
+ printf("You pressed (%02x) '%c'\n", c, c);
+ }
+}
diff --git a/zpu/roadshow/roadshow/helloworld/test.elf b/zpu/roadshow/roadshow/helloworld/test.elf
new file mode 100644
index 0000000..bc362ae
--- /dev/null
+++ b/zpu/roadshow/roadshow/helloworld/test.elf
Binary files differ
diff --git a/zpu/roadshow/roadshow/helloworld/test.zpu b/zpu/roadshow/roadshow/helloworld/test.zpu
new file mode 100644
index 0000000..1bee302
--- /dev/null
+++ b/zpu/roadshow/roadshow/helloworld/test.zpu
Binary files differ
OpenPOWER on IntegriCloud