mirror of
https://github.com/open-goal/jak-project
synced 2026-08-17 05:31:46 -04:00
[Decompiler] Stack Variables (#338)
* clean up type analysis * get everything set up * basic stack variables working * partial load fix * most of matrix * add offline tests
This commit is contained in:
@@ -87,4 +87,14 @@
|
||||
(define-extern fabs (function float float))
|
||||
(define-extern abs (function int int))
|
||||
(define-extern rand-vu-init (function float none))
|
||||
(define-extern rand-vu (function float))
|
||||
(define-extern rand-vu (function float))
|
||||
|
||||
;; matrix
|
||||
(declare-type matrix structure)
|
||||
(declare-type vector structure)
|
||||
(define-extern matrix-transpose! (function matrix matrix matrix))
|
||||
(define-extern sin (function float float))
|
||||
(define-extern cos (function float float))
|
||||
(define-extern vector-sincos! (function vector vector vector int))
|
||||
(define-extern matrix-axis-sin-cos! (function matrix vector float float none))
|
||||
(define-extern atan (function float float float))
|
||||
Reference in New Issue
Block a user