Shon Wang has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/57751 )
Change subject: hello test ......................................................................
hello test
Change-Id: I879d95a2712516b8aeef892bd946dd37c554b063 --- A mytest/hello A mytest/hello.c 2 files changed, 9 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/57751/1
diff --git a/mytest/hello b/mytest/hello new file mode 100755 index 0000000..5f14141 --- /dev/null +++ b/mytest/hello Binary files differ diff --git a/mytest/hello.c b/mytest/hello.c new file mode 100644 index 0000000..daa56d3 --- /dev/null +++ b/mytest/hello.c @@ -0,0 +1,9 @@ +#include<stdlib.h> +#include<stdio.h> + +void main(void) +{ + printf("hello\n"); + + return; +}