This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
2,194 additions
and 20 deletions.
- +1,100 −18 src/core/Collision.cpp
- +79 −0 src/core/Collision.h
- +5 −0 src/core/SurfaceTable.h
- +10 −0 src/core/common.h
- +5 −1 src/core/config.h
- +21 −0 src/core/vu0Collision.dsm
- +610 −0 src/core/vu0Collision_1.s
- +191 −0 src/core/vu0Collision_2.s
- +1 −0 src/math/Matrix.h
- +41 −0 src/math/VuVector.h
- +128 −0 src/math/math.cpp
- +3 −1 src/render/Shadows.cpp
There are no files selected for viewing
| @@ -0,0 +1,21 @@ | ||
| .align 4 | ||
| .global Vu0CollisionDmaTag | ||
| Vu0CollisionDmaTag: | ||
| DMAcnt * | ||
| MPG 0, * | ||
| .vu | ||
| .include "vu0Collision_1.s" | ||
| .EndMPG | ||
| .EndDmaData | ||
| DMAend | ||
|
|
||
| .global Vu0Collision2DmaTag | ||
| Vu0Collision2DmaTag: | ||
| DMAcnt * | ||
| MPG 0, * | ||
| .vu | ||
| .include "vu0Collision_2.s" | ||
| .EndMPG | ||
| .EndDmaData | ||
| DMAend | ||
| .end |
Oops, something went wrong.