summaryrefslogtreecommitdiff
path: root/10/possible_seq.asm
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-12-26 23:47:50 +0100
committerBond_009 <bond.009@outlook.com>2020-12-26 23:47:50 +0100
commit8fe6e81226a895d4e5300becdea73538dbd58505 (patch)
tree6f1546529fc365ae772eea7c8d771ddb8a9242b2 /10/possible_seq.asm
parent89ab7b172bfda17ddfd3395b9c7a157b32a52609 (diff)
Move .data to .rodata
Diffstat (limited to '10/possible_seq.asm')
-rw-r--r--10/possible_seq.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/10/possible_seq.asm b/10/possible_seq.asm
index 15c6586..b737d13 100644
--- a/10/possible_seq.asm
+++ b/10/possible_seq.asm
@@ -1,6 +1,6 @@
global possible_seq
-section .data
+section .rodata
TRIB: dq 1, 1, 2, 4, 7 ; tribonacci sequence (without first 2 zeroes)
section .text