Correct ARGVEC and VARVEC offsets in code generator

This commit is contained in:
John Lorentzson 2025-07-24 15:28:55 +02:00
parent a32dea0a11
commit ec867b25d3

View file

@ -50,8 +50,8 @@
;; TODO: Handle case of too many arguments (? not realistically needed)
t)
(defparameter +argvec-offset+ #x00)
(defparameter +varvec-offset+ #x08)
(defparameter +argvec-offset+ #xF0)
(defparameter +varvec-offset+ #x20)
(defmacro with-variable-allocations (allocations &body body)
`(let ((*variable-allocations* (make-hash-table)))