jak-project/goal_src/jak3/kernel/dgo-h.gc
water111 01d5fc2bbb
[jak3] Decomp for gkernel, gkernel-h, gstate, gstring (#3326)
I ported the kernel test from jak1/jak2 to jak 3, and it's passing!
2024-01-21 18:08:05 -05:00

31 lines
427 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: dgo-h.gc
;; name in dgo: dgo-h
;; dgos: KERNEL
;; DECOMP BEGINS
(deftype dgo-header (structure)
((length uint32)
(rootname uint8 60)
)
)
(deftype dgo-entry (structure)
((offset uint32)
(length uint32)
)
)
(deftype dgo-file (basic)
((num-go-files uint32)
(total-length uint32)
(rsvd uint32)
(data uint8 :dynamic)
)
)