Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C または C++ ソース コードを持っている場合、x86 および ARM アセンブリでこれらのステートメントを変換するにはどうすればよいですか? これは、C/C++ の同等のソース コードからアセンブリで記述されたソース コードを含むプレーン テキスト ファイルを意味します。
編集:
私は GCC/CNU ツールチェーンを使用しています
You will need a cross compiler that can do both then just use
g++ -S [Plus all you other switch's and cross compile ones]
This will save the intermediate assembler for you