mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-26 07:48:42 -04:00
848b31c01e
* update libultra asm (#648) * update libultra asm * fix gcc __osThreadTail --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com> * Document Vehicles (#641) * start doc collision * fix merge * finish rename fonction related to vehicle * document around waypoint of vehicle * make some modification * make some change and rename one * copy_ to oldPos * doc smoke ferry and train * some rename * fix some renaming * precise index * rename a funciton * simplify waypoint_vehicles * change some name * change some name * rename move_to_point_direction * fix some conflict * Update code_80005FD0.c * Update code_80005FD0.h --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com> * Label a save info loop (#645) * save info * more gcc progress * fix a value and do a rename (#669) * fix error of compilation --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
37 lines
658 B
ArmAsm
37 lines
658 B
ArmAsm
.set noat # allow manual use of $at
|
|
.set noreorder # don't insert nops after branches
|
|
.set gp=64
|
|
|
|
.include "macros.inc"
|
|
|
|
|
|
.section .text, "ax"
|
|
|
|
glabel osMapTLBRdb
|
|
mfc0 $t0, C0_ENTRYHI
|
|
li $t1, 31
|
|
mtc0 $t1, C0_INX
|
|
mtc0 $zero, C0_PAGEMASK
|
|
li $t2, TLBLO_UNCACHED | TLBLO_D | TLBLO_V | TLBLO_G
|
|
lui $t1, K2BASE >> 16
|
|
mtc0 $t1, C0_ENTRYHI
|
|
lui $t1, KUSIZE >> 16
|
|
srl $t3, $t1, TLBLO_PFNSHIFT
|
|
or $t3, $t3, $t2
|
|
mtc0 $t3, C0_ENTRYLO0
|
|
li $t1, TLBLO_G
|
|
mtc0 $t1, C0_ENTRYLO1
|
|
nop
|
|
tlbwi
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
mtc0 $t0, C0_ENTRYHI
|
|
jr $ra
|
|
nop
|
|
|
|
nop
|
|
nop
|
|
|