码迷,mamicode.com
首页 > 系统相关 > 详细

ICS2019-Linux汇编实验指导

时间:2019-10-29 00:12:37      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:adc   ges   war   value   mamicode   config   sign   显示   权限   

ICS2019-Linux汇编实验指导

一. 首先安装NASM

1. 先判断系统是否已经安装了nasm


打开终端,执行  whereis nasm ;如果显示nasm: /usr/bin/nasm ,则已经安装;如果只显示nasm:,则未安装。

 

如下图 则是未安装状态

技术图片

2.下载NASM

 

点击这个链接下载

3.按照下面步骤安装nasm

依次输入以下命令

tar xzvf nasm-2.14.02.tar.gz  //  解压nasm

技术图片
cd nasm-2.14.02   // 进入目录

技术图片
./configure   // {configure脚本会寻找最合适的C编译器,并生成相应的makefile文件}

技术图片
接着输入 make 创建nasm和ndisasm 的二进制代码

技术图片

最后输入 make install 进行安装(这一步需要root权限)

技术图片

make install会将 nasm 和ndisasm 装进/usr/local/bin 并安装相应的man pages。

如果想验证是否安装成功的话,输入whereis nasm

技术图片

 这样就安装成功了

二. 测试一下

1. 新建文件,将其命名为hello.asm,编辑并保存

 

section .data
  hello:     db Hello world!,10    ; ‘Hello world!‘ plus a linefeed character
  helloLen:  equ $-hello             ; Length of the ‘Hello world!‘ string
                                     ; (I‘ll explain soon)
section .text
  global _start
_start:
  mov eax,4            ; The system call for write (sys_write)
  mov ebx,1            ; File descriptor 1 - standard output
  mov ecx,hello        ; Put the offset of hello in ecx
  mov edx,helloLen     ; helloLen is a constant, so we don‘t need to say
                       ;  mov edx,[helloLen] to get it‘s actual value
  int 80h              ; Call the kernel
  mov eax,1            ; The system call for exit (sys_exit)
  mov ebx,0            ; Exit with return code of 0 (no error)
  int 80h

 

2. 编译

nasm -f elf64 hello.asm  // elf64是64位机 如果是32位机请使用elf32

3. 链接

 ld -s -o hello hello.o 

4.运行

 ./hello 

 

 

运行结果如下所示:

技术图片

本人水平有限, 如有问题请在下面评论指出

ICS2019-Linux汇编实验指导

标签:adc   ges   war   value   mamicode   config   sign   显示   权限   

原文地址:https://www.cnblogs.com/Cherrison-Time/p/11756239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!