英文: Is it possible to exit from an ISR without returning to the calling code? 问题 我正在尝试在汇编语言中创建一个中断服务...
理解 DT_TEXTREL 警告
英文: Understanding a DT_TEXTREL warning 问题 我有以下的代码 我正在将其编译成可执行文件: 生成的可执行文件正确地打印出Hello,然后是一个换行符。 但是在链接...
x64 NASM Assembly 打印从函数返回的单个字符。
英文: x64 NASM Assembly print a single character returned from the function 问题 I noticed some issues i...
获取shellcode中数据的绝对地址
英文: Getting absolute address of data in shellcode 问题 以下是您的shellcode: xor rax, rax xor rdi, rdi xor r...
尝试理解AlphaDev的新排序算法:为什么我的汇编代码不按预期工作?
英文: Trying to understand the new sorting algorithm from AlphaDev: why does my assembly code not work...
如何获取NASM汇编程序的运行时?
英文: How to get the runtime of a NASM assembly program? 问题 I'll provide the translation of the text y...
Printing Contents of a .txt file in x86 NASM Assembly Language
英文: Printing Contents of a .txt file in x86 NASM Assembly Language 问题 I am learning Assembly Languag...
从5个字符串中插入字符在nasm汇编
英文: Intercalate characters from 5 strings in assembly nasm 问题 我必须编写一个汇编程序,该程序将来自用户在键盘上输入的五个不同字符串的字符交...
问题与在NASM汇编中将数字输出到DOS控制台有关。
英文: Problem with number output to DOS console in NASM Assembler 问题 程序中的问题在于将x和y的默认值设置为了错误的数据类型。在这段汇编...
x86代码读取输入并存入本地变量中?
英文: x86 code to read in input into a local variable? 问题 我是新来的,对x86汇编不太熟悉,已经阅读了这篇帖子,讨论了在NASM x86中使用sc...