我已经在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!)
所以,就是这样。
答案 0 :(得分:7)
我所知道的所有装配工都有这样的功能。
mov eax, 8
db 90h ; this is "nop"
add eax, 10