有没有一个汇编程序可以让我'内联'机器代码?

时间:2013-04-09 19:59:38

标签: assembly machine-code

我已经在Google上寻找了一种可以在汇编源文件中包含机器代码的方法。我没有运气。

“内联机器代码”的含义可能不清楚,所以让我为您提供一个我正在寻找的示例:

; here's my normal assembly code...
mov eax, 8
add eax, 10
; now I would like to be able to add some machine code
__machinecode__("40") ; this is equivalent to 'inc eax' (I think!)

所以,就是这样。

1 个答案:

答案 0 :(得分:7)

我所知道的所有装配工都有这样的功能。

mov eax, 8
db 90h ; this is "nop"
add eax, 10