Last active
December 17, 2015 05:39
-
-
Save cosmo0920/5559878 to your computer and use it in GitHub Desktop.
QEMU実行結果
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% cat /proc/cpuinfo | |
Processor : ARMv7 Processor rev 10 (v7l) | |
processor : 0 | |
BogoMIPS : 790.52 | |
processor : 1 | |
BogoMIPS : 790.52 | |
Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3 | |
CPU implementer : 0x41 | |
CPU architecture: 7 | |
CPU variant : 0x2 | |
CPU part : 0xc09 | |
CPU revision : 10 | |
Hardware : Wandboard | |
Revision : 61011 | |
Serial : 0000000000000000 | |
------- | |
% file hello_i386 | |
hello_i386: ELF 32-bit LSB executable, Intel 80386, version 1 (GNU/Linux), statically linked, for GNU/Linux 2.6.24, BuildID[sha1]=0x60752a28dd4609370eee23a41b7f07029a992233, not stripped | |
% qemu-i386 hello_i386 | |
Welcome to Open World | |
% file hello_x64 | |
hello_x64: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, for GNU/Linux 2.6.24, BuildID[sha1]=0x0c84e8dd77841f91eb5b66a8be2a42e6d65af1e7, not stripped | |
% qemu-x86_64 hello_x64 | |
Welcome to Open World |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment