Skip to content

Commit f78130e

Browse files
committed
support .int data type
.long and .int are the same as per GNU assembler manual: https://sourceware.org/binutils/docs/as/Long.html binutils-esp32ulp also treats them the same (compat test included to verify this)
1 parent 267ae71 commit f78130e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

esp32_ulp/assemble.py

+5
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,11 @@ def d_word(self, *args):
240240
self.append_data(2, args)
241241

242242
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
243248
self.append_data(4, args)
244249

245250
def assembler_pass(self, lines):

tests/compat/fixes.S

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
counter:
1313
.long 0
1414

15+
.data
16+
var2: .int 1111
17+
1518
.text
1619
.global entry
1720
entry:

0 commit comments

Comments
 (0)