diff util/serve_arm_as.py @ 340:c7cc54c0dfdf devel

Test featurebranch
author Windel Bouwman
date Sun, 23 Feb 2014 16:24:01 +0100
parents 6f2423df0675
children 3bb7dcfe5529
line wrap: on
line diff
--- a/util/serve_arm_as.py	Fri Feb 21 13:35:07 2014 +0100
+++ b/util/serve_arm_as.py	Sun Feb 23 16:24:01 2014 +0100
@@ -10,7 +10,7 @@
 
 def mangle(inp, outstream):
     print('assembling...', file=outstream)
-    p_as = subprocess.Popen(['arm-elf-as', '-mthumb'], stdin=subprocess.PIPE)
+    p_as = subprocess.Popen(['arm-elf-as'], stdin=subprocess.PIPE)
     p_as.communicate(input=inp.encode('ascii'))
 
     p_objdump = subprocess.Popen(['arm-elf-objdump', '-d'], stdout=subprocess.PIPE)