mirror of
https://github.com/open-goal/jak-project
synced 2026-06-03 10:32:08 -04:00
d86964985a
* before adding IRegSet stuff * use bitsets for live analysis * speed up * add stack structures * organize new better
7 lines
132 B
Common Lisp
7 lines
132 B
Common Lisp
(defun stack-test ()
|
|
(let ((arr (new 'stack 'array 'uint8 12)))
|
|
(logand #b1111 (the uint (&-> arr 3)))
|
|
)
|
|
)
|
|
|
|
(stack-test) |