Skip to content
Snippets Groups Projects
Commit 6635eb9e authored by octt's avatar octt :flushed:
Browse files

WIP PS1 ASM Hello World with PsyQ+Nugget

parent 57922418
No related branches found
No related tags found
No related merge requests found
Showing
with 194 additions and 9234 deletions
; PSX 'Bare Metal' Cube CPU Demo by krom (Peter Lemon):
; Joypad Control:
; Up, Down: -Y, +Y Translation
; Left, Right: -X, +X Translation
; L1, L2: -Z, +Z Translation
; Triangle, X: -X, +X Rotation
; Circle, Square: -Y, +Y Rotation
; R1, R2: -Z, +Z Rotation
.psx
.create "Cube.bin", 0x80010000
.include "LIB/PSX.INC" ; Include PSX Definitions
.include "LIB/PSX_GPU.INC" ; Include PSX GPU Definitions & Macros
.include "LIB/PSX_INPUT.INC" ; Include PSX Input Definitions & Macros
.include "LIB/3D.INC" ; Include 3D Definitions & Macros
.org 0x80010000 ; Entry Point Of Code
InitJoy PadBuffer ; Initialise Joypads & Setup VSync Wait Routine Using BIOS: Buffer Address
la a0,IO_BASE ; A0 = I/O Port Base Address ($1F80XXXX)
; Setup Screen Mode
WRGP1 GPURESET,0 ; Write GP1 Command Word (Reset GPU)
WRGP1 GPUDISPEN,0 ; Write GP1 Command Word (Enable Display)
WRGP1 GPUDISPM,HRES320+VRES240+BPP15+VNTSC ; Write GP1 Command Word (Set Display Mode: 320x240, 15BPP, NTSC)
WRGP1 GPUDISPH,0xC60260 ; Write GP1 Command Word (Horizontal Display Range 608..3168)
WRGP1 GPUDISPV,0x042018 ; Write GP1 Command Word (Vertical Display Range 24..264)
; Setup Drawing Area
WRGP0 GPUDRAWM,0x000508 ; Write GP0 Command Word (Drawing To Display Area Allowed Bit 10, Texture Page Colors = 15BPP Bit 7..8, Texture Page Y Base = 0 Bit 4, Texture Page X Base = 512 Bit 0..3)
WRGP0 GPUDRAWATL,0x000000 ; Write GP0 Command Word (Set Drawing Area Top Left X1=0, Y1=0)
WRGP0 GPUDRAWABR,0x03BD3F ; Write GP0 Command Word (Set Drawing Area Bottom Right X2=319, Y2=239)
WRGP0 GPUDRAWOFS,0x000000 ; Write GP0 Command Word (Set Drawing Offset X=0, Y=0)
.macro CopyTextureVram, TEXTURE, X,Y
CopyRectCPU X,Y, 256,256 ; Copy Rectangle (CPU To VRAM): X,Y, Width,Height
li t0,32767 ; T0 = Data Copy Word Count
la a1,TEXTURE ; A1 = Texture RAM Offset
CopyTextureThis:
lw t1,0(a1) ; T1 = DATA Word
addiu a1,4 ; A1 += 4 (Delay Slot)
sw t1,GP0(a0) ; Write GP0 Packet Word
bnez t0,CopyTextureThis ; IF (T0 != 0) Copy Texture A
subiu t0,1 ; T0-- (Delay Slot)
.endmacro
.macro CubePositionMoveCheck, joykey,position,branch
IsJoyDown joykey,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
beqz t0,branch
nop ; Delay Slot
la a1,position
lw t0,0(a1)
nop ; Delay Slot
.endmacro
CopyTextureVram TextureA, 512,0
CopyTextureVram TextureB, 768,0
;CopyTextureVram TextureC, 0,256
CopyTextureVram TextureD, 256,256
CopyTextureVram TextureE, 512,256
CopyTextureVram TextureF, 768,256
ReverseCubeAccelY:
la a2,YAccel ; Load cube acceleration
lw t1,0(a2) ; in t1
nop
subu t1,$0,t1 ; Reverse acceleration
sw t1,0(a2) ; ...
la a1,YPos ; Load cube Y position
lw t0,0(a1) ; ...
nop
add t0,t1 ; Accelerate cube
sw t0,0(a1) ; Commit cube Y position
b PRESSEND
;ReverseCubeAccelY
Refresh:
WaitVSync PadBuffer,PadData ; Wait For Vertical Retrace Period & Store XOR Pad Data: Buffer Address, Data Address
FillRectVRAM 0xEEDDFF, 0,0, 320,240 ; Fill Rectangle In VRAM: Color, X,Y, Width,Height
XYZPos XPos,YPos,ZPos ; Object X,Y,Z Translation: X,Y,Z
XYZRotCalc XRot,YRot,ZRot,SinCos256 ; XYZ Rotation Calculation: X Rotation, Y Rotation, Z Rotation, Matrix Sin & Cos Pre-Calculated Table
; Move cube towards the left
la a1,XPos ; Load cube X position
lw t0,0(a1) ;
nop ; Chill
subiu t0,32 ; Move cube left
sw t0,0(a1) ; Store position
; Gravity pulling cube down, its force remaking it jump
la a1,YPos ; Load cube Y position
lw t0,0(a1) ; ...
li t2,+8192-1024 ; Set compare value of ... floor Y
li t3,-8192-1024 ; ... roof Y
;beq t0,t2,ReverseCubeAccelY ; [If cube touches ... floor
;nop
;beq t0,t3,ReverseCubeAccelY ; reverse direction] ... roof
slt t4,t0,t2 ; if cubeY >= floorY
beq t4,$0,ReverseCubeAccelY ; then reverse it
la a2,YAccel ; Load cube acceleration
lw t1,0(a2) ; ...
nop
addi t1,16 ; Get acceleration stronger
sw t1,0(a2) ; Then store it
nop
add t0,t1 ; Accelerate cube
sw t0,0(a1) ; Commit cube Y position
; PRESSUP:
; CubePositionMoveCheck JOY_UP,YPos,PRESSDOWN
; subiu t0,256 ; Y Position--
; sw t0,0(a1)
; PRESSDOWN:
; CubePositionMoveCheck JOY_DOWN,YPos,PRESSLEFT
; addiu t0,256 ; Y Position++
; sw t0,0(a1)
; PRESSLEFT:
; CubePositionMoveCheck JOY_LEFT,XPos,PRESSRIGHT
; subiu t0,256 ; X Position--
; sw t0,0(a1)
; PRESSRIGHT:
; CubePositionMoveCheck JOY_RIGHT,XPos,PRESSL1
; addiu t0,256 ; X Position++
; sw t0,0(a1)
; PRESSL1:
; IsJoyDown JOY_L1,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESSL2
; nop ; Delay Slot
; la a1,ZPos ; Z Position--
; lw t0,0(a1)
; li t1,10240
; beq t0,t1,PRESSL2
; nop ; Delay Slot
; subiu t0,256
; sw t0,0(a1)
; PRESSL2:
; IsJoyDown JOY_L2,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESST
; nop ; Delay Slot
; la a1,ZPos ; Z Position++
; lw t0,0(a1)
; li t1,25600
; beq t0,t1,PRESST
; nop ; Delay Slot
; addiu t0,256
; sw t0,0(a1)
; PRESST:
; IsJoyDown JOY_T,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESSX
; nop ; Delay Slot
; la a1,XRot ; X Rotation--
; lw t0,0(a1)
; nop ; Delay Slot
; subiu t0,1
; andi t0,0xFF
; sw t0,0(a1)
; PRESSX:
; IsJoyDown JOY_X,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESSC
; nop ; Delay Slot
; la a1,XRot ; X Rotation++
; lw t0,0(a1)
; nop ; Delay Slot
; addiu t0,1
; andi t0,0xFF
; sw t0,0(a1)
; PRESSC:
; IsJoyDown JOY_C,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESSS
; nop ; Delay Slot
; la a1,YRot ; Y Rotation--
; lw t0,0(a1)
; nop ; Delay Slot
; subiu t0,1
; andi t0,0xFF
; sw t0,0(a1)
; PRESSS:
; IsJoyDown JOY_S,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESSR1
; nop ; Delay Slot
; la a1,YRot ; Y Rotation++
; lw t0,0(a1)
; nop ; Delay Slot
; addiu t0,1
; andi t0,0xFF
; sw t0,0(a1)
; PRESSR1:
; IsJoyDown JOY_R1,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESSR2
; nop ; Delay Slot
; la a1,ZRot ; Z Rotation--
; lw t0,0(a1)
; nop ; Delay Slot
; subiu t0,1
; andi t0,0xFF
; sw t0,0(a1)
; PRESSR2:
; IsJoyDown JOY_R2,PadData ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
; beqz t0,PRESSEND
; nop ; Delay Slot
; la a1,ZRot ; Z Rotation++
; lw t0,0(a1)
; nop ; Delay Slot
; addiu t0,1
; andi t0,0xFF
; sw t0,0(a1)
PRESSEND:
ShadeTexQuadCullBackZSort ShadeTexCubeQuad,ShadeTexCubeQuadEnd,PolySort ; Shaded Texture Quad Back Face Cull Z Sort: Object Start Address, Object End Address, Sort Address
b Refresh
nop ; Delay Slot
PadBuffer:
dw 0 ; Pad Buffer (Automatically Stored Every Frame)
PadData:
dw 0 ; Pad Data (Read From VSync Routine)
XPos:
dw 16384 ; X Position Word
YPos:
dw 512 ; Y Position Word
ZPos:
dw 25600 ; Z Position Word
YAccel:
dw -64
XRot:
dw 0 ; X Rotate Word (0..255)
YRot:
dw 0 ; Y Rotate Word (0..255)
ZRot:
dw 0 ; Z Rotate Word (0..255)
Matrix3D: ; 3D Matrix: Set To Default Identity Matrix (All Numbers Multiplied By 256 For 24.8 Fixed Point Format)
dw 256, 0, 0, 0 ; X = 1.0, 0.0, 0.0, X Translation = 0.0
dw 0, 256, 0, 0 ; 0.0, Y = 1.0, 0.0, Y Translation = 0.0
dw 0, 0, 256, 0 ; 0.0, 0.0, Z = 1.0, Z Translation = 0.0
; Matrix Sin & Cos Pre-Calculated Table
.include "sincos256.asm" ; Matrix Sin & Cos Pre-Calculated Table (256 Rotations)
; Object Data
.include "objects.asm" ; Object Data
TextureA:
.incbin "GFX/A.bin" ; Include 256x256 15BPP Texture Data (131072 Bytes)
TextureB:
.incbin "GFX/B.bin" ; Include 256x256 15BPP Texture Data (131072 Bytes)
;TextureC:
; .incbin "GFX/C.bin" ; Include 256x256 15BPP Texture Data (131072 Bytes)
TextureD:
.incbin "GFX/D.bin" ; Include 256x256 15BPP Texture Data (131072 Bytes)
TextureE:
.incbin "GFX/E.bin" ; Include 256x256 15BPP Texture Data (131072 Bytes)
TextureF:
.incbin "GFX/F.bin" ; Include 256x256 15BPP Texture Data (131072 Bytes)
PolySort: ; Polygon Sorting Area
.close
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
ߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߋߏߋߓߏߏߏߓߏߏߏߏߏߓߓߗߓߏߏߏߏߏߓ}[[;::::::::::::::::::::::::::::::::::::::;;;;;;;;;;;;;;:::::::::::::::;;;;;;;;;;;;;::;;;;;;;::::::;;;;;;;;::::::::::::::::::::::::::::::::::::::::::::;;::::;\ߓߏߏߏߏߓ[ע:|ޗޏߏߏߏߏߓ[¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶utuߏߓߏߏߓ[׾:ߏߏߓߏ\999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999¶צ:ߏߏߏߓߏ]ʵƵƕ”tttt:ߋߏߏߏߓߟ;ֺ88999999999888888888888899999989988888888889899ʶƵµ}ߏߏߟ}:99::ZZ[[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{||||{{{{{{{{{{{[[[[[[[[[[[[[[[[[[[ZZZZZZZZZZZZZZZZZZZZZZZZ[[[[[[[[[[[[[[[[[[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZ999׺|ߓ[9::ZZ[[[[[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{[[[[[[[[[[[[ZZZZZZZZZZZZ::::::::::::::::::999999999999999:::::ZZZZZZZZZ[[[[[[[ZZZZZZZZZZZ[[[[[[[[[[[ZZzZZ[[[[[[[[[[{{{{{[[[ZZZZY99־ֺ:ߓ:ײ־999999999999999999999ʶƵ•ttu|ߋ[9:ZZ[[[{{{{|||||||||||||||||||||||||||||{{{{{{{{{{{{{{zzzzzzzZZZZ::::::9999999999999999999999999999999999999YYYYYYYYZZ[[[[[[[[[[[{{{{{{{{{{{{{zZZ[{{{{{{{{{{{||||||{{{{{{{{ZZZ:9¶|ߏ\:Z[[{||{{{[[[[[[{[ZZZZZZZZZ[[[[[ZZZZZZZZ[[[[[[[[[[[[{zz{zzz{{|{{[[:9ߏ;9::ZZZ[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zzzzzZZZZZZZYYY999999999YYYYYYZZZZZZZZZZZ[ZZZZZZZZZZZZZZZZZZZZZz{{{{{{{{{{{{{{zZZZ999¶ئߏ:99::ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZYYYY9999999:::;[[[[[[[Z:::::88889999999998999999::::999999YZZZZZZZZZZZZZ9999ʶƵ•צ|ߓ\:ZZ[{|{{{{[[[[[[ZZZZZZZZZ[[|||||||||||||\\[[[[[[[ZZZz{{{{{{{{|||{{{{{||ߜלӝӝ۝۝ללߜ{{[:99׾ߏ\:Z[{||{{[[[[[[[[;[[|Üߏߓߓߓߓߗߗߗ|{{[[[{{{{{{{{{||{{{{{|׽ϾǾǾ˾˾Ǿ˽ӽ{{Z:9׾99:ZZZZZ[{{{{{{{{{{{{{{{{{{zzzZZZZZZZZZZYYYY99999[|ߓߓ|{Z9:Ü[:99YZZZZZZZz{zZZZZZY998ʶƕ•צ|ߓ;9ZZ[{{{||{{{{{{zzzZZZZ:::::999:;\}|[:::::999999::[{[[[{{{{|{{{{zZZ99ƶߓߗ|[{||||{{{{{[||}ߗߓߓߓߓߗ}\\\\\[{{{zZZ[|||˝ߓߓӽ|{[Z9ߗ\::Z{{{{{{{{ZZZZZ::Z[{ޛޗ|Z999999:\Þ|||{{{Z:9׾:99:ZZZZZZZ{zzzzzzzzzZZZZZZZZZZZZZZZY999998:[ޛޓޓߏߏߏߏߏߏߏ|:׾ؾ;ߏߋߓ[99YYZZZZZZzZZZZZZZY99ʶƵ•ת|ߏ\:ZZ{||{{{{ZZZ::::;:[|ߓޏߏߏߏߏߏߏߏޏޏߏߏ}[:\ߋ||{{[Z:9׾ߏߗ|[|||\[[\|}ߓߓߏߏ}\;}Ý۝|{Z99ߓߗ;9:Z[{{{|{{{{ZZZZZ::::|}\[[;;:::;;;;[\\}}ߋߋߋ\;:[ߋ|;ZZZz{{|{{{zZZ99׺|ߏ:9:ZZZ[{{{{{{{{{{{{{{{{{{{{ZZZZZZY99999[ޓޏ}\;ضضض׶׶׶׶׶׶׶׶ض:;[}ޏދ[99YZZ[{{{{{{{{{{zZZZY9ʶ¶|ߓ|[{{{[[[Z:;[\|ޗޏߋߋߏߓ|[;::;[\|ޗߗߗߓߓߓޓޓޓޓߏߏ|||{ZZ9ߓߏߗ|[{||{[[[Z{ǜߏߋߋߏߏޏߓ|[[:::::::9999999:99:[[|ߛޓߓߓߏߏދދދދߏ||{{Z9ߓ:99:ZZZ{{{{{{{{{{{{{{{{{{ZZZZZ999988{ߓޗ\ز׶׺׾׾־ت|ޓޏߏߏߏ|89ZZ[[{{{{{{{{{ZZZY999ƶ¶|ߓߏߓ;9::Z[{{{{{{{{{zZZZZY999{ޗߏߏߏ[ƷƷƷ·׶[ޓ|:99YZZ{||{{{{zZZ:9׺|ߓߏߏߓߗ|[|{{[[;;[|ޗߏ߇߇ߋޗ|[;99::ZZZZZZZZZZZZ[[[[Z[[[ZZ:::999:{||{{{Z9:ߏߏߓߓ[:Z[{|{{{ZZ::;|ޗޏߋߋޓ[:9999999:YZZZZZZZZZZ:::::::::999׺׶:|\[z{{|{ZZ9׾ߏߏߓߏ9:::ZZZZZZZZZZZZZZZZZZY9998[ޛZ׺ƶηζζζʶƖ•{ߓߛ}:899::ZZZZZZZZZZZZY999ʶƵ¶|ߓߏߏߓ\:Z{|{{{[:::[ߓߏ|:999ZZZZzz{{{{{{{{{{{{{{{{[[[[[ZZZZZ9999־[|[[z{{|{{ZZ99ߓߏߏߓߗ|[||{[:;[|ߏߋ}[::::Z[[[{{{||{{{[[[[Z9:||Ӝߜ|{Z:99ߓߏߏߓߏ;99ZZ[{{{{{{{{{{{ZZZZ999:|ޓߋ|غ9999999ZZZZZZ[[[[{zzzzzZZZZZZZZZZ:::99ʶƵע:ߗ[:9YZZ[{|{{{{{zZZZ99ƶߓߏߏߓ:99:ZZZZ{{{{{{{{{{{zZZZY999׺[ߗߓߏߏ|9999999ZZZZZZZZZZZZZZZZY999999999ƶƶ¶ת:}ߛ[899Z[[[{{{{{{{{ZZZZ99ƶ¶ߓߏߏߗ\[{{{{[ZZ::[||Z99::Z[[{{||||{{{[ZZZ:99׾:{{{|{ZZ9ߓߏߗ\[{{{{[Z::[ߏ|Z999ZZ[[{{||{{{{ZZ::9[ߏ{{{{{Z9ߓ:899ZZZZ[[[[{{[ZZZZZY998׾[ޣߏ}:ײ־9999ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ9999999ƶµע[989:Z[Z[{{{{{[[ZZZZ99ƶ¶ߓ;9YZZ{{{|{{{{zzZY99[ߗߋ\9:ZZ[[{{{{{{{{{{{{{{{{[ZZZ:99־\Z99ZZ{{|{{{{ZZ99ƶ|ߏߗ}\ۜ{{[:::\ߗߏߋߓ|\;:Z[[{|||[[Z:9ض|||ߜ|{Z9ߏߓ\:Z{{{{{ZZ::|ߏߋߏޓޗ|::::Z[{|||{[[::99׺֮[{Z[{{|{ZZ9ߓߏ999:ZZZZZZZ:99999ʷײ|ߏߏߏ[ض999:ZZZZZZZZZZZZZZZZzzzzzzzzzZZZZZZZZZZZZZZZ::9999ζʵµצ\99:ZZZZZZZZZZZZZ99ʶƵ|ߓߏߏߏߓ\:ZZ{{{{{ZZZ:::|ߓߏ|:::Z[{{||||{{[[Z:99׾־׶}[[[{{{{[Z:9ߓߏߏߓߗ|\||{[;;;\ߓߓޓޛ[;;[[|||{[ZZY99:}}||ߜ{ZZ9:ߓߏߏߓ;:ZZZ{{{{||{{{{{{{ZZ9\ߟߓߛ[9:ZZ[{{{{|{{{{{{[ZZ:9ƶ¶}\:99Z[{{{{||{{{{ZZ99׺ߓߏߏߓߏ:99ZZZZZZZZZZZ999}׾99:ZZZZ[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{[ZZZZZ:99ƶƵ•:\99ZZZZ[{{{{{{[ZZZY9ƶ¶|ߓߏߏߓߗ\[{{{{Z:::Z|ߗ|;::ZZ{||{[[Z:9׶[}\{||{ZZ9ߓߏߏߓߗ\[{ߜ{[Z:::Z|ߗߏ};;[[{{{||[[::9ײ|\{ל{[Z9ߏߏߓߏ:9999ZZZZZZ9999׶:ߛߓߏߏ[غ999:ZZZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{[[ZZZ::Z:99ƵʵƵ|}:999ZZZZ[[[[[ZZZZ999Ƶ¶|ߓߏߏߓ;99ZZz{{{{{{{[ZZY98}ߓߏߓޏ[9ZZZZ{{{|{{{{[[Z::9ֺת[ߏߏ[ZZz{{{{{ZZ99׺|ߏߏߓߗ}\|zZ:;}ߋߋߓޗ[[[{|{[Z9|ߓߏߏߏ}\||{Z999ߓߏߏߓߗ\:Zz{|{{[ZY9\ޛZ9::Z{{{||{{[Z:99׺ײ|ߓߏߏ|[[[{|{ZZ9׾ߓߏߏߓߏ89999999ʷ\|׾9999ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ{{{{ZZZZZZZZ:::99ζƶµu:ߛ[88999ZZZZZZZZZ999ʶƵ¶|ߏߏߓ\:Zz{{|{{{ZZ:9;|:::Z[{{|{{[Z99׺}};;{{{{{ZZ99׾ߓߏߏߓߗ|\ۜ{{[Z:9[|[\|||{{Z:;}||{Z9ߓߏߏߓߏ;99ZZZZZZZZZ:99[ޗߏ|::ZZ{{{{{{{{{[ZZ999ʷʶخ[ߏ|;::ZZ{{{{{{{{Z:9¶ߓߏߏߓߏ:999999999Ʒ|ޓ[99:ZzZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZZZZZ:99ʶʖʖƶߓ|999YZZZ[{{{{{[ZZZ:9ʶ¶|ߓߏߏߗ\[{{|{[Z:9|ޓ|[[[{||{[Z:9ޗ\|۝|{ZZ9ߓߏߗ\[{{|{{[::\[;[{|{[ZZ9:||לߜ{{Z:9ߓߏߏ:9999ʶض;ߛ;999ZZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zzZZZZZ:999ʶʶ¶ת[;999ZZZZZ[[[ZZZZ999ƶ¶|ߓߏ;99:ZZZZZ::9\ߗ;9ZZz{{|{{{{{{[[Z:98ηƷ[::::Z{{{{||{{{ZZ:99ƶߓߏߗ|[{||{[:9[\\\||{{zZY9}|ӝߜ{{Z99:ߏ[:ZZ[[[{[[[Z::}ߓ|;:ZZ{||[ZZYY8;}[[{{||{{ZZ9׾ߏߏʶ׺ߗ;8999ZZZ[ZZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zzzzzz{{zZZZZZZ9:9ζҶζ\|999:ZZZZZZZZZ999Ƶצ|ߓߏߏ[::ZZ{{{[[ZZ99\ߗ\;;[{{||{[ZZ:9[|\|{{ZZ9ߏߏߏߓߗ|[{{||{zZ:;ߗ|<\||{{[::9:[Þ}}{ZZ9:ߏߏߏߓ;9999:9ؾ:;:Zzz{{{{{{{{[ZZ:9\ߏߋߗ\::ZZ{{{{{|{{{{{{ZZZ:9׺|ߏߏߓζƶײ[|9YZZZ[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{Z[ZZZ:9;ߗߋߋߋߋߋޗ[:::ZZZZ{{{{{{[ZZZZ99ʶ¶|ߓߏߏߓ\;ZZ[{{[[Z:99:[[\||{{[[Z:::\Þߛޏއߋߏǝ۝|{ZZ9ߓߏߏߓ\;[{{{{[[Z:99[[\|||{{[ZZ::;}ޓޏޓޗ˜ߝ|{ZZ9ߏߏߓ}ֺת[Z9Y9YZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZZZZ99:ޛޣ|Z99:ZZZZ[{[[[ZZZZ:99ʶƵ|ߓߏߏߓ:8999|Z::Z{{{{{{{[ZZZ:999[ǜÝ|[ZZ{{{{|{{{{Z:99ֺߓߏߏ|[[z{{{[[;::99[ߛߗ|[[||||||לǽǝϞםߝ|{ZZ99ߓ;:99YZ:::{ߗZ::[||{{{[[[[[[[[[\\|||{[Z9׾ߓ}ʶʶƶZߓ|999:ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ9999999999ZZZZZZZZZZZ999ʶƵ|ߓ;9999::9ߓ|Z:Z[{||{{{{{[[[{{{|||||{[Z99׾ߏ\[[ZZ[[[[::Zߗߓ[[|{ZZ9:}Zߗߓ|9ZZ[{{{{{{{{{{{[[ZzZZZZZz{{{{{{{{{{{{ZZ99׺ߓߏ}ƶƶ׮[ߗ[99:ZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZZZZZZZZZ:YYY999ZZZZZZZZZzzz{{{{{{{[ZZZ99ƶ¶|ߓߏߏߓ[:::::998|ZZ{{|{ZZ9ߓߏߏߓ[:9:;ZZY88:|[{{{{Z9ߓߏߏߓ|µƵ¶[99:ZZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZZZZZZZZZZZZZZZZZZZZZZZZzzzzzzzzZZZZZZ999ƶ¶|ߓߏߏߓ}׶:[99ZZ[{{{|{{{ZZ99ֺ|ߓߏߏߓ\;ZZ::ZY9\|{{{ZZ9:ߏߏߓ};[|:ZZ{{|{ZZ9ߏߏߏߓ|Ƶµ•[ߗ:999:ZZZZZZZZZZ{{{{ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZzzZZZZZZZZZZZZZZZZZZZZZZzzzzzZZZZZZZ999ʶƵ|ߓߏߏ;9׾}ߓߓ|:Z[{{|{{{ZZ9׾ߓ[:::::999}{{{ZZ9ߓ|ƶ·ߏߏ[99:ZZ{{{{{{{{{ZZ:9¶ߓ|ƶ¶}ߏߏߓ[99ZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{[ZZZ999ʶ¶|ߓ;:999;ߏ|[{{|{ZZ9[:9999;ߓ|{{{{Z9|ʶʵƵ•[99:ZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zzzzzZZZZ999ʶƵ¶|ߓ|ƶײ;\99YZz{{||{{{zZZ:9׺ߓ}[:99999\ߏ}[{|{Z:ߓ|[ߏ}::Zz{{|{[:9׾ߓ|ƵƵƕ•:|89:::[[zzzz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zzZZZZY99ʶƶ–|ߓ}:[ߏ[:Z{|{[Z:}[::9999\ߏ|[||{[:9:|ʶƶ׮[ߏ[99Z{[{||{{{zZZZ:9·}ߓߏ|ƵƵ׮[[99YZZ[[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZ99ƶ¶|ߓߏߏ;99998\ߏ[[||{[Z9ߓߏߏߓ};9[ߏ[[{{|[Z:ߓߏߏߓ|ƵƵƕ|:9Y::Z[[zzZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZzzzZZZZ999ʶƶ¶|ߓߏߏߓ}ʶ׮:;::Zz{{||{{{[Z:9׺}ߓߏߏߓ\:Z::999[}\||{[:9:ߏߏߓ};ײ\;:[{{|{[:9ؾߏߏߓ|ʵƵ•ߓߓ[899ZZZZZZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZZZZZ999ʶƵئ|ߓߏߏ};׾ߓߓ}[;[{{{{{ZZ9׾ߓߏ\::9:::9ޓߓޛ}\|{ZZ9:ߓߏ|ƶ¶׮Zߓ[:ZZZzz{{{{{{{{{{{{{{{ZZZ:99¶ߓߏ|ʶƶµ:ߓߓߗ[9YYZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZZZ99ʶ¶|ߓߏ[::9:99Zߓߓߓ|||{[Z9ߏߏ};:99999:ߓޟ|\||{ZZ9ߏ|ʶƕƕߓߏߓߛ:999ZZZZZZZ{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZZZZ999ƶ¶|ߓߏ}ƶ|ߓߓߗ\::ZZZ{{{{{ZZ99׺ߓߏ\[ZZZZZ99|||ם{ZZ9:ߓߏ};998ײ:ߟ|[[[{{{{{Z:9׾ߓߏ}ʶεʕƕߛ[999:ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZY99ʶƵ|ߓߏ;99999غ|ߗ|[[[{{{{[ZZ9ߓߏ\[ZZZZZZ99\|||{Z:99ߏ}ζƶ:ߗߗ|9ZZZ[{{{{{{{{ZZZ:9¶|ߓߏƶ¶ߛߓߓ|:88YZZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZZZ999ʶ¶|ߓߏߓߓ\;ZZ[[ZZ999}ޏߏ|{{ߛ{[Z9ߓߏߓߓ\;ZZ[[[ZZZ9[ߓߏߓ|{ۛ{{Z99ߓߏߓߓ}ƶƶ–ߗߏߓߓ999:ZZZZZZZZZZ[[[[ZZZZZZZZZZZZZZ{{{{{{{{ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ{{{{{{{ZZZZZZZ{{{{{{{{ZZZZZZZZZZZZZZzzzzZZZZZZZZ9999ʶƶ¶|ߓߏߓߓ:ʷ¶|ߏ{Z99ZZZ{{{{{{zZZ99ƶߓߏߓߓ|[{[{{[[ZZZ:[ߏߏ|{||{Z:9:ߓߏߓߓ;:99:::9999ײߏߋߏ|[;[[{{{{{Z:9׾ߓߏʶʶƖת|ߋߏߗ|99YZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ{{{{{{{ZZZZZZZZ{{{zzzZZZZZZZZ[[ZZZZZZzzzZZZZZZZZ9999ʶƵµ|ߓߏߏ[:ZZZZZZZZ99׾[ߋߏߓ\;;[{{{{[Z99ߓߏߏߓ|[{{{{{{{{{Z:::ߏߏߏ}\||{Z:99ߏߏߓߓ;88999ζ¶ת\\:99YZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZ99׺|ߓߏߏߓߗʶƵ;~ߋߋ|:9999YZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZ[[[[ZZZZZZZZZ[{{{{{{{{{{{zZZZ99ƶ¶|ߓߏߏߓ|[{{ߛ{{{Z:9]ߋߋߋ{{{|{Z:9ߓߏߏߓ\[[z{{{{{{{{Z:9<ߋߋZ{|{ZZ9ߏߏߏߓߓʶƵ•}ߏߋߏ[899:ZZZZZZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZZZZZZZZ:9999999:::|Ϝ˜{Z:ZZZZZZZZZZZZZ9999ʶƵ¶|ߓߏߏߓߓ;999:ZZZ::9·ض[ߏߏߏ[999ZZ[[||||||{[[[ZzzZ[[\|Ý||||{{{{{{ZZZ99׺ߓߏ}|{||[[:9:ߏ{ۜߞϾ˾{ZZ9:ߓߏ[::ZZ[{{{{[[Z:9׾خ:ߛ{Z[[[||||{{{{zZZ[}Ӟ˝ۜ{{{{Z:9׾ߓߏߓ99ƶ–ت|ߓ{999YZZZZZZZZZZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZ{{ZZZZZZZZZZZZZZ:99999\ߓߗޛ[99ZZZZZZZZZ9999Ƶ•|ߓߏߓ\:ZZ{{{{|||{[[Z:9\|[[[{{{{{[[[[[\ÝߓߓߗޗޛާӜ|{[Z99ߓߏ}|||{[Z:9|ߗ}||||}מ˞ޗޛާ۽{ZZ9:ߓߏ;9999::::99¶ƕߏ}:999YZZZ[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{[ZZ:999999;ޗ[:ZZZ[{{{{{[ZZZZ:9ʶ¶|ߓߏߓ:9999ZZ:::99ƶ•خ[ߓ[:99ZZZZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{zZZZZZ:99999;|}[:ZZZZ[{{{{[ZZZZ99ʶ¶|ߓߏ|[{{{{ZZ9[ߓ||||{{{{[[[[|}ߗߓÞמ{{Z9ߓߏߏ\[[{{{[ZZ9ؾ[ߛ|[[|||{{ZZ::;[}ߓߓ}\}}|{ZY9ߏߓ8999999999¶–ئ[|:8999YZZZZZZZZz{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZZZZZZZZZZZY9999998;}ߓߓ|;999ZZZZZ[ZZZZZ99ʶƶ¶|ߓߏߓ;9ZZZz{{{{{{[ZZ:99Ʒײ}|:::ZYZZZz{{{{{{{{{{{{{zZZZ::99999[\[;:Z[{{{{|||{{{[ZZ99׺ߓߏ}|ۜ|{[Z:\ߟߗÜӜߜ|{{{{{|ߓߓߏ}}{{Z::ߏߏ[:ZZz{{{{{[Z::Ʒخ[ߗZZZZZz{{{{{{{{ZZZZZ:9Z|ߗߓߏޓ|[;[[{{{{{{{[Z99׺ߓߏߓ8999Y9:9999ƶƖƖئ|ߗߏߏߏ|:88999YYYZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZYY9999998[ߗߓߗޛ|99999ZZZZZZZZZ999ʶƶ¶|ߓߏ\;Z{{{{[Z:99:ߏߏߏߏ}}\[[[{{{{{{{[[ZZZ::;;;;[}{[Z[{{|||[Z:9ߓߏ}\{|{zZ99;ߏߏߏ|||||||{[[;\|}ߓ|{{||{[:9ߏ;9YZZZ{{{{{{{ZZZZ:99ζʶצ:{:999ZYYZZZZZZ[[[{{zzzzzzzzzzZZZZZZZZZ:9999999[||:9999:Z[[{{{{{|{{{{{{ZZZ:Ʒ|ߓߏߏߓ:9999ZZZZZZZZZZ:::99ζƶת:[9999999999ZZZZZZYZZZYYYYYYYYY99999999[ޛߓߏߏ:999::ZZZZ{{{{{{ZZZZ::ƶ¶|ߓߏ}\{{zZ99|||\|||||{[[;;;;[\|[[[{||[Z:ߏ}[[{{{zY99:|[[[{[{{{{{{{{{{{{{{{{{{{[[;:;;;\|}ޗߏߏߏߓ|[ZZ[[{{|{[Z9ߏߓ8999ZZZZZZZZZ:::99εʶƵ•צ:}|[9ؾؾ;}ߏߋ߇ߋߏߏߏߓޗ8999::ZZZZZZZZZZZZZ99ʶƶ–|ߓߏߗ;:ZZ{{{||||{{zZZY98׾;[::::999::::::::::::::::99:;\ߏދޏߗ[9999YZZZz{{|{{[Z:9׺ߓߏߏߓߏ}||{zZZY99;}ߏߏߏޓ|||||||||\\\\\\||||||||||||||}ޓߏߏߋߏޏޗ|[{{ߜ|[Z9:ߏߏߓ[::ZZ{{{|||{{{zzZY988Ʒ\ߓߏߏߏߏߓޗޟ||[[:::::::;;;[\|||ߟߛߓߏދߋߋߋߓޓ[99ZZZz{{{{{{{{[::׾ߏߏߓߗ999ZZZZZZZZZZZZZZ99998ʶƶƶƕ•ئ[ޗߓޓ|[[[[[[[\\||}ޛޗߏߏߏߏߏޗZ9999:ZZZZZZZZZZZZZZZZZ999ʶƶ–|ߓߏߏߓߏߗ\;[{{|{{[Z:9׾[ߏߏߏߏߓߗߗߛޛߋߋߓߛ|:999ZZ{{{|||[Z:9ؾߏߏߓߏ}|||{[Z:99;|ߏߏߏߏߏߓ|\[:Z{|{[:9ߏߏߓ:99ZZZ[{{{{{{{{{{{{{[ZZZZ::9¶¶ت[:8899:::Z[{{{{{{{{{{{{{{{{{{{ZZZ::ƶ¶|ߏߏߏߓ:99:ZZ[{{{{{{{{{{{{{ZZZZZZ999ʶʶƶ•:ߓ|:99999ZZZZ{{{{{{{{{{{{{{{{{{[ZZZ:9ƶ¶|ߓߏߏ}||{{[ZZ:9:|ߋ}[[ZZ[{{||{[:9ߓߏ|[{{{{[Z::9:|ߓߏߋߋߏߏߏߏߏߏߏ}[:::ZZZZ{{||{[Z9ߓߏ99::ZZZZZ{ZZ{{{{ZZZZZZZY99999ʶ¶ئ:|ޗޓߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߓߗߛ|:زغ99999YZZZZZZZ{{{{{{{{{{{[ZZZZ:99ʶƵئ|ߓߏ;9:ZZ{{{|{{{{{[Z::9־־ײ[ߏߏߏߏߏߏߏߏߏߏߏߏߓߏߏߏߏߏߏߏߏߏߏߓߋߋߋޏޗ|[999YZZZ{{{{{{||{{[Z::Ʒ}ߏߏ}|ל||{[[[Z:9:|ߓߏߏߏߏߏߏߏߏߏߋߏߏߏߏߏߏߏߏߓߏߋޏޓޗ||[:[[[[{{{|{[:9ߓߏߏ[::Z[{{||{{[[Z:::9·׮:|ޛߗߏߋߋߏߏߏߏߏߏߏߏޗZ99999YZz{{{||{{[[:9׾}ߏߏߏ:99:ZZZZZZZZZZZZZZZZZZZZZY999999ƵƵµ••:|ߗߏߏߏߓߓ|[ײֺ88999:::ZZZZZZZZZZZZZZZZZZZZZZZZZZ:99ʶƕ•צ|ߏߏߏ\[Z{{|||{{[[Z::999Ʒ׺[|ߓߏߏ}\;99ZZZZz{{|{{[:9ؾߏߏߏߗ|[{ߜ||{{[ZZZ999:;\|ߗߗ\[;;;;:::Z[{{{|{[Z9ߏߏߋ:9:ZZZZ{{{{{{{{{{{{{{{{{{{{{zZZZZZZ::99¶¶¶¶–צ:[|ޟޛߏߏ[خײ׶88999YZZZZZZ[[{{{{{{{{{{{{{{{{{{{{{{{{{[ZZZ99ƶƶ|ߏߏߋ:99:ZZZZZz{{{{{{{{{{zzzZZZZZZZZZZZ::999ƶʶʖʶ׮:[|ߗߗޓߏߏߏߏߓߏޓ}\:ض9999::ZZZZZZZZZZZZzzz{{{{{{{{{{{{{z{{ZZZZ:99ƶµ|ߗߏߏߏߋ|Z{{{|||{{[[[ZZ:99::[||}ޟޛޛ|{[::9::::Z[{{{{||{[Z9:ߗߏߏߋ|:ZZ[{||||{{{{[[[ZZ:9999ؾ׾׺׺غض:;[[[[[{{|||||[[[[[[[:9999:ZZZ[[{{|||||{{[Z:9[ߏߗ|99999999YYYYYYYY9999999999999999999ʶʶʶƵµ•uuuuuuµµƶƶ9999999YYY999999YZZZZZZZYY9999999999ζʵ•;ߏߓߗ};:::Z[[[[[{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZZZZ::::::ƷƷƶƶƶ¶¶¶9::::::ZZZZZ[[{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ZZZZY9888ʷ}ߏ\[[[|||||||||{[[[[ZZZ::::99:::::Z[[[{{{||||{{zZ99|ߛߏߏ|:9:::ZZZZZZzzzzzzzzzzzzzzzzzzzzzZZZZZZZZZZZ::::99999999999:::ZZZZZZZZZZZZZZZZzzzzzzzzzzzzzzZZZZZZZZZZZY998׺[ߛߓߏߋޏޗ[ƶƶƶƶƶƶµµµµµµµµµ¶¶¶ƶƶƶƶ¶¶|ޓߏߋ߇ދߓߗ[Z:::::::ZZZZZZZZZZZZ[[[[[[[[[[[ZZZZZZZZZZZZZ::::::9999999999999:ZZZZZZZZZZZZZZ[[[[[[[[[[[[[[[[Z[Z[Z[ZZZZZZZZZZZ:999[ޏދߋߋߏߋߋߋދޏ||\[\\[{{{{{||||||||||||||||||||||{{{{{{{[[[[[[[[[[[[[[::::::::::999:::::::::Z[[[[[[[[[[{{{{||||||||||||||||||||||||||||||||||{{{[[[Z::::;;[}ޓߋ߇߇ߏߋߋߋޏޏޓޗ}\[;;;ZZZ[[;;;;;;;;[[[[[[[[;;;;;;;;;;;;::::::::::::::::::::::::::::;;;;;;;;;;;;;;;;;;;;;;[[[[[[[[[;;;;;;:::::;\}ߋ߇ߋߏߏߏ}}}||||||||||||[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[\||||||||||ߏߏߏޓޏޏޏߓ}}}}}}}}}}}}}}}}}}}}}}}}}}}ߏߏߏߏߏߏߏߏߓޏߏߋߋߋߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߓߏߏߓߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߋ߇ߋߓߋߋߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߋߋߋߋߋߋߋߋߋߋߋߋߋߋߏߏߏߏߏߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߋߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏߏޣߏ
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
;================
; PSX GTE (COP2)
;================
;========================================================================================
; GTE Registers (Use: Data (R0..R31) lwc2,swc2,mfc2,mtc2 / Control (R32..R63) cfc2,ctc2)
;========================================================================================
; GTE Registers - 16-Bit Vectors
; VXY0 equ r0 ; GTE R0 - 16-Bit Vectors: Vector XY 0 (V0) - Bit 0..15 = VX0 (S.15.0), Bit 16..31 VY0 (S.15.0)
; VZ0 equ r1 ; GTE R1 - 16-Bit Vectors: Vector Z 0 (V0) - Bit 0..15 = VZ0 (S.15.0) (Returns Sign-Expanded 32-Bit Value)
; VXY1 equ r2 ; GTE R2 - 16-Bit Vectors: Vector XY 1 (V1) - Bit 0..15 = VX1 (S.15.0), Bit 16..31 VY1 (S.15.0)
; VZ1 equ r3 ; GTE R3 - 16-Bit Vectors: Vector Z 1 (V1) - Bit 0..15 = VZ1 (S.15.0) (Returns Sign-Expanded 32-Bit Value)
; VXY2 equ r4 ; GTE R4 - 16-Bit Vectors: Vector XY 2 (V2) - Bit 0..15 = VX2 (S.15.0), Bit 16..31 VY2 (S.15.0)
; VZ2 equ r5 ; GTE R5 - 16-Bit Vectors: Vector Z 2 (V2) - Bit 0..15 = VZ2 (S.15.0) (Returns Sign-Expanded 32-Bit Value)
; IR1 equ r9 ; GTE R9 - 16-Bit Vectors: Vector 3 (IR) - Bit 0..15 = IR1 (S.15.0) (Returns Sign-Expanded 32-Bit Value)
; IR2 equ r10 ; GTE R10 - 16-Bit Vectors: Vector 3 (IR) - Bit 0..15 = IR2 (S.15.0) (Returns Sign-Expanded 32-Bit Value)
; IR3 equ r11 ; GTE R11 - 16-Bit Vectors: Vector 3 (IR) - Bit 0..15 = IR3 (S.15.0) (Returns Sign-Expanded 32-Bit Value)
; GTE Registers - Interpolation Factor
; IR0 equ r8 ; GTE R8 - Interpolation Factor: Intermediate Value 0 (IR0) - Bit 0..15 = IR0 (S.3.12) (Returns Sign-Expanded 32-Bit Value)
; GTE Registers - Screen XYZ Coordinate FIFO
; SXY0 equ r12 ; GTE R12 - Screen XYZ Coordinate FIFO: Screen XY 0 FIFO (Older) - Bit 0..15 = SX0 (S.15.0), Bit 16..31 SY0 (S.15.0)
; SXY1 equ r13 ; GTE R13 - Screen XYZ Coordinate FIFO: Screen XY 1 FIFO (Old) - Bit 0..15 = SX1 (S.15.0), Bit 16..31 SY1 (S.15.0)
; SXY2 equ r14 ; GTE R14 - Screen XYZ Coordinate FIFO: Screen XY 2 FIFO (New) - Bit 0..15 = SX2 (S.15.0), Bit 16..31 SY2 (S.15.0)
; SXYP equ r15 ; GTE R15 - Screen XYZ Coordinate FIFO: Screen XY 2 FIFO (Mirror) - Bit 0..15 = SXP (S.15.0), Bit 16..31 SYP (S.15.0) (Move-On-Write)
; SZ0 equ r16 ; GTE R16 - Screen XYZ Coordinate FIFO: Screen Z 0 FIFO (Oldest) - Bit 0..15 = SZ0 (16.0)
; SZ1 equ r17 ; GTE R17 - Screen XYZ Coordinate FIFO: Screen Z 1 FIFO (Older) - Bit 0..15 = SZ1 (16.0)
; SZ2 equ r18 ; GTE R18 - Screen XYZ Coordinate FIFO: Screen Z 2 FIFO (Old) - Bit 0..15 = SZ2 (16.0)
; SZ3 equ r19 ; GTE R19 - Screen XYZ Coordinate FIFO: Screen Z 3 FIFO (New) - Bit 0..15 = SZ3 (16.0)
; GTE Registers - Color Register & Color FIFO
; RGBC equ r6 ; GTE R6 - Color Register & Color FIFO: Color/Code Value (RGBC) - Bit 0..7 = R, Bit 8..15 = G, Bit 16..23 = B, Bit 24..31 = CODE
; RGB0 equ r20 ; GTE R20 - Color Register & Color FIFO: Characteristic Color FIFO 0 (RGB0) - Bit 0..7 = R0, Bit 8..15 = G0, Bit 16..23 = B0, Bit 24..31 = CD0
; RGB1 equ r21 ; GTE R21 - Color Register & Color FIFO: Characteristic Color FIFO 1 (RGB1) - Bit 0..7 = R1, Bit 8..15 = G1, Bit 16..23 = B1, Bit 24..31 = CD1
; RGB2 equ r22 ; GTE R22 - Color Register & Color FIFO: Characteristic Color FIFO 2 (RGB2) - Bit 0..7 = R2, Bit 8..15 = G2, Bit 16..23 = B2, Bit 24..31 = CD2
; RES1 equ r23 ; GTE R23 - Color Register and Color FIFO: Reserved (R/W)
; GTE Registers - 32-Bit Maths Accumulator/Sum Of Product
; MAC0 equ r24 ; GTE R24 - Maths Accumulator/Sum Of Product: Value 0 (MAC0) - Bit 0..31 = MAC0 (S.31.0)
; MAC1 equ r25 ; GTE R25 - Maths Accumulator/Sum Of Product: Vector 1 (MAC1) - Bit 0..31 = MAC1 (S.31.0)
; MAC2 equ r26 ; GTE R26 - Maths Accumulator/Sum Of Product: Vector 2 (MAC2) - Bit 0..31 = MAC2 (S.31.0)
; MAC3 equ r27 ; GTE R27 - Maths Accumulator/Sum Of Product: Vector 3 (MAC3) - Bit 0..31 = MAC3 (S.31.0)
; GTE Registers - Color Conversion R,G,B (48-Bit/15-Bit)
; IRGB equ r28 ; GTE R28 - Color Conversion: Input (IRGB) - Bit 0..4 = Red, Bit 5..9 = Green, Bit 10..14 = Blue, Bit 15-31 = Zero (Not Used)
; ORGB equ r29 ; GTE R29 - Color Conversion: Output (IRGB) - Bit 0..4 = Red, Bit 5..9 = Green, Bit 10..14 = Blue, Bit 15-31 = Zero (Not Used)
; GTE Registers - Count Leading-Zero/One (Sign Bits)
; LZCS equ r30 ; GTE R30 - Count Leading-Zero/One: Source (LZCS) - Bit 0..31 = LZCS
; LZCR equ r31 ; GTE R31 - Count Leading-Zero/One: Result (LZCR) - Bit 0..31 = LZCR
; GTE Registers - Matrix (3x3)
; RT0 equ r0 ; GTE R32 - Matrix: Rotation (RT/CNT00) - Bit 0..15 = RT11 (S.3.12), Bit 16..31 RT12 (S.3.12)
; RT1 equ r1 ; GTE R33 - Matrix: Rotation (RT/CNT01) - Bit 0..15 = RT13 (S.3.12), Bit 16..31 RT21 (S.3.12)
; RT2 equ r2 ; GTE R34 - Matrix: Rotation (RT/CNT02) - Bit 0..15 = RT22 (S.3.12), Bit 16..31 RT23 (S.3.12)
; RT3 equ r3 ; GTE R35 - Matrix: Rotation (RT/CNT03) - Bit 0..15 = RT31 (S.3.12), Bit 16..31 RT32 (S.3.12)
; RT4 equ r4 ; GTE R36 - Matrix: Rotation (RT/CNT04) - Bit 0..15 = RT33 (S.3.12) (Returns Sign-Expanded 32-Bit Value)
; LLM0 equ r8 ; GTE R40 - Matrix: Light Source (LLM/CNT08) - Bit 0..15 = L11 (S.3.12), Bit 16..31 L12 (S.3.12)
; LLM1 equ r9 ; GTE R41 - Matrix: Light Source (LLM/CNT09) - Bit 0..15 = L13 (S.3.12), Bit 16..31 L21 (S.3.12)
; LLM2 equ r10 ; GTE R42 - Matrix: Light Source (LLM/CNT10) - Bit 0..15 = L22 (S.3.12), Bit 16..31 L23 (S.3.12)
; LLM3 equ r11 ; GTE R43 - Matrix: Light Source (LLM/CNT11) - Bit 0..15 = L31 (S.3.12), Bit 16..31 L32 (S.3.12)
; LLM4 equ r12 ; GTE R44 - Matrix: Light Source (LLM/CNT12) - Bit 0..15 = L33 (S.3.12) (Returns Sign-Expanded 32-Bit Value)
; LCM0 equ r16 ; GTE R48 - Matrix: Light Color (LCM/CNT16) - Bit 0..15 = LR1 (S.3.12), Bit 16..31 LR2 (S.3.12)
; LCM1 equ r17 ; GTE R49 - Matrix: Light Color (LCM/CNT17) - Bit 0..15 = LR3 (S.3.12), Bit 16..31 LG1 (S.3.12)
; LCM2 equ r18 ; GTE R50 - Matrix: Light Color (LCM/CNT18) - Bit 0..15 = LG2 (S.3.12), Bit 16..31 LG3 (S.3.12)
; LCM3 equ r19 ; GTE R51 - Matrix: Light Color (LCM/CNT19) - Bit 0..15 = LB1 (S.3.12), Bit 16..31 LB2 (S.3.12)
; LCM4 equ r20 ; GTE R52 - Matrix: Light Color (LCM/CNT20) - Bit 0..15 = LB3 (S.3.12) (Returns Sign-Expanded 32-Bit Value)
; GTE Registers - Translation Vector X,Y,Z (TR)
; TRX equ r5 ; GTE R37 - Translation Vector: X (TRX/CNT05) - Bit 0..31 = TRX (S.31.0)
; TRY equ r6 ; GTE R38 - Translation Vector: Y (TRY/CNT06) - Bit 0..31 = TRY (S.31.0)
; TRZ equ r7 ; GTE R39 - Translation Vector: Z (TRZ/CNT07) - Bit 0..31 = TRZ (S.31.0)
; GTE Registers - Background Color R,G,B (BK)
; RBK equ r13 ; GTE R45 - Background Color: Red Component (RBK/CNT13) - Bit 0..31 = RBK (S.19.12)
; GBK equ r14 ; GTE R46 - Background Color: Green Component (GBK/CNT14) - Bit 0..31 = GBK (S.19.12)
; BBK equ r15 ; GTE R47 - Background Color: Blue Component (BBK/CNT15) - Bit 0..31 = BBK (S.19.12)
; GTE Registers - Far Color R,G,B (FC)
; RFC equ r21 ; GTE R53 - Far Color: Red Component (RFC/CNT21) - Bit 0..31 = RFC (S.27.4)
; GFC equ r22 ; GTE R54 - Far Color: Green Component (GFC/CNT22) - Bit 0..31 = GFC (S.27.4)
; BFC equ r23 ; GTE R55 - Far Color: Blue Component (BFC/CNT23) - Bit 0..31 = BFC (S.27.4)
; GTE Registers - Screen Offset & Distance
; OFX equ r24 ; GTE R56 - Screen Offset & Distance: Screen Offset X (OFX/CNT24) - Bit 0..31 = OFX (S.15.16)
; OFY equ r25 ; GTE R57 - Screen Offset & Distance: Screen Offset Y (OFY/CNT25) - Bit 0..31 = OFY (S.15.16)
; H equ r26 ; GTE R58 - Screen Offset & Distance: Projection Plane Distance (H/CNT26) - Bit 0..15 = H (16.0) (Returns Sign-Expanded 32-Bit Value)
; DQA equ r27 ; GTE R59 - Screen Offset & Distance: Depth Queing Parameter A. (Coefficient) (DQA/CNT27) - Bit 0..15 = DQA (S.7.8)
; DQB equ r28 ; GTE R60 - Screen Offset & Distance: Depth Queing Parameter A. (Offset) (DQB/CNT28) - Bit 0..31 = DQB (S.7.24)
; GTE Registers - Average Z Factors
; ZSF3 equ r29 ; GTE R61 - Average Z: Z3 Average Scale Factor (Normally 1/3) (ZSF3/CNT29) - Bit 0..15 = ZSF3 (S.3.12)
; ZSF4 equ r30 ; GTE R62 - Average Z: Z4 Average Scale Factor (Normally 1/4) (ZSF4/CNT30) - Bit 0..15 = ZSF4 (S.3.12)
; OTZ equ r7 ; GTE R7 - Average Z Registers: Average Z Value (Ordering Table) (OTZ) - Bit 0..15 = OTZ (16.0)
; GTE Registers - Error Flag
; FLAG equ r31 ; GTE R63 - Error Flag: Returns Calculation Errors (FLAG/CNT31) - Bit 0..31 = FLAG
;====================================
; GTE Commands (Use: "cop2 command")
;====================================
; GTE Coordinate Calculation Commands
RTPS equ 0x0180001 ; GTE Coordinate Calculation Commands: Perspective Transformation (Single) - 15 Cycles
RTPT equ 0x0280030 ; GTE Coordinate Calculation Commands: Perspective Transformation (Triple) - 23 Cycles
NCLIP equ 0x1400006 ; GTE Coordinate Calculation Commands: Normal Clipping - 8 Cycles
AVSZ3 equ 0x158002D ; GTE Coordinate Calculation Commands: Average Three Z Values (Triangle) - 5 Cycles
AVSZ4 equ 0x168002E ; GTE Coordinate Calculation Commands: Average Four Z Values (Quad) - 6 Cycles
; GTE General Purpose Calculation Commands
MVMVA equ 0x0400012 ; GTE General Purpose Calculation Commands: Multiply Vector By Matrix With Vector Addition - 8 Cycles
SQR equ 0x0A00428 ; GTE General Purpose Calculation Commands: Calculate Square Of Vector (Result Always Positive) - 5 Cycles
OP equ 0x170000C ; GTE General Purpose Calculation Commands: Calculate Outer Product Of Two Signed 16-Bit Vectors - 6 Cycles
; GTE Color Calculation Commands
NCS equ 0x0C8041E ; GTE Color Calculation Commands: Normal Color (Single) - 14 Cycles
NCT equ 0x0D80420 ; GTE Color Calculation Commands: Normal Color (Triple) - 30 Cycles
NCCS equ 0x108041B ; GTE Color Calculation Commands: Normal Color Color (Single Vector) - 17 Cycles
NCCT equ 0x118043F ; GTE Color Calculation Commands: Normal Color Color (Triple Vector) - 39 Cycles
NCDS equ 0x0E80413 ; GTE Color Calculation Commands: Normal Color Depth Cue (Single Vector) - 19 Cycles
NCDT equ 0x0F80416 ; GTE Color Calculation Commands: Normal Color Depth Cue (Triple Vector) - 44 Cycles
CC equ 0x138041C ; GTE Color Calculation Commands: Color Color - 11 Cycles
CDP equ 0x1280414 ; GTE Color Calculation Commands: Color Depth Cue - 13 Cycles
DCPL equ 0x0680029 ; GTE Color Calculation Commands: Depth Cue Color Light - 8 Cycles
DPCS equ 0x0780010 ; GTE Color Calculation Commands: Depth Cueing (Single) - 8 Cycles
DPCT equ 0x088002A ; GTE Color Calculation Commands: Depth Cueing (Triple) - 17 Cycles
INTPL equ 0x0980011 ; GTE Color Calculation Commands: Interpolation Of Vector & Far Color - 8 Cycles
GPF equ 0x190003D ; GTE Color Calculation Commands: General Purpose Interpolation - 5 Cycles
GPL equ 0x1A0003E ; GTE Color Calculation Commands: General Purpose Interpolation With Base - 5 Cycles
; GTE MVMVA (Multiply Vector By Matrix With Vector Addition) Command Instructions
RTV0 equ 0x0486012 ; GTE MVMVA Command: Vector 0 (V0) * Rotation Matrix (RT) - 8 Cycles
RTV1 equ 0x048E012 ; GTE MVMVA Command: Vector 1 (V1) * Rotation Matrix (RT) - 8 Cycles
RTV2 equ 0x0496012 ; GTE MVMVA Command: Vector 2 (V2) * Rotation Matrix (RT) - 8 Cycles
RTIR12 equ 0x049E012 ; GTE MVMVA Command: Vector 3 (IR) * Rotation Matrix (RT) - 8 Cycles
RTIR0 equ 0x041E012 ; GTE MVMVA Command: Intermediate Value 0 (IR0) * Rotation Matrix (RT) - 8 Cycles
RTV0TR equ 0x0480012 ; GTE MVMVA Command: Vector 0 (V0) * Rotation Matrix (RT) + Translation Vector (TR) - 8 Cycles
RTV1TR equ 0x0488012 ; GTE MVMVA Command: Vector 1 (V1) * Rotation Matrix (RT) + Translation Vector (TR) - 8 Cycles
RTV2TR equ 0x0490012 ; GTE MVMVA Command: Vector 2 (V2) * Rotation Matrix (RT) + Translation Vector (TR) - 8 Cycles
RTIRTR equ 0x0498012 ; GTE MVMVA Command: Vector 3 (IR) * Rotation Matrix (RT) + Translation Vector (TR) - 8 Cycles
RTV0BK equ 0x0482012 ; GTE MVMVA Command: Vector 0 (V0) * Rotation Matrix (RT) + Background Color Vector (BK) - 8 Cycles
RTV1BK equ 0x048A012 ; GTE MVMVA Command: Vector 1 (V1) * Rotation Matrix (RT) + Background Color Vector (BK) - 8 Cycles
RTV2BK equ 0x0492012 ; GTE MVMVA Command: Vector 2 (V2) * Rotation Matrix (RT) + Background Color Vector (BK) - 8 Cycles
RTIRBK equ 0x049A012 ; GTE MVMVA Command: Vector 3 (IR) * Rotation Matrix (RT) + Background Color Vector (BK) - 8 Cycles
LL equ 0x04A6412 ; GTE MVMVA Command: Vector 0 (V0) * Light Source Matrix (LLM) (Lower Limit Result 0) - 8 Cycles
LLV0 equ 0x04A6012 ; GTE MVMVA Command: Vector 0 (V0) * Light Source Matrix (LLM) - 8 Cycles
LLV1 equ 0x04AE012 ; GTE MVMVA Command: Vector 1 (V1) * Light Source Matrix (LLM) - 8 Cycles
LLV2 equ 0x04B6012 ; GTE MVMVA Command: Vector 2 (V2) * Light Source Matrix (LLM) - 8 Cycles
LLIR equ 0x04BE012 ; GTE MVMVA Command: Vector 3 (IR) * Light Source Matrix (LLM) - 8 Cycles
LLV0TR equ 0x04A0012 ; GTE MVMVA Command: Vector 0 (V0) * Light Source Matrix (LLM) + Translation Vector (TR) - 8 Cycles
LLV1TR equ 0x04A8012 ; GTE MVMVA Command: Vector 1 (V1) * Light Source Matrix (LLM) + Translation Vector (TR) - 8 Cycles
LLV2TR equ 0x04B0012 ; GTE MVMVA Command: Vector 2 (V2) * Light Source Matrix (LLM) + Translation Vector (TR) - 8 Cycles
LLIRTR equ 0x04B8012 ; GTE MVMVA Command: Vector 3 (IR) * Light Source Matrix (LLM) + Translation Vector (TR) - 8 Cycles
LLV0BK equ 0x04A2012 ; GTE MVMVA Command: Vector 0 (V0) * Light Source Matrix (LLM) + Background Color Vector (BK) - 8 Cycles
LLV1BK equ 0x04AA012 ; GTE MVMVA Command: Vector 1 (V1) * Light Source Matrix (LLM) + Background Color Vector (BK) - 8 Cycles
LLV2BK equ 0x04B2012 ; GTE MVMVA Command: Vector 2 (V2) * Light Source Matrix (LLM) + Background Color Vector (BK) - 8 Cycles
LLIRBK equ 0x04BA012 ; GTE MVMVA Command: Vector 3 (IR) * Light Source Matrix (LLM) + Background Color Vector (BK) - 8 Cycles
LC equ 0x04DA412 ; GTE MVMVA Command: Vector 0 (V0) * Light Color Matrix (LCM) (Lower Limit Result 0) - 8 Cycles
LCV0 equ 0x04C6012 ; GTE MVMVA Command: Vector 0 (V0) * Light Color Matrix (LCM) - 8 Cycles
LCV1 equ 0x04CE012 ; GTE MVMVA Command: Vector 1 (V1) * Light Color Matrix (LCM) - 8 Cycles
LCV2 equ 0x04D6012 ; GTE MVMVA Command: Vector 2 (V2) * Light Color Matrix (LCM) - 8 Cycles
LCIR equ 0x04DE012 ; GTE MVMVA Command: Vector 3 (IR) * Light Color Matrix (LCM) - 8 Cycles
LCV0TR equ 0x04C0012 ; GTE MVMVA Command: Vector 0 (V0) * Light Color Matrix (LCM) + Translation Vector (TR) - 8 Cycles
LCV1TR equ 0x04C8012 ; GTE MVMVA Command: Vector 1 (V1) * Light Color Matrix (LCM) + Translation Vector (TR) - 8 Cycles
LCV2TR equ 0x04D0012 ; GTE MVMVA Command: Vector 2 (V2) * Light Color Matrix (LCM) + Translation Vector (TR) - 8 Cycles
LCIRTR equ 0x04D8012 ; GTE MVMVA Command: Vector 3 (IR) * Light Color Matrix (LCM) + Translation Vector (TR) - 8 Cycles
LCV0BK equ 0x04C2012 ; GTE MVMVA Command: Vector 0 (V0) * Light Color Matrix (LCM) + Background Color Vector (BK) - 8 Cycles
LCV1BK equ 0x04CA012 ; GTE MVMVA Command: Vector 1 (V1) * Light Color Matrix (LCM) + Background Color Vector (BK) - 8 Cycles
LCV2BK equ 0x04D2012 ; GTE MVMVA Command: Vector 2 (V2) * Light Color Matrix (LCM) + Background Color Vector (BK) - 8 Cycles
LCIRBK equ 0x04DA012 ; GTE MVMVA Command: Vector 3 (IR) * Light Color Matrix (LCM) + Background Color Vector (BK) - 8 Cycles
; GTE SQR (Calculate Square Of Vector) Command Instructions
SQR12 equ 0x0A80428 ; GTE SQR Command: Calculate Square Of Vector 3 (IR) (S.19.12) - 5 Cycles
SQR0 equ 0x0A00428 ; GTE SQR Command: Calculate Square Of Intermediate Value 0 (IR0) (S.31.0) - 5 Cycles
; GTE OP (Calculate Outer Product Of Two Signed 16-Bit Vectors) Command Instructions
OP12 equ 0x178000C ; GTE OP Command: Calculate Outer Product Of Vector 3 (IR) (S.19.12) - 6 Cycles
OP0 equ 0x170000C ; GTE OP Command: Calculate Outer Product Of Intermediate Value 0 (IR0) (S.31.0) - 6 Cycles
; GTE GPF (General Purpose Interpolation) Command Instructions
GPF12 equ 0x198003D ; GTE OP Command: General Purpose Interpolation Of Vector 3 (IR) (S.19.12) - 5 Cycles
GPF0 equ 0x190003D ; GTE OP Command: General Purpose Interpolation Of Intermediate Value 0 (IR0) (S.31.0) - 5 Cycles
; GTE GPL (General Purpose Interpolation With Base) Command Instructions
GPL12 equ 0x1A8003E ; GTE OP Command: General Purpose Interpolation With Base Of Vector 3 (IR) (S.19.12) - 6 Cycles
GPL0 equ 0x1A0003E ; GTE OP Command: General Purpose Interpolation With Base Of Intermediate Value 0 (IR0) (S.31.0) - 5 Cycles
\ No newline at end of file
;===========
; PSX INPUT
;===========
;=================
; Digital Buttons
;=================
JOY_L2 equ 0x0001 ; Joypad Input: L2 (Bit 0)
JOY_R2 equ 0x0002 ; Joypad Input: R2 (Bit 1)
JOY_L1 equ 0x0004 ; Joypad Input: L1 (Bit 2)
JOY_R1 equ 0x0008 ; Joypad Input: R1 (Bit 3)
JOY_T equ 0x0010 ; Joypad Input: Triangle (Bit 4)
JOY_C equ 0x0020 ; Joypad Input: Circle (Bit 5)
JOY_X equ 0x0040 ; Joypad Input: X (Bit 6)
JOY_S equ 0x0080 ; Joypad Input: Square (Bit 7)
JOY_SELECT equ 0x0100 ; Joypad Input: Select (Bit 8)
JOY_L3 equ 0x0200 ; Joypad Input: L3 (Bit 9) (Analog Mode Only)
JOY_R3 equ 0x0400 ; Joypad Input: R3 (Bit 10) (Analog Mode Only)
JOY_START equ 0x0800 ; Joypad Input: Start (Bit 11)
JOY_UP equ 0x1000 ; Joypad Input: Up (Bit 12)
JOY_RIGHT equ 0x2000 ; Joypad Input: Right (Bit 13)
JOY_DOWN equ 0x4000 ; Joypad Input: Down (Bit 14)
JOY_LEFT equ 0x8000 ; Joypad Input: Left (Bit 15)
;==============
; Input Macros
;==============
.macro InitJoy,BUFFER ; Initialise Joypads & Setup VSync Wait Routine Using BIOS: Buffer Address
li t1,0x15
li a0,0x20000001
li t2,0xB0
la a1,BUFFER ; Set Pad Buffer Address To Automatically Update Each Frame
jalr t2 ; Jump To BIOS Routine
nop ; Delay Slot
.endmacro
.macro WaitVSync,BUFFER,DATA ; Wait For Vertical Retrace Period & Store XOR Pad Data: Buffer Address, Data Address
la a1,BUFFER ; Load Pad Buffer Address
Wait: ; Wait For Vertical Retrace Period & Store XOR Pad Data
lw t0,0(a1) ; Load Pad Buffer
nop ; Delay Slot
beqz t0,Wait ; IF (Pad Buffer == 0) Wait
nor t0,r0 ; NOR Compliment Pad Data Bits (Delay Slot)
sw r0,0(a1) ; Store Zero To Pad Buffer
la a1,DATA ; Load Pad Data Address
sw t0,0(a1) ; Store Pad Data
.endmacro
.macro IsJoyDown,INPUT,DATA ; Is Joypad Digital Button Pressed Down: Input, Input Data Address
la a1,DATA ; Load Input Data Address
lw t0,0(a1) ; Load Input Data Word
nop ; Delay Slot
andi t0,INPUT ; T0 = Input Status
.endmacro
\ No newline at end of file
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import struct
import math
usage = '''
python bin2exe.py infile outfile
'''
def main(argv):
if len(argv) != 2:
print(usage, file=sys.stderr)
sys.exit(1)
max_size = 0x200000
infile_size = os.path.getsize(argv[0])
if infile_size > max_size:
print("Error: Input file %s longer than %d bytes" % (argv[0], max_size), file=sys.stderr)
sys.exit(1)
ofile = open(argv[1], 'wb')
with open(argv[0], 'rb') as ifile:
# Write header
if sys.version_info >= (3, 0):
ofile.write(bytes('PS-X EXE', 'ascii'))
else:
ofile.write('PS-X EXE')
# Entry point
ofile.seek(0x10)
ofile.write(struct.pack('<I',0x80010000))
# Initial GP/R28 (crt0.S currently sets this)
ofile.write(struct.pack('<I',0xFFFFFFFF))
# Destination address in RAM
ofile.write(struct.pack('<I',0x80010000))
# Initial SP/R29 & FP/R30
ofile.seek(0x30)
ofile.write(struct.pack('<I',0x801FFF00))
# SP & FP offset added to ^^^^^^^^^^ just use 0
#ofile.write(struct.pack('<I',0x00000000))
# Zero fill rest of the header
ofile.seek(0x800)
# Copy input to output
buffer_size = 0x2000
for i in range(0,int(math.ceil(float(infile_size)/buffer_size))):
buffer = ifile.read(buffer_size)
ofile.write(buffer)
# ofile.write(ifile.read())
# Pad binary to 0x800 boundary
exe_size = ofile.tell()
if exe_size % 0x800 != 0:
exe_size += (0x800 - (exe_size % 0x800))
ofile.seek(exe_size-1)
ofile.write(struct.pack('B',0))
# Filesize excluding 0x800 byte header
ofile.seek(0x1C)
ofile.write(struct.pack('<I', exe_size - 0x800))
ofile.close()
if __name__ == '__main__':
main(sys.argv[1:])
sys.exit(0)
armips Cube.asm
python3 bin2exe.py Cube.bin Cube.exe
ShadeTexCubeQuad: ; X1,Y1,Z1,X2,Y2,Z2,X3,Y3,Z3,X4,Y4,Z4,COMMAND+COLOR1,COLOR2,COLOR3,COLOR4,U1,V1,PAL,U2,V2,TEX,U3,V3,U4,V4
dw -2560, -2560, -2560 ; X1,Y1,Z1: Quad 1 Front Top Left
dw 2560, -2560, -2560 ; X2,Y2,Z2: Quad 1 Front Top Right
dw -2560, 2560, -2560 ; X3,Y3,Z3: Quad 1 Front Bottom Left
dw 2560, 2560, -2560 ; X4,Y4,Z4: Quad 1 Front Bottom Right
dw 0x3C808080 ; Quad 1 Command+Color1: ShadeTexQuad+B,G,R
dw 0x808080 ; Quad 1 Color2: B,G,R
dw 0x808080 ; Quad 1 Color3: B,G,R
dw 0x808080 ; Quad 1 Color4: B,G,R
db 0,0 ; U1,V1: Quad 1 Front Top Left
dh 0x000 ; PAL: Quad 1 Front
db 255,0 ; U2,V2: Quad 1 Front Top Right
dh 0x108 ; TEX: Quad 1 Front
db 0,255 ; U3,V3: Quad 1 Front Bottom Left
dh 0 ; Padding
db 255,255 ; U4,V4: Quad 1 Front Bottom Right
dh 0 ; Padding
dw 2560, -2560, -2560 ; X1,Y1,Z1: Quad 2 Right Top Left
dw 2560, -2560, 2560 ; X2,Y2,Z2: Quad 2 Right Top Right
dw 2560, 2560, -2560 ; X3,Y3,Z3: Quad 2 Right Bottom Left
dw 2560, 2560, 2560 ; X4,Y4,Z4: Quad 2 Right Bottom Right
dw 0x3C808080 ; Quad 2 Command+Color1: ShadeTexQuad+B,G,R
dw 0x202020 ; Quad 2 Color2: B,G,R
dw 0x808080 ; Quad 2 Color3: B,G,R
dw 0x202020 ; Quad 2 Color4: B,G,R
db 0,0 ; U1,V1: Quad 2 Right Top Left
dh 0x000 ; PAL: Quad 2 Right
db 255,0 ; U2,V2: Quad 2 Right Top Right
dh 0x10C ; TEX: Quad 2 Right
db 0,255 ; U3,V3: Quad 2 Right Bottom Left
dh 0 ; Padding
db 255,255 ; U4,V4: Quad 2 Right Bottom Right
dh 0 ; Padding
dw 2560, -2560, 2560 ; X1,Y1,Z1: Quad 3 Back Top Left
dw -2560, -2560, 2560 ; X2,Y2,Z2: Quad 3 Back Top Right
dw 2560, 2560, 2560 ; X3,Y3,Z3: Quad 3 Back Bottom Left
dw -2560, 2560, 2560 ; X4,Y4,Z4: Quad 3 Back Bottom Right
dw 0x3C202020 ; Quad 3 Command+Color1: ShadeTexQuad+B,G,R
dw 0x202020 ; Quad 3 Color2: B,G,R
dw 0x202020 ; Quad 3 Color3: B,G,R
dw 0x202020 ; Quad 3 Color4: B,G,R
db 0,0 ; U1,V1: Quad 3 Back Top Left
dh 0x000 ; PAL: Quad 3 Back
db 255,0 ; U2,V2: Quad 3 Back Top Right
dh 0x110 ; TEX: Quad 3 Back
db 0,255 ; U3,V3: Quad 3 Back Bottom Left
dh 0 ; Padding
db 255,255 ; U4,V4: Quad 3 Back Bottom Right
dh 0 ; Padding
dw -2560, -2560, 2560 ; X1,Y1,Z1: Quad 4 Left Top Left
dw -2560, -2560, -2560 ; X2,Y2,Z2: Quad 4 Left Top Right
dw -2560, 2560, 2560 ; X3,Y3,Z3: Quad 4 Left Bottom Left
dw -2560, 2560, -2560 ; X4,Y4,Z4: Quad 4 Left Bottom Right
dw 0x3C202020 ; Quad 4 Command+Color1: ShadeTexQuad+B,G,R
dw 0x808080 ; Quad 4 Color2: B,G,R
dw 0x202020 ; Quad 4 Color3: B,G,R
dw 0x808080 ; Quad 4 Color4: B,G,R
db 0,0 ; U1,V1: Quad 4 Left Top Left
dh 0x000 ; PAL: Quad 4 Left
db 255,0 ; U2,V2: Quad 4 Left Top Right
dh 0x114 ; TEX: Quad 4 Left
db 0,255 ; U3,V3: Quad 4 Left Bottom Left
dh 0 ; Padding
db 255,255 ; U4,V4: Quad 4 Left Bottom Right
dh 0 ; Padding
dw -2560, -2560, 2560 ; X1,Y1,Z1: Quad 5 Top Top Left
dw 2560, -2560, 2560 ; X2,Y2,Z2: Quad 5 Top Top Right
dw -2560, -2560, -2560 ; X3,Y3,Z3: Quad 5 Top Bottom Left
dw 2560, -2560, -2560 ; X4,Y4,Z4: Quad 5 Top Bottom Right
dw 0x3C202020 ; Quad 5 Command+Color1: ShadeTexQuad+B,G,R
dw 0x202020 ; Quad 5 Color2: B,G,R
dw 0x808080 ; Quad 5 Color3: B,G,R
dw 0x808080 ; Quad 5 Color4: B,G,R
db 0,0 ; U1,V1: Quad 5 Top Top Left
dh 0x000 ; PAL: Quad 5 Top
db 255,0 ; U2,V2: Quad 5 Top Top Right
dh 0x118 ; TEX: Quad 5 Top
db 0,255 ; U3,V3: Quad 5 Top Bottom Left
dh 0 ; Padding
db 255,255 ; U4,V4: Quad 5 Top Bottom Right
dh 0 ; Padding
dw -2560, 2560, -2560 ; X1,Y1,Z1: Quad 6 Bottom Top Left
dw 2560, 2560, -2560 ; X2,Y2,Z2: Quad 6 Bottom Top Right
dw -2560, 2560, 2560 ; X3,Y3,Z3: Quad 6 Bottom Bottom Left
dw 2560, 2560, 2560 ; X4,Y4,Z4: Quad 6 Bottom Bottom Right
dw 0x3C808080 ; Quad 6 Command+Color1: ShadeTexQuad+B,G,R
dw 0x808080 ; Quad 6 Color2: B,G,R
dw 0x202020 ; Quad 6 Color3: B,G,R
dw 0x202020 ; Quad 6 Color4: B,G,R
db 0,0 ; U1,V1: Quad 6 Bottom Top Left
dh 0x000 ; PAL: Quad 6 Bottom
db 255,0 ; U2,V2: Quad 6 Bottom Top Right
dh 0x11C ; TEX: Quad 6 Bottom
db 0,255 ; U3,V3: Quad 6 Bottom Bottom Left
dh 0 ; Padding
db 255,255 ; U4,V4: Quad 6 Bottom Bottom Right
dh 0 ; Padding
ShadeTexCubeQuadEnd:
\ No newline at end of file
SinCos256: ; 256 Rotations (Cos, -Sin, Sin, -Cos)
dw 256, -0, 0, -256
dw 256, -6, 6, -256
dw 256, -13, 13, -256
dw 255, -19, 19, -255
dw 255, -25, 25, -255
dw 254, -31, 31, -254
dw 253, -38, 38, -253
dw 252, -44, 44, -252
dw 251, -50, 50, -251
dw 250, -56, 56, -250
dw 248, -62, 62, -248
dw 247, -68, 68, -247
dw 245, -74, 74, -245
dw 243, -80, 80, -243
dw 241, -86, 86, -241
dw 239, -92, 92, -239
dw 237, -98, 98, -237
dw 234, -104, 104, -234
dw 231, -109, 109, -231
dw 229, -115, 115, -229
dw 226, -121, 121, -226
dw 223, -126, 126, -223
dw 220, -132, 132, -220
dw 216, -137, 137, -216
dw 213, -142, 142, -213
dw 209, -147, 147, -209
dw 206, -152, 152, -206
dw 202, -157, 157, -202
dw 198, -162, 162, -198
dw 194, -167, 167, -194
dw 190, -172, 172, -190
dw 185, -177, 177, -185
dw 181, -181, 181, -181
dw 177, -185, 185, -177
dw 172, -190, 190, -172
dw 167, -194, 194, -167
dw 162, -198, 198, -162
dw 157, -202, 202, -157
dw 152, -206, 206, -152
dw 147, -209, 209, -147
dw 142, -213, 213, -142
dw 137, -216, 216, -137
dw 132, -220, 220, -132
dw 126, -223, 223, -126
dw 121, -226, 226, -121
dw 115, -229, 229, -115
dw 109, -231, 231, -109
dw 104, -234, 234, -104
dw 98, -237, 237, -98
dw 92, -239, 239, -92
dw 86, -241, 241, -86
dw 80, -243, 243, -80
dw 74, -245, 245, -74
dw 68, -247, 247, -68
dw 62, -248, 248, -62
dw 56, -250, 250, -56
dw 50, -251, 251, -50
dw 44, -252, 252, -44
dw 38, -253, 253, -38
dw 31, -254, 254, -31
dw 25, -255, 255, -25
dw 19, -255, 255, -19
dw 13, -256, 256, -13
dw 6, -256, 256, -6
dw 0, -256, 256, -0
dw -6, -256, 256, 6
dw -13, -256, 256, 13
dw -19, -255, 255, 19
dw -25, -255, 255, 25
dw -31, -254, 254, 31
dw -38, -253, 253, 38
dw -44, -252, 252, 44
dw -50, -251, 251, 50
dw -56, -250, 250, 56
dw -62, -248, 248, 62
dw -68, -247, 247, 68
dw -74, -245, 245, 74
dw -80, -243, 243, 80
dw -86, -241, 241, 86
dw -92, -239, 239, 92
dw -98, -237, 237, 98
dw -104, -234, 234, 104
dw -109, -231, 231, 109
dw -115, -229, 229, 115
dw -121, -226, 226, 121
dw -126, -223, 223, 126
dw -132, -220, 220, 132
dw -137, -216, 216, 137
dw -142, -213, 213, 142
dw -147, -209, 209, 147
dw -152, -206, 206, 152
dw -157, -202, 202, 157
dw -162, -198, 198, 162
dw -167, -194, 194, 167
dw -172, -190, 190, 172
dw -177, -185, 185, 177
dw -181, -181, 181, 181
dw -185, -177, 177, 185
dw -190, -172, 172, 190
dw -194, -167, 167, 194
dw -198, -162, 162, 198
dw -202, -157, 157, 202
dw -206, -152, 152, 206
dw -209, -147, 147, 209
dw -213, -142, 142, 213
dw -216, -137, 137, 216
dw -220, -132, 132, 220
dw -223, -126, 126, 223
dw -226, -121, 121, 226
dw -229, -115, 115, 229
dw -231, -109, 109, 231
dw -234, -104, 104, 234
dw -237, -98, 98, 237
dw -239, -92, 92, 239
dw -241, -86, 86, 241
dw -243, -80, 80, 243
dw -245, -74, 74, 245
dw -247, -68, 68, 247
dw -248, -62, 62, 248
dw -250, -56, 56, 250
dw -251, -50, 50, 251
dw -252, -44, 44, 252
dw -253, -38, 38, 253
dw -254, -31, 31, 254
dw -255, -25, 25, 255
dw -255, -19, 19, 255
dw -256, -13, 13, 256
dw -256, -6, 6, 256
dw -256, -0, 0, 256
dw -256, 6, -6, 256
dw -256, 13, -13, 256
dw -255, 19, -19, 255
dw -255, 25, -25, 255
dw -254, 31, -31, 254
dw -253, 38, -38, 253
dw -252, 44, -44, 252
dw -251, 50, -50, 251
dw -250, 56, -56, 250
dw -248, 62, -62, 248
dw -247, 68, -68, 247
dw -245, 74, -74, 245
dw -243, 80, -80, 243
dw -241, 86, -86, 241
dw -239, 92, -92, 239
dw -237, 98, -98, 237
dw -234, 104, -104, 234
dw -231, 109, -109, 231
dw -229, 115, -115, 229
dw -226, 121, -121, 226
dw -223, 126, -126, 223
dw -220, 132, -132, 220
dw -216, 137, -137, 216
dw -213, 142, -142, 213
dw -209, 147, -147, 209
dw -206, 152, -152, 206
dw -202, 157, -157, 202
dw -198, 162, -162, 198
dw -194, 167, -167, 194
dw -190, 172, -172, 190
dw -185, 177, -177, 185
dw -181, 181, -181, 181
dw -177, 185, -185, 177
dw -172, 190, -190, 172
dw -167, 194, -194, 167
dw -162, 198, -198, 162
dw -157, 202, -202, 157
dw -152, 206, -206, 152
dw -147, 209, -209, 147
dw -142, 213, -213, 142
dw -137, 216, -216, 137
dw -132, 220, -220, 132
dw -126, 223, -223, 126
dw -121, 226, -226, 121
dw -115, 229, -229, 115
dw -109, 231, -231, 109
dw -104, 234, -234, 104
dw -98, 237, -237, 98
dw -92, 239, -239, 92
dw -86, 241, -241, 86
dw -80, 243, -243, 80
dw -74, 245, -245, 74
dw -68, 247, -247, 68
dw -62, 248, -248, 62
dw -56, 250, -250, 56
dw -50, 251, -251, 50
dw -44, 252, -252, 44
dw -38, 253, -253, 38
dw -31, 254, -254, 31
dw -25, 255, -255, 25
dw -19, 255, -255, 19
dw -13, 256, -256, 13
dw -6, 256, -256, 6
dw -0, 256, -256, 0
dw 6, 256, -256, -6
dw 13, 256, -256, -13
dw 19, 255, -255, -19
dw 25, 255, -255, -25
dw 31, 254, -254, -31
dw 38, 253, -253, -38
dw 44, 252, -252, -44
dw 50, 251, -251, -50
dw 56, 250, -250, -56
dw 62, 248, -248, -62
dw 68, 247, -247, -68
dw 74, 245, -245, -74
dw 80, 243, -243, -80
dw 86, 241, -241, -86
dw 92, 239, -239, -92
dw 98, 237, -237, -98
dw 104, 234, -234, -104
dw 109, 231, -231, -109
dw 115, 229, -229, -115
dw 121, 226, -226, -121
dw 126, 223, -223, -126
dw 132, 220, -220, -132
dw 137, 216, -216, -137
dw 142, 213, -213, -142
dw 147, 209, -209, -147
dw 152, 206, -206, -152
dw 157, 202, -202, -157
dw 162, 198, -198, -162
dw 167, 194, -194, -167
dw 172, 190, -190, -172
dw 177, 185, -185, -177
dw 181, 181, -181, -181
dw 185, 177, -177, -185
dw 190, 172, -172, -190
dw 194, 167, -167, -194
dw 198, 162, -162, -198
dw 202, 157, -157, -202
dw 206, 152, -152, -206
dw 209, 147, -147, -209
dw 213, 142, -142, -213
dw 216, 137, -137, -216
dw 220, 132, -132, -220
dw 223, 126, -126, -223
dw 226, 121, -121, -226
dw 229, 115, -115, -229
dw 231, 109, -109, -231
dw 234, 104, -104, -234
dw 237, 98, -98, -237
dw 239, 92, -92, -239
dw 241, 86, -86, -241
dw 243, 80, -80, -243
dw 245, 74, -74, -245
dw 247, 68, -68, -247
dw 248, 62, -62, -248
dw 250, 56, -56, -250
dw 251, 50, -50, -251
dw 252, 44, -44, -252
dw 253, 38, -38, -253
dw 254, 31, -31, -254
dw 255, 25, -25, -255
dw 255, 19, -19, -255
dw 256, 13, -13, -256
dw 256, 6, -6, -256
\ No newline at end of file
// Demonstrate DISP/DRAW env, font setup, and display a text.
// Schnappy 2020
// Based on Lameguy64 tutorial : http://lameguy64.net/svn/pstutorials/chapter1/1-display.html
#include <sys/types.h>
#include <stdio.h>
#include <libgte.h>
#include <libetc.h>
#include <libgpu.h>
#define VMODE 1 // Video Mode : 0 : NTSC, 1: PAL
#define SCREENXRES 320 // Screen width
#define SCREENYRES 240 // Screen height
#define CENTERX SCREENXRES/2 // Center of screen on x
#define CENTERY SCREENYRES/2 // Center of screen on y
#define FONTSIZE 8 * 7 // Text Field Height
//DISPENV disp[2]; // Double buffered DISPENV and DRAWENV
//DRAWENV draw[2];
extern DISPENV disp[2];
extern DRAWENV draw[2];
short db = 0; // index of which buffer is used, values 0, 1
//extern void HelloMain();
// void SetDefDispEnv1(DISPENV *disp_, int x,int y,int yy)
// {
// SetDefDispEnv(disp_, x,y, SCREENXRES,yy);
// }
// void Print12345(char c1,char c2,char c3,char c4,char c5)
// {
// char str[6];
// str[0] = c1;
// str[1] = c2;
// str[2] = c3;
// str[3] = c4;
// str[4] = c5;
// str[5] = 0;
// FntPrint(str);
// }
void c_init(void)
{
//ResetGraph(0); // Initialize drawing engine with a complete reset (0)
//SetDefDispEnv1(&disp[0]);
//SetDefDispEnv(&disp[0], 0, 0 , SCREENXRES, SCREENYRES); // Set display area for both &disp[0] and &disp[1]
//SetDefDispEnv(&disp[1], 0, SCREENYRES, SCREENXRES, SCREENYRES); // &disp[0] is on top of &disp[1]
//SetDefDrawEnv(&draw[0], 0, SCREENYRES, SCREENXRES, SCREENYRES); // Set draw for both &draw[0] and &draw[1]
//SetDefDrawEnv(&draw[1], 0, 0 , SCREENXRES, SCREENYRES); // &draw[0] is below &draw[1]
//if (VMODE) // PAL
//{
// SetVideoMode(MODE_PAL);
// disp[0].screen.y += 8; // add offset : 240 + 8 + 8 = 256
// disp[1].screen.y += 8;
//}
//SetDispMask(1); // Display on screen
setRGB0(&draw[0], 32, 32, 32); // set color for first draw area
setRGB0(&draw[1], 32, 32, 32); // set color for second draw area
draw[0].isbg = 1; // set mask for draw areas. 1 means repainting the area with the RGB color each frame
draw[1].isbg = 1;
PutDispEnv(&disp[db]); // set the disp and draw environnments
PutDrawEnv(&draw[db]);
FntLoad(960, 0); // Load font to vram at 960,0(+128)
FntOpen(32, 32, 320-32, FONTSIZE, 0, 280 ); // FntOpen(x, y, width, height, black_bg, max. nbr. chars
}
void c_display(void)
{
//DrawSync(0); // Wait for all drawing to terminate
//VSync(0); // Wait for the next vertical blank
PutDispEnv(&disp[db]); // set alternate disp and draw environnments
PutDrawEnv(&draw[db]);
db = !db; // flip db value (0 or 1)
}
//void c_print(void)
//{
//FntPrint("Testin'"); // Send string to print stream
//FntFlush(-1); // Draw printe stream
//}
//int c_main(void)
//{
// c_init(); // execute init()
// while (1) // infinite loop
// {
//c_print();
//c_display();
//HelloMain();
// }
// return 0;
//}
.extern c_init
.extern c_display
.extern DrawSync
.extern FntFlush
.extern FntPrint
.extern PutDispEnv
.extern PutDrawEnv
.extern ResetGraph
.extern SetDefDispEnv
.extern SetDefDrawEnv
.extern SetDispMask
.extern SetVideoMode
.extern VSync
.macro CallSetDefDispDrawEnv function,address,y
la $a0,\address
li $a1,0
li $a2,\y
li $a3,320
li $t0,240
sw $t0,16($sp)
jal \function
.endm
.macro SetBackgroundRgb address,r,g,b
# set params to items 26 27 28 of \address
.endm
.global main
main:
addi $sp,$sp,-4*6
lw $a0,0($0)
jal ResetGraph
CallSetDefDispDrawEnv SetDefDispEnv,dispEnvs+0, 0
CallSetDefDispDrawEnv SetDefDispEnv,dispEnvs+20,240
CallSetDefDispDrawEnv SetDefDrawEnv,drawEnvs+0, 240
CallSetDefDispDrawEnv SetDefDrawEnv,drawEnvs+92,0
SetBackgroundRgb drawEnvs+0, 32,32,32
SetBackgroundRgb drawEnvs+92,32,32,32
jal c_init
addi $sp,$sp,4*6
MainLoop:
#addi $sp,$sp,-4*5
jal DrawSync
jal VSync
jal c_display
la $a0,helloStr
jal FntPrint
# li $a0,70
# li $a1,71
# li $a2,72
# li $a3,73
# li $t0,120
# sw $t0,16($sp)
# jal Print12345
jal FntFlush
j MainLoop
#addi $sp,$sp,4*5
.data
helloStr:
.asciiz "Hello testin'!"
.global displayIndex
displayIndex:
.byte 0
# libgpu.h > DISPENV
.global disp
disp:
dispEnvs:
.align 2
.space 40
# libgpu.h > DRAWENV
.global draw
draw:
drawEnvs:
.align 2
.space 184
TARGET = HelloWorld
SRCS = HelloWorld2.s HelloWorld.c
include ../common.mk
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment