jak-project/goal_src/goal-lib.gc

9 lines
196 B
Plaintext
Raw Normal View History

2020-09-06 17:42:20 -04:00
;; compile, color, and save a file
(defmacro m (file)
`(asm-file ,file :color :write)
)
;; compile, color, load and save a file
(defmacro ml (file)
`(asm-file ,file :color :load :write)
)