We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f77a321 commit 721f754Copy full SHA for 721f754
esp32_ulp/assemble.py
@@ -246,7 +246,7 @@ def d_global(self, symbol):
246
self.symbols.set_global(symbol)
247
248
def append_data(self, wordlen, args):
249
- data = [int(arg).to_bytes(wordlen, 'little') for arg in args]
+ data = [int(arg, 0).to_bytes(wordlen, 'little') for arg in args]
250
self.append_section(b''.join(data))
251
252
def d_byte(self, *args):
0 commit comments