<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>how to create assembly files using c</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/28858/how-to-create-assembly-files-using-c</link><description>how to create assembly files from .c files using nordic make file for freertos case?</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 02 Jan 2018 14:28:28 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/28858/how-to-create-assembly-files-using-c" /><item><title>RE: how to create assembly files using c</title><link>https://devzone.nordicsemi.com/thread/114249?ContentTypeID=1</link><pubDate>Tue, 02 Jan 2018 14:28:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:347624c8-1aa1-416e-ac4f-d42de18590d9</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You can generate assembly from the object files created by the compilation, using objdump:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;arm-none-eabi-objdump --disassemble helloworld.c.o &amp;gt; helloworld.c.s
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Or a source/assembly mixed dump:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;arm-none-eabi-objdump -S --disassemble helloworld.c.o &amp;gt; helloworld.c.dump
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;You can add this to the makefile if you want it to be created for every object file.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Jørgen&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>