陆续写些关于新书《自己动手写CPU》的博客,本篇主要是讲解简单修改gem5的默认例子hello world
gem5默认的例子是hello world,在tests/test-progs/hello/src文件夹下,内容如下:
#include <stdio.h> int main() { printf("Hello world!\n"); }
#include <stdio.h> int main() { printf("Hello world! GEM5\n"); }
使用如下语句编译,注意加上--static选项:
gcc --static hello.c -o hello
/usr/bin/ld: cannot find -lc collect2: ld 返回 1
rpm -ql glibc-static
yum install glibc-static
将生成的hello复制到tests/test-progs/hello/bin/x86/linux文件夹下。然后使用如下命令测试:
./build/X86/gem5.opt ./configs/example/se.py -c ./tests/test-progs/hello/bin/x86/linux/hello
Hello world! GEM5
注意:需要提前有文件./build/X86/gem5.opt,生成方法如下:
scons build/X86/gem5.opt
原文地址:http://blog.csdn.net/leishangwen/article/details/43151801