linux 彙編 helloworld 高階版

2021-08-30 20:55:27 字數 2311 閱讀 7571

.section .data#初始化的變數

output:

.ascii "hello,world\n"

#要列印的字串,.data為初始化值的變數。output是標籤,指示字串開始的位置,ascii為資料型別

.section .bss#未初始化的變數,由0填充的緩衝區

.lcomm num,20

#lcomm為本地記憶體區域,即本地彙編外的不能進行訪問。.comm是通用記憶體區域。

.section .text#組合語言指令碼

.globl _start#啟動入口

_start:

movl $4,%eax#呼叫的系統功能,4為write

movl $output,%ecx#要列印的字串

movl $1,%ebx#檔案描述符,螢幕為1

movl $12,%edx#字串長度

int $0x80#顯示字串hello,world

movl $0,%eax

movl $num,%edi

movl $65,1(%edi)#a 的ascii

movl $66,2(%edi)#b 的ascii

movl $67,3(%edi)#c 的ascii

movl $68,4(%edi)#d 的ascii

movl $10,5(%edi)#\n的ascii

movl $4,%eax#呼叫的系統功能,4為write

movl $num,%ecx#要列印的字串

movl $1,%ebx#檔案描述符,螢幕為1

movl $6,%edx#字串長度

int $0x80#顯示字串abcd

movl $1,%eax#1為退出

movl $0,%ebx#返回給shell的退出**值

int $0x80#核心軟中斷,退出系統

效果及除錯, -gstabs用於生成除錯資訊

deepfuture-lx@deepfuture-lx-desktop:~/private/mytest$ as -gstabs -o hello.o hello.s

deepfuture-lx@deepfuture-lx-desktop:~/private/mytest$ ld -o hello hello.o

deepfuture-lx@deepfuture-lx-desktop:~/private/mytest$ ./hello

hello,world

abcd

deepfuture-lx@deepfuture-lx-desktop:~/private/mytest$ gdb hello

gnu gdb (gdb) 7.1-ubuntu

license gplv3+: gnu gpl version 3 or later

this is free software: you are free to change and redistribute it.

there is no warranty, to the extent permitted by law.  type "show copying"

and "show warranty" for details.

this gdb was configured as "x86_64-linux-gnu".

for bug reporting instructions, please see:

...reading symbols from /home/deepfuture-lx/private/mytest/hello...done.

(gdb) list

1 .section .data#初始化的變數

2 output:

3   .ascii "hello,world\n"

4   #要列印的字串,.data為初始化值的變數。output是標籤,指示字串開始的位置,ascii為資料型別

5 .section .bss#未初始化的變數,由0填充的緩衝區

6   .lcomm num,20

7   #lcomm為本地記憶體區域,即本地彙編外的不能進行訪問。.comm是通用記憶體區域。

8 .section .text#組合語言指令碼

9   .globl _start#啟動入口

10   _start:

(gdb) run

starting program: /home/deepfuture-lx/private/mytest/hello 

hello,world

abcd

program exited normally.

(gdb) 

初學Linux及其程式設計1 HelloWorld

今日打算開始學習linux,就以此作為學習記錄的平台吧。今日之小小白,明日的小白,後日的牛牛 一 序言 1.工欲善其事,必先利其器。安裝了ubuntu13.04,安裝了vim編輯器,可以 開始小小白之旅了。打字的這個時候超級懷念windows下的sogo的輸入 法,ubuntu下的sunpinyin...

StrutsII學習筆記 HelloWorld

配置myeclipse 7.5 struts.xml檔案拷貝到src檔案下 配置如下 hello.jsp web.xml增加過濾器 struts2 org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter 新增inde...

菜鳥Linux vim下的HelloWorld

極簡,之前聽人講後,發現vim真的像神器一樣,想一想,當你操作熟練,不用用到滑鼠和右鍵盤區域的方向鍵時,那你編碼的速度是提公升了好多倍!linux啟動vim,開啟終端,輸入vi回車,輸入i。其實這是我自己好奇在實驗室的雙系統玩玩而已。新建乙個檔案後,敲入最經典的helloworld 儲存為hello...