jak-project/goal_src/jak2/kernel/dgo-h.gc

35 lines
803 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: dgo-h.gc
;; name in dgo: dgo-h
;; dgos: KERNEL
#|@file
I suspect that these are unused, and were for an older version of DGO.
All DGO stuff is handled on the IOP.
see also load-dgo.gc's dgo-header.
|#
;; DECOMP BEGINS
(deftype dgo-entry (structure)
((offset uint32 :offset-assert 0)
(length uint32 :offset-assert 4)
)
:method-count-assert 9
:size-assert #x8
:flag-assert #x900000008
)
(deftype dgo-file (basic)
((num-go-files uint32 :offset-assert 4)
(total-length uint32 :offset-assert 8)
(rsvd uint32 :offset-assert 12)
(data uint8 :dynamic :offset-assert 16)
)
:method-count-assert 9
:size-assert #x10
:flag-assert #x900000010
)