this function no longer has any use.

This commit is contained in:
2024-07-31 14:54:31 +03:00
parent e4419034ce
commit 56f71f43b2

View File

@@ -1,12 +1,5 @@
(in-package :cl-forth)
(defun assembly-undefined-ops ()
(iter (for (k) in-hashtable *operations*)
(collect k into defops)
(finally (return (remove-if (lambda (sym) (search "SYSCALL" (string sym)))
(set-difference *identifiers* defops
:test #'string=))))))
(defun make-token (sym? line col)
(if (or (numberp sym?) (is-identifier sym?))
(values (list sym? :line line :col col) nil)