問題描述
將 C 代碼轉換為 8086 程序集 (Converting C code into 8086 assembly)
有沒有什麼直接的方法可以將C代碼轉換成emu8086彙編?
參考解法
方法 1:
You'll want to use the bcc compiler (Bruce's C compiler). It will output 8086 assembly. The manpage is here. There are Fedora/Ubuntu/Arch packages available. I'm not sure about Microsoft Windows options.
(by Beko、alfalfasprout)