- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个 NASM 程序,并使用 nasm -f elf -l rs.lst rs.asm
从它创建了一个列表文件。该程序运行完美,接收一个键输入值,然后输出该值是控制键还是可打印键,以及它是数字、小写字母还是大写字母。
我需要帮助理解我在 .lst 文件中阅读的内容。左边的地址是数字吗?指示?它们代表内存吗?这是 .lst
。
1 segment .data
//Removed my student ID info
8 ;Program Output Strings
9
10 00000023 5072657373204B6579- askForKey: db 'Press Key and Enter: ', 10 ; ;10 is the newline value
11 0000002C 20616E6420456E7465-
12 00000035 723A200A
13 askLen: equ $-askForKey
14
15 00000039 436F6E74726F6C204B- controlKey: db 'Control Key ', 10
16 00000042 6579200A
17 controlLen: equ $-controlKey
18
19 00000046 5072696E7461626C65- printableKey: db 'Printable Key ', 10
20 0000004F 204B6579200A
21 printableLen: equ $-printableKey
22
23 00000055 446563696D616C204B- decimalKey: db 'Decimal Key ', 10
24 0000005E 6579200A
25 decimalLen: equ $-decimalKey
26
27 00000062 55707065722D636173- upperKey: db 'Upper-case Key ', 10
28 0000006B 65204B6579200A
29 upperLen: equ $-upperKey
30
31 00000072 4C6F7765722D636173- lowerKey: db 'Lower-case Key ', 10
32 0000007B 65204B6579200A
33 lowerLen: equ $-lowerKey
34
35 00000082 0A blankLine: db '', 10
36 blankLen: equ $-blankLine
37
38 segment .bss
39
40 00000000 <res 00000002> key resb 2
41
42 segment .text
43
44 global main
45 main:
46
47
48 00000000 B804000000 mov eax, 4 ; system call 4
49 00000005 BB01000000 mov ebx, 1 ; standard output
50 0000000A B9[00000000] mov ecx, studentInfo ; 'Program by Raphael Stein'
51 0000000F BA23000000 mov edx, infoLen
52 00000014 CD80 int 0x80
53
54 ;Program Begins
55
56 ; Ask for key input
57 00000016 B804000000 mov eax, 4 ; system call 4
58 0000001B BB01000000 mov ebx, 1 ; standard output
59 00000020 B9[23000000] mov ecx, askForKey ; 'Press key and Enter: '
60 00000025 BA16000000 mov edx, askLen
61 0000002A CD80 int 0x80
62 ; Take input
63 0000002C B803000000 mov eax, 3 ; system call 3 to get input
64 00000031 BB00000000 mov ebx, 0 ; standart input device
65 00000036 B9[00000000] mov ecx, key ; pointer to id
66 0000003B BA02000000 mov edx, 2 ; take in this many bytes
67 00000040 CD80 int 0x80
68
69
70
71 control: ; check if it's a control key
72 00000042 B120 mov cl, 32 ; space bar (32) is the first key after control keys
73 00000044 BB[00000000] mov ebx, key ;move the first 8bits of ebx for comparison
74 00000049 380B cmp byte [ebx], cl ; compare 32 and the value of key
75 0000004B 7D1B jge printable ; If the key is >=, it's a printable
76 0000004D B804000000 mov eax, 4
77 00000052 BB01000000 mov ebx, 1
78 00000057 B9[39000000] mov ecx, controlKey
79 0000005C BA0D000000 mov edx, controlLen
80 00000061 CD80 int 0x80
81 00000063 E9A0000000 jmp exit ; It's obviously not any of the other categories
82
83
84 printable: ; Tell that it's a printable symbol
85 00000068 B804000000 mov eax, 4
86 0000006D BB01000000 mov ebx, 1
87 00000072 B9[46000000] mov ecx, printableKey
88 00000077 BA0F000000 mov edx, printableLen
89 0000007C CD80 int 0x80
90
91 decimal:
92 0000007E B130 mov cl, 48 ; 0 (48) is the smallest decimal
93 00000080 BB[00000000] mov ebx, key ;move the first 8bits of ebx for comparison
94 00000085 380B cmp byte [ebx], cl
95 00000087 7C7F jl exit
96 00000089 B139 mov cl, 57 ; 9 (57) is the largest decimal
97 0000008B BB[00000000] mov ebx, key ;move the first 8bits of ebx for comparison
98 00000090 380B cmp byte [ebx], cl
99 00000092 7F18 jg uppercase ; if key is greater, jump to check if it's uppercase.
100 00000094 B804000000 mov eax, 4
101 00000099 BB01000000 mov ebx, 1
102 0000009E B9[55000000] mov ecx, decimalKey
103 000000A3 BA0D000000 mov edx, decimalLen
104 000000A8 CD80 int 0x80
105 000000AA EB5C jmp exit
106
107 uppercase:
108 000000AC B141 mov cl, 65 ; A (65) is the smallest smallest uppercase
109 000000AE BB[00000000] mov ebx, key ;move the first 8bits of ebx for comparison
110 000000B3 380B cmp byte [ebx], cl
111 000000B5 7C51 jl exit
112 000000B7 B15A mov cl, 90 ; Z (90) is the largest upper case
113 000000B9 BB[00000000] mov ebx, key ;move the first 8bits of ebx for comparison
114 000000BE 380B cmp byte [ebx], cl
115 000000C0 7F18 jg lowercase
116 000000C2 B804000000 mov eax, 4 ; If it IS an upper case key, print and then exit
117 000000C7 BB01000000 mov ebx, 1
118 000000CC B9[62000000] mov ecx, upperKey
119 000000D1 BA10000000 mov edx, upperLen
120 000000D6 CD80 int 0x80
121 000000D8 EB2E jmp exit
122
123
124 lowercase:
125 000000DA B161 mov cl, 97 ; a (97) is the smallest smallest uppercase
126 000000DC BB[00000000] mov ebx, key ;move the first 8bits of ebx for comparison
127 000000E1 380B cmp byte [ebx], cl
128 000000E3 7C23 jl exit ; If the key is less than 97 exit.
129 000000E5 B17A mov cl, 122 ; Z (90) is the largest upper case
130 000000E7 BB[00000000] mov ebx, key ;move the first 8bits of ebx for comparison
131 000000EC 380B cmp byte [ebx], cl
132 000000EE 7FEA jg lowercase
133 000000F0 B804000000 mov eax, 4 ; If it IS an upper case key, print and then exit
134 000000F5 BB01000000 mov ebx, 1
135 000000FA B9[72000000] mov ecx, lowerKey
136 000000FF BA10000000 mov edx, lowerLen
137 00000104 CD80 int 0x80
138 00000106 EB00 jmp exit
139
140 exit:
141 00000108 B804000000 mov eax, 4 ; system call 4
142 0000010D BB01000000 mov ebx, 1 ; standard output
143 00000112 B9[82000000] mov ecx, blankLine ; Print blank line before exiting
144 00000117 BA01000000 mov edx, blankLen
145 0000011C CD80 int 0x80
146
147 0000011E B801000000 mov eax, 1
148 00000123 31DB xor ebx, ebx
149 00000125 CD80 int 0x80
150
最佳答案
左边的数字是汇编器的二进制输出,与源代码行相关。
第一列是源代码行
第二列是地址或偏移量。例如,00000023
是提示标签 askForKey:
所在的地址。
第三列是二进制值。例如,如果您查看提示文本 Press
,它会直接转换为十六进制值 5072657373
52 00000014 CD80 int 0x80
读起来是这样的:
源代码第52行,偏移量00000014包含二进制值CD80,由指令INT 0x80编译。
您还可以看到旁边有一个地址的下一行是 57 00000016
,其中 16 来自之前的 14 + CD80 的 2 个字节
关于assembly - 如何读取 NASM 汇编程序 .lst 列表文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16154870/
我必须在操作后写入寄存器的目的地和值。 斜体字的字段是我写的。粗体字段(如说明)由我的教授编写。 我曾尝试填写所有字段,但不确定答案。 如果你能告诉我哪里出了问题,我会很高兴,谢谢! :) 最佳答案
bios 中断函数 21h (ah = 1h) 应该从标准输入中读取一个字符并回显它。 我的阅读功能: mov ah, 1h int 21h 所以,如果我按下一个键,它会意识到这一点,
是否有 actionscript 3 的汇编器?类似于 Flasm,但用于 AS3(flasm 是 AS2)。我想将 AS3 程序集编译为独立的 SWF,或将其注入(inject)现有的 SWF。 我
我的汇编代码在调用 xbegin 时引发非法指令。 有什么问题吗? 这是我的代码。 主.c if ( rtm_begin() == 0 ) { //do something. } rtm.S
有人可以用英语解释什么是汇编程序中的相对跳转吗? 最佳答案 它是一个 OP 代码,其操作数将导致执行跳转到相对于当前地址的地址。操作数的值是 偏移 . 假设相对跳转指令保存在地址 0x0005 中,操
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我正在尝试学习 Assembly,并将其用于 64 位。我想用 C 语言编译内联汇编程序,但每次都会出错。 #include int main() { __asm__ ( "mov %rdx, 10
我编写了一个 SIC 汇编程序,除了 I/O 方面外,一切似乎都运行良好。 我已经将目标代码加载到内存中(将 char 格式转换为机器表示形式),但是当我调用 SICRun();执行代码时,我收到一条
我正在学习汇编程序(Nasm、Linux、Ubuntu 16.4、x86_64)并在使用 sys_time 调用时出现问题 (mov eax, 13)。 section .bss time:
在汇编器中: .globl _test _test: pushl %ebp movl %esp, %ebp movl 8(%ebp), %eax pushl %eax call printf popl
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
我正在阅读杰夫的精彩著作 assembly step by step ,我在第 8 章中展示了一个汇编程序示例,该程序以这种方式从用户那里获取文件: SECTION .bss ;
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 1年前关闭。 锁定。这个问题及其答案是loc
我有一个简短的问题。我正在使用 MARS 汇编程序(在 MIPS 指令集中编程)并且我有两个 MIPS 文件。一个文件包含我要运行的主要方法,它调用另一个文件中的函数。我的函数前面有 .globl 指
我必须回答以下关于 6502 汇编语言的问题: “在堆栈上,有以下值(顶部元素在前):0x01, 0x02, 0x03, 0x04, 0x05, 0x06地址 0xc000 是指令 jsr 0xABC
我实际上是在学习汇编,我用的是 Gas,但问题是: 1) 我只知道 Intel 语法,我在一个页面上看到使用 intel 语法的 Gas 在某些情况下优化得不是很好。这是正确的还是我错了?我说的是这个
在汇编程序中,我可以使用 MUL 命令并获得 64 位结果 EAX:EDX,我怎样才能在 C 中做同样的事情? http://siyobik.info/index.php?module=x86&id=
作为编译器项目的一部分,我必须为 x86 编写 GNU 汇编程序代码来比较浮点值。我试图找到有关如何在线执行此操作的资源,据我所知,它是这样工作的: 假设我要比较的两个值是浮点堆栈上的唯一值,那么 f
我有一个用 2 个不同的编译器编译的程序: GCC 3.4.4 PowerPC 交叉编译器 GCC 4.8.1 MinGW 编译器 在程序中,我使用了汇编程序指令 .weak 。文档说: 使具有弱绑定
我写了一个简单的 ASM 程序,但 sys_write 没有给出任何输出。我想我对指向 %ecx 的指针犯了一个错误,并且 sys_write 无法访问该字符串 - 但到目前为止我还没有发现我的错误。
我是一名优秀的程序员,十分优秀!