官网:http://www.openssl.org/得到源码:git clone https://github.com/openssl/openssl一、用vc编译器编译:1、下载nasm:http://www.nasm.us/2、下载perl:http://www.perl.org/3、配置:运行...
分类:
其他好文 时间:
2015-12-29 22:51:16
阅读次数:
286
来自:http://snipplr.com/view/29150; Hello World in assembly for mac; nasm -f macho hello.asm; ld -e _start -o hello hello.o;section .text global _st...
分类:
系统相关 时间:
2015-11-21 15:53:29
阅读次数:
203
最近在学习 NASM 汇编语言,文本编辑器用的 NotePad++。汇编源代码以 .nas 为扩展名,NotePad++ 不能正确语法高亮显示。打开菜单项“设置 -> 语言格式设置”,在“语言”列表中找到“Assembly ”,在“自定...
分类:
其他好文 时间:
2015-11-05 09:10:05
阅读次数:
256
为了学习的顺利进行,今天尝试复习 C 语言和汇编语言的联合编译。代码很简单: /*?main.c?*/
extern?void?Print1();
char?strFormat[]?=?"x?=?%d,?y?=?%d,?x?+?y?=?%d";
int?main()
{
...
分类:
其他好文 时间:
2015-11-03 19:44:42
阅读次数:
311
下载源代码下载地址:http://sourceforge.net/projects/nasm/filesNASM学习网址:http://www.nasm.us/doc/nasmdoc0.html使用火狐下载源码(nasm-2.07.tar.gz),缺省存放~/Download,知道为什么装英文的了吧...
分类:
其他好文 时间:
2015-10-28 20:58:20
阅读次数:
205
1. 下载nasm-2.11.08.zip (here/here) 解压至本地2. 开始 -> Visual Studio 2013 -> Visual Studio 2013 Tools ->Developer Command Prompt for VS2013 cd 到 NASM 所在路径 参照...
分类:
其他好文 时间:
2015-09-03 20:26:31
阅读次数:
225
操作系统并非我们想象中的深不可测、遥不可及,只要你对它感兴趣并随我一起动手实践,你也能开发出属于自己的os。本文通过一个最简单的os,完成Hello, OS World文字的输出来演示os的启动加载原理,使大家对os开发有一个基本概念上的认识。要知道,一切复杂的功能都源于最初的那个Hello,World!...
分类:
其他好文 时间:
2015-08-06 18:26:25
阅读次数:
134
$ nasm -f elf foo.asm -o foo.o$ gcc -c bar.c -o bar.o$ ld -s foo.o bar.o -o foobar ld: i386 architecture of input file `foo.o' is incompatible with i....
分类:
编程语言 时间:
2015-08-06 10:59:25
阅读次数:
284
出现问题:$nasm -f elf hello.asm -o hello.o$ld -s hello.o -o hello ld: i386 architecture of input file `hello.o' is incompatible with i386:x86-64 output尝试....
分类:
系统相关 时间:
2015-08-05 19:50:46
阅读次数:
291
《一个操作系统的实现》 ubuntu系统环境配置电脑之前已经安装了gcc.一.nasm安装:sudo apt-get nasm或官网下载http://sourceforge.net/projects/nasm我下载到的是nasm-2.11.08-1.src.rpm(里面有nasm-2.11.08.t...
分类:
系统相关 时间:
2015-07-30 09:26:08
阅读次数:
229