diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-04-13 17:23:14 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-04-13 17:23:14 -0700 |
| commit | 1a6a056697f50cf2c9a46bc376caa8e198e88031 (patch) | |
| tree | f13bf735f4c4ce5724faa802692eea1a98c55d2a | |
| parent | 58c1c73edb89ccd8706378356fed895be7a281e7 (diff) | |
the heap definition of roll was wrong
it somehow messed up the call to mov_indirect_reg64_reg64. probably a copy-paste error. Force-Push: yes Change-Id: Iaaf70b4d135d101114d07fd7efa7de3736522aa8
| -rw-r--r-- | quine.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quine.asm b/quine.asm index 7a80a57..e0d5205 100644 --- a/quine.asm +++ b/quine.asm @@ -2096,7 +2096,7 @@ cold_start: dq rep_movs64 dq cld dq rsi, pop_reg64 - dq rbx, rsi, mov_reg64_indirect_reg64 + dq rbx, rsp, mov_indirect_reg64_reg64 dq pack_next, lit, 8, packalign, early_here_store ; Jonesforth calls this "-roll" and we could do that, but honestly the name |