Add stub ASM-FUNCTION class

This commit is contained in:
John Lorentzson 2025-05-22 12:51:04 +02:00
parent 38406c80ee
commit 12d1a905fe

View file

@ -2,6 +2,9 @@
;;; STUB, TODO
(defclass asm-function ()
((%name :accessor name :initarg :name)))
(define-transformation (token (token-name asm-function))
;; TODO: Create table of asm functions that this can draw from
nil)
;; TODO: Choose from a list, don't just create like this
(make-instance 'asm-function :name (name token)))