gitextract_v4hb7egi/ ├── .github/ │ └── workflows/ │ ├── Linux-build-archive.yml │ ├── linux-build.yml │ ├── macos-build.yml │ └── windows-build.yml ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── TIM/ │ ├── README.md │ ├── TIM16.tim │ ├── TIM4.tim │ ├── TIM8.tim │ ├── bousai.tim │ └── cubetex.tim ├── VAG/ │ ├── 0_come.vag │ ├── 1_cuek.vag │ ├── 2_erro.vag │ ├── 3_hehe.vag │ ├── 4_m4a1.vag │ ├── 5_punc.vag │ ├── 7_wron.vag │ ├── 8_yooo.vag │ ├── README.md │ ├── hello.vag │ ├── hello_poly.vag │ └── poly.vag ├── common.mk ├── hello_2pads/ │ ├── Makefile │ └── hello_2pads.c ├── hello_bs/ │ ├── Makefile │ ├── README.md │ ├── bs/ │ │ ├── bace.bs │ │ ├── bace.rgb │ │ ├── bace.tim │ │ └── bace.yuv │ ├── hello_bs.c │ ├── isoconfig.xml │ └── system.cnf ├── hello_cd/ │ ├── Makefile │ ├── README.md │ ├── hello_cd.c │ ├── isoconfig.xml │ └── system.cnf ├── hello_cdda/ │ ├── Makefile │ ├── README.md │ ├── hello_cdda.c │ ├── isoconfig.xml │ └── system.cnf ├── hello_cube/ │ ├── Makefile │ ├── cube.c │ └── hello_cube.c ├── hello_cubetex/ │ ├── Makefile │ ├── cubetex.c │ └── hello_cubetex.c ├── hello_cubetex_stp/ │ ├── Makefile │ ├── README.md │ ├── TIM/ │ │ ├── stpOn8bpp.tim │ │ ├── stpOnBlack.tim │ │ └── stpOnNonBlack.tim │ ├── cubetex.c │ └── hello_cubetex_stp.c ├── hello_font/ │ ├── Makefile │ ├── README.md │ ├── fnt.tim │ └── hello_font.c ├── hello_fx/ │ ├── Makefile │ ├── TIM/ │ │ ├── bg.tim │ │ ├── cube.tim │ │ └── sky.tim │ ├── cubetex.c │ └── hello_fx.c ├── hello_gte_opti/ │ ├── Makefile │ └── hello_gte_opti.c ├── hello_light/ │ ├── Makefile │ ├── cube.c │ └── hello_light.c ├── hello_mod/ │ ├── HIT/ │ │ ├── STAR.HIT │ │ └── STAR.mod │ ├── Makefile │ ├── README.md │ ├── hello_mod.c │ └── src/ │ ├── mod.c │ └── mod.h ├── hello_multi_vag/ │ ├── Makefile │ ├── README.md │ └── hello_multi_vag.c ├── hello_multi_xa/ │ ├── Makefile │ ├── README.md │ ├── hello_multi_xa.c │ ├── isoconfig.xml │ ├── system.cnf │ └── xa/ │ ├── 5_come.xa │ ├── 5_erro.xa │ ├── 5_sile_h.xa │ ├── 6_cuek.xa │ ├── 6_hehe.xa │ ├── 6_sile_h.xa │ ├── 6_wron.xa │ ├── 7_m4a1.xa │ ├── 7_punch.xa │ ├── 7_sile_h.xa │ ├── 8_yooo.xa │ ├── channel5.xa │ ├── channel6.xa │ ├── channel7.xa │ ├── channel8.xa │ ├── interleave8.txt │ └── vert8.xa ├── hello_ovl_exec/ │ ├── Makefile │ ├── README.md │ ├── common.h │ ├── hello_ovl_exec.c │ ├── hello_ovl_world/ │ │ ├── Makefile │ │ ├── hello_ovl_world.c │ │ └── hello_world.c │ ├── hello_poly/ │ │ ├── Makefile │ │ ├── hello_ovl_poly.c │ │ └── hello_poly.c │ ├── hello_tile/ │ │ ├── Makefile │ │ ├── hello_ovl_tile.c │ │ └── hello_tile.c │ ├── isoconfig.xml │ ├── overlay.ld │ └── system.cnf ├── hello_pad/ │ ├── Makefile │ └── hello_pad.c ├── hello_poly/ │ ├── Makefile │ └── hello_poly.c ├── hello_poly_ft/ │ ├── Makefile │ └── hello_poly_ft.c ├── hello_poly_fun/ │ ├── Makefile │ └── hello_poly_fun.c ├── hello_poly_gt/ │ ├── Makefile │ └── hello_poly_gt.c ├── hello_poly_gt_tw/ │ ├── Makefile │ └── hello_poly_gt_tw.c ├── hello_poly_inline/ │ ├── Makefile │ └── hello_poly_inline.c ├── hello_poly_stp/ │ ├── Makefile │ ├── README.md │ ├── TIM/ │ │ ├── stpOnAlpha.tim │ │ ├── stpOnAlphaI.tim │ │ ├── stpOnBlack.tim │ │ ├── stpOnCol.tim │ │ ├── stpOnColIndex.tim │ │ └── stpOnNonBlack.tim │ └── hello_poly_stp.c ├── hello_sio/ │ ├── Makefile │ └── hello_sio.c ├── hello_sprt/ │ ├── Makefile │ └── hello_sprt.c ├── hello_spu_readback/ │ ├── Makefile │ ├── README.md │ ├── hello_spu_readback.c │ ├── isoconfig.xml │ └── system.cnf ├── hello_str/ │ ├── Makefile │ ├── README.md │ ├── hello_str.c │ ├── isoconfig.xml │ ├── str/ │ │ └── copyings.str │ └── system.cnf ├── hello_strplay/ │ ├── Makefile │ ├── README.md │ ├── hello_strplay.c │ ├── isoconfig.xml │ ├── str/ │ │ └── copyings.str │ ├── strplay.c │ └── system.cnf ├── hello_tile/ │ ├── Makefile │ └── hello_tile.c ├── hello_vag/ │ ├── Makefile │ ├── README.md │ └── hello_vag.c ├── hello_world/ │ ├── Makefile │ └── hello_world.c ├── hello_xa/ │ ├── Makefile │ ├── README.md │ ├── hello_xa.c │ ├── isoconfig.xml │ ├── system.cnf │ └── xa/ │ ├── inter4.xa │ ├── inter8.xa │ ├── interleave4.txt │ └── interleave8.txt └── includes/ └── CPUMAC.H