We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 267ae71 commit f78130eCopy full SHA for f78130e
esp32_ulp/assemble.py
@@ -240,6 +240,11 @@ def d_word(self, *args):
240
self.append_data(2, args)
241
242
def d_long(self, *args):
243
+ self.d_int(*args)
244
+
245
+ def d_int(self, *args):
246
+ # .long and .int are identical as per GNU assembler documentation
247
+ # https://sourceware.org/binutils/docs/as/Long.html
248
self.append_data(4, args)
249
250
def assembler_pass(self, lines):
tests/compat/fixes.S
@@ -12,6 +12,9 @@
12
counter:
13
.long 0
14
15
+.data
16
+var2: .int 1111
17
18
.text
19
.global entry
20
entry:
0 commit comments