├── .gitignore ├── Graphics ├── 3D │ ├── 3D_Both_Screens │ │ ├── Makefile │ │ └── source │ │ │ └── template.c │ ├── BoxTest │ │ ├── Makefile │ │ └── source │ │ │ └── main.cpp │ ├── Display_List │ │ ├── Makefile │ │ └── source │ │ │ └── main.cpp │ ├── Display_List_2 │ │ ├── Makefile │ │ ├── data │ │ │ └── teapot.bin │ │ └── source │ │ │ └── main.cpp │ ├── Env_Mapping │ │ ├── Makefile │ │ ├── data │ │ │ ├── cafe.bin │ │ │ └── teapot.bin │ │ └── source │ │ │ └── main.cpp │ ├── Makefile │ ├── Mixed_Text_3D │ │ ├── Makefile │ │ └── source │ │ │ └── main.cpp │ ├── Ortho │ │ ├── Makefile │ │ ├── data │ │ │ └── drunkenlogo.pcx │ │ └── source │ │ │ └── main.cpp │ ├── Paletted_Cube │ │ ├── Makefile │ │ ├── data │ │ │ ├── texture10_COMP_pal.bin │ │ │ ├── texture10_COMP_tex.bin │ │ │ └── texture10_COMP_texExt.bin │ │ ├── graphics │ │ │ ├── 16bpp.grit │ │ │ ├── 16bpp.tga │ │ │ ├── a3i5.grit │ │ │ ├── a3i5.tga │ │ │ ├── a5i3.grit │ │ │ ├── a5i3.tga │ │ │ ├── i2.grit │ │ │ ├── i2.tga │ │ │ ├── i4.grit │ │ │ ├── i4.tga │ │ │ ├── i8.grit │ │ │ └── i8.tga │ │ └── source │ │ │ └── main.cpp │ ├── Picking │ │ ├── Makefile │ │ ├── data │ │ │ ├── cone.bin │ │ │ ├── cylinder.bin │ │ │ └── sphere.bin │ │ └── source │ │ │ └── main.cpp │ ├── Simple_Quad │ │ ├── Makefile │ │ └── source │ │ │ └── main.cpp │ ├── Simple_Tri │ │ ├── Makefile │ │ └── source │ │ │ └── main.cpp │ ├── Textured_Cube │ │ ├── Makefile │ │ ├── data │ │ │ └── texture.bin │ │ └── source │ │ │ └── main.cpp │ ├── Textured_Quad │ │ ├── Makefile │ │ ├── data │ │ │ └── texture.bin │ │ └── source │ │ │ └── main.cpp │ ├── Toon_Shading │ │ ├── Makefile │ │ ├── data │ │ │ └── statue.bin │ │ └── source │ │ │ └── main.cpp │ └── nehe │ │ ├── Makefile │ │ ├── lesson01 │ │ ├── Makefile │ │ └── source │ │ │ └── nehe1.cpp │ │ ├── lesson02 │ │ ├── Makefile │ │ └── source │ │ │ └── nehe2.cpp │ │ ├── lesson03 │ │ ├── Makefile │ │ └── source │ │ │ └── nehe3.cpp │ │ ├── lesson04 │ │ ├── Makefile │ │ └── source │ │ │ └── nehe4.cpp │ │ ├── lesson05 │ │ ├── Makefile │ │ └── source │ │ │ └── nehe5.cpp │ │ ├── lesson06 │ │ ├── Makefile │ │ ├── data │ │ │ └── drunkenlogo.pcx │ │ └── source │ │ │ └── nehe6.cpp │ │ ├── lesson07 │ │ ├── Makefile │ │ ├── data │ │ │ └── drunkenlogo.pcx │ │ └── source │ │ │ └── nehe7.cpp │ │ ├── lesson08 │ │ ├── Makefile │ │ ├── data │ │ │ └── drunkenlogo.pcx │ │ └── source │ │ │ └── nehe8.cpp │ │ ├── lesson09 │ │ ├── Makefile │ │ ├── data │ │ │ └── Star.pcx │ │ └── source │ │ │ └── nehe9.cpp │ │ ├── lesson10 │ │ ├── Makefile │ │ ├── data │ │ │ ├── Mud.pcx │ │ │ ├── World.txt │ │ │ └── drunkenlogo.pcx │ │ └── source │ │ │ └── nehe10.cpp │ │ ├── lesson10b │ │ ├── Makefile │ │ ├── data │ │ │ ├── Mud.pcx │ │ │ └── World.txt │ │ └── source │ │ │ └── nehe10b.cpp │ │ └── lesson11 │ │ ├── Makefile │ │ ├── data │ │ └── drunkenlogo.pcx │ │ └── source │ │ └── nehe11.cpp ├── Backgrounds │ ├── 16bit_color_bmp │ │ ├── Makefile │ │ ├── data │ │ │ ├── drunkenlogo.grit │ │ │ └── drunkenlogo.png │ │ └── source │ │ │ └── template.cpp │ ├── 256_color_bmp │ │ ├── Makefile │ │ ├── data │ │ │ ├── drunkenlogo.grit │ │ │ └── drunkenlogo.png │ │ └── source │ │ │ └── main.cpp │ ├── Double_Buffer │ │ ├── Makefile │ │ └── source │ │ │ └── main.cpp │ ├── Makefile │ ├── all_in_one │ │ ├── Makefile │ │ ├── gfx │ │ │ ├── layers.pew │ │ │ ├── readme.txt │ │ │ └── tiles.png │ │ ├── include │ │ │ ├── Multilayer.h │ │ │ ├── RotBackgrounds.h │ │ │ └── TextBackgrounds.h │ │ └── source │ │ │ ├── Multilayer.s │ │ │ ├── RotBackgrounds.s │ │ │ ├── TextBackgrounds.s │ │ │ ├── advanced.cpp │ │ │ ├── basic.cpp │ │ │ ├── handmade.cpp │ │ │ ├── main.cpp │ │ │ └── scrolling.cpp │ └── rotation │ │ ├── Makefile │ │ ├── data │ │ ├── drunkenlogo.bin │ │ └── palette.bin │ │ └── source │ │ └── main.cpp ├── Effects │ └── windows │ │ ├── Makefile │ │ ├── gfx │ │ ├── drunkenlogo.grit │ │ └── drunkenlogo.png │ │ └── source │ │ └── template.c ├── Ext_Palettes │ └── backgrounds │ │ ├── Makefile │ │ ├── gfx │ │ ├── devkitlogo.grit │ │ ├── devkitlogo.png │ │ ├── drunkenlogo.grit │ │ └── drunkenlogo.png │ │ └── source │ │ └── main.c ├── Makefile ├── Printing │ ├── Makefile │ ├── ansi_console │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── console_windows │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── custom_font │ │ ├── Makefile │ │ ├── gfx │ │ │ ├── font.bmp │ │ │ └── font.grit │ │ └── source │ │ │ └── main.c │ ├── print_both_screens │ │ ├── Makefile │ │ └── source │ │ │ └── template.c │ └── rotscale_text │ │ ├── Makefile │ │ ├── gfx │ │ ├── font.bmp │ │ └── font.grit │ │ └── source │ │ └── main.c ├── Sprites │ ├── Makefile │ ├── allocation_test │ │ ├── Makefile │ │ └── source │ │ │ └── main.c │ ├── animate_simple │ │ ├── Makefile │ │ ├── source │ │ │ └── template.c │ │ └── sprites │ │ │ ├── man.png │ │ │ ├── sprite.grit │ │ │ └── woman.png │ ├── bitmap_sprites │ │ ├── Makefile │ │ └── source │ │ │ └── main.cpp │ ├── fire_and_sprites │ │ ├── Makefile │ │ ├── data │ │ │ └── ball.pcx │ │ └── source │ │ │ └── main.cpp │ ├── simple │ │ ├── Makefile │ │ └── source │ │ │ └── template.c │ ├── sprite_extended_palettes │ │ ├── Makefile │ │ └── source │ │ │ └── template.c │ └── sprite_rotate │ │ ├── Makefile │ │ └── source │ │ └── template.c ├── capture │ ├── Makefile │ └── ScreenShot │ │ ├── Makefile │ │ ├── include │ │ ├── bmp.h │ │ └── screenshot.h │ │ └── source │ │ ├── main.cpp │ │ └── screenshot.cpp ├── gl2d │ ├── 2Dplus3D │ │ ├── 2Dplus3D.pnps │ │ ├── Makefile │ │ ├── gfx │ │ │ ├── Thumbs.db │ │ │ ├── enemies.bmp │ │ │ ├── enemies.grit │ │ │ ├── flyer.grit │ │ │ ├── flyer.png │ │ │ ├── organ16.bmp │ │ │ ├── organ16.grit │ │ │ ├── shuttle.grit │ │ │ └── shuttle.png │ │ ├── readme_2Dplus2D.txt │ │ └── source │ │ │ ├── Cvertexbuffer.cpp │ │ │ ├── Cvertexbuffer.h │ │ │ ├── cearn_atan.cpp │ │ │ ├── cearn_atan.h │ │ │ ├── main.cpp │ │ │ └── uvcoord_enemies.h │ ├── Makefile │ ├── dual_screen │ │ ├── Makefile │ │ ├── dual_screen.pnps │ │ ├── readme_dual_screen.txt │ │ └── source │ │ │ └── main.c │ ├── fonts │ │ ├── Fonts.pnps │ │ ├── Makefile │ │ ├── gfx │ │ │ ├── Thumbs.db │ │ │ ├── font_16x16.bmp │ │ │ ├── font_16x16.grit │ │ │ ├── font_si.bmp │ │ │ └── font_si.grit │ │ ├── readme_fonts.txt │ │ └── source │ │ │ ├── main.cpp │ │ │ ├── uvcoord_font_16x16.h │ │ │ └── uvcoord_font_si.h │ ├── primitives │ │ ├── Makefile │ │ ├── primitives.pnps │ │ ├── readme_primitives.txt │ │ └── source │ │ │ └── main.c │ ├── scrolling │ │ ├── Makefile │ │ ├── gfx │ │ │ ├── Thumbs.db │ │ │ ├── crono.bmp │ │ │ ├── crono.grit │ │ │ ├── tiles.bmp │ │ │ └── tiles.grit │ │ ├── readme_scrolling.txt │ │ ├── scrolling.pnps │ │ └── source │ │ │ ├── main.c │ │ │ └── uvcoord_crono.h │ └── sprites │ │ ├── Makefile │ │ ├── gfx │ │ ├── Thumbs.db │ │ ├── anya.grit │ │ ├── anya.png │ │ ├── blob_sprite.bmp │ │ ├── blob_sprite.grit │ │ ├── enemies.bmp │ │ ├── enemies.grit │ │ ├── flyer.grit │ │ ├── flyer.png │ │ ├── font.bmp │ │ ├── font.grit │ │ ├── fontbubble.bmp │ │ ├── fontbubble.grit │ │ ├── shuttle.grit │ │ ├── shuttle.png │ │ ├── test_sprite.bmp │ │ ├── test_sprite.grit │ │ ├── tiles.bmp │ │ ├── tiles.grit │ │ ├── zero.bmp │ │ └── zero.grit │ │ ├── readme_sprites.txt │ │ ├── source │ │ ├── cearn_atan.cpp │ │ ├── cearn_atan.h │ │ ├── main.cpp │ │ ├── uvcoord_enemies.h │ │ └── uvcoord_zero.h │ │ └── sprites.pnps └── grit │ ├── 256colorTilemap │ ├── Makefile │ ├── gfx │ │ ├── tilemap.grit │ │ └── tilemap.png │ └── source │ │ └── main.c │ └── Makefile ├── Makefile ├── audio ├── Makefile ├── maxmod │ ├── Makefile │ ├── audio_modes │ │ ├── Makefile │ │ ├── audio │ │ │ ├── keyg-subtonal.xm │ │ │ ├── purple_motion-inspiration.s3m │ │ │ └── rez-monday.mod │ │ └── source │ │ │ └── main.c │ ├── basic_sound │ │ ├── Makefile │ │ ├── maxmod_data │ │ │ ├── Ambulance.wav │ │ │ ├── Boom.wav │ │ │ └── FlatOutLies.mod │ │ └── source │ │ │ └── MaxModExample.c │ ├── reverb │ │ ├── Makefile │ │ ├── audio │ │ │ └── tempest-zen_bowling.mod │ │ └── source │ │ │ └── main.c │ ├── song_events_example │ │ ├── Makefile │ │ ├── gfx │ │ │ ├── ball.grit │ │ │ └── ball.png │ │ ├── music │ │ │ └── example.it │ │ └── source │ │ │ └── template.c │ ├── song_events_example2 │ │ ├── Makefile │ │ ├── music │ │ │ └── example2.it │ │ └── source │ │ │ └── template.c │ └── streaming │ │ ├── Makefile │ │ └── source │ │ └── main.c └── micrecord │ ├── Makefile │ └── source │ └── micrecord.c ├── card ├── Makefile └── eeprom │ ├── Makefile │ └── source │ └── main.cpp ├── debugging ├── Makefile └── exceptionTest │ ├── Makefile │ └── source │ └── exceptionTest.c ├── dswifi ├── Makefile ├── ap_search │ ├── Makefile │ ├── gfx │ │ └── wifiicon.png │ └── source │ │ └── template.c ├── autoconnect │ ├── Makefile │ └── source │ │ └── autoconnect.c └── httpget │ ├── Makefile │ └── source │ └── httpget.c ├── filesystem ├── Makefile ├── libfat │ ├── Makefile │ └── libfatdir │ │ ├── Makefile │ │ └── source │ │ └── directory.c └── nitrofs │ ├── Makefile │ ├── nitrodir │ ├── Makefile │ ├── nitrofiles │ │ ├── dir1 │ │ │ └── test.txt │ │ ├── dir2 │ │ │ └── subdir1 │ │ │ │ ├── subsubdir1 │ │ │ │ └── file2.txt │ │ │ │ └── test2.txt │ │ └── file1.txt │ └── source │ │ └── directory.c │ └── overlays │ ├── Makefile │ ├── overlays.ld │ └── source │ ├── main.c │ ├── test0.c │ ├── test1.c │ └── test2.c ├── hello_world ├── Makefile └── source │ └── main.cpp ├── input ├── Makefile ├── Touch_Pad │ ├── Makefile │ ├── touch_look │ │ ├── Makefile │ │ ├── data │ │ │ ├── Mud.pcx │ │ │ └── World.txt │ │ └── source │ │ │ └── main.cpp │ └── touch_test │ │ ├── Makefile │ │ ├── graphics │ │ ├── ball.grit │ │ └── ball.png │ │ └── source │ │ └── main.c ├── addon │ ├── Makefile │ └── source │ │ └── addon.c └── keyboard │ ├── Makefile │ ├── keyboard_async │ ├── Makefile │ └── source │ │ └── template.c │ └── keyboard_stdin │ ├── Makefile │ └── source │ └── keymain.c ├── pxi ├── Makefile ├── arm7 │ ├── Makefile │ └── source │ │ └── template.c └── arm9 │ ├── Makefile │ └── source │ └── template.c ├── templates ├── Makefile ├── arm9 │ ├── Makefile │ └── source │ │ └── main.c ├── arm9lib │ ├── Makefile │ ├── include │ │ └── templatelib.h │ └── source │ │ └── templatelib.c ├── combined │ ├── Makefile │ ├── arm7 │ │ ├── Makefile │ │ └── source │ │ │ └── template.c │ └── arm9 │ │ ├── Makefile │ │ └── source │ │ └── template.c └── dldi │ ├── Makefile │ └── source │ ├── dldi_header.s │ └── iointerface.c └── time ├── Makefile ├── RealTimeClock ├── Makefile └── source │ └── main.c ├── stopwatch ├── Makefile └── source │ └── main.c └── timercallback ├── Makefile └── source └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Graphics/3D/3D_Both_Screens/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/3D_Both_Screens/Makefile -------------------------------------------------------------------------------- /Graphics/3D/3D_Both_Screens/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/3D_Both_Screens/source/template.c -------------------------------------------------------------------------------- /Graphics/3D/BoxTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/BoxTest/Makefile -------------------------------------------------------------------------------- /Graphics/3D/BoxTest/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/BoxTest/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Display_List/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Display_List/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Display_List/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Display_List/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Display_List_2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Display_List_2/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Display_List_2/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Display_List_2/data/teapot.bin -------------------------------------------------------------------------------- /Graphics/3D/Display_List_2/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Display_List_2/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Env_Mapping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Env_Mapping/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Env_Mapping/data/cafe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Env_Mapping/data/cafe.bin -------------------------------------------------------------------------------- /Graphics/3D/Env_Mapping/data/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Env_Mapping/data/teapot.bin -------------------------------------------------------------------------------- /Graphics/3D/Env_Mapping/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Env_Mapping/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Mixed_Text_3D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Mixed_Text_3D/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Mixed_Text_3D/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Mixed_Text_3D/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Ortho/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Ortho/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Ortho/data/drunkenlogo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Ortho/data/drunkenlogo.pcx -------------------------------------------------------------------------------- /Graphics/3D/Ortho/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Ortho/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/data/texture10_COMP_pal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/data/texture10_COMP_pal.bin -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/data/texture10_COMP_tex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/data/texture10_COMP_tex.bin -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/data/texture10_COMP_texExt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/data/texture10_COMP_texExt.bin -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/16bpp.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/16bpp.grit -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/16bpp.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/16bpp.tga -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/a3i5.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/a3i5.grit -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/a3i5.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/a3i5.tga -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/a5i3.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/a5i3.grit -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/a5i3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/a5i3.tga -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/i2.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/i2.grit -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/i2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/i2.tga -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/i4.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/i4.grit -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/i4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/i4.tga -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/i8.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/i8.grit -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/graphics/i8.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/graphics/i8.tga -------------------------------------------------------------------------------- /Graphics/3D/Paletted_Cube/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Paletted_Cube/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Picking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Picking/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Picking/data/cone.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Picking/data/cone.bin -------------------------------------------------------------------------------- /Graphics/3D/Picking/data/cylinder.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Picking/data/cylinder.bin -------------------------------------------------------------------------------- /Graphics/3D/Picking/data/sphere.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Picking/data/sphere.bin -------------------------------------------------------------------------------- /Graphics/3D/Picking/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Picking/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Simple_Quad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Simple_Quad/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Simple_Quad/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Simple_Quad/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Simple_Tri/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Simple_Tri/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Simple_Tri/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Simple_Tri/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Textured_Cube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Textured_Cube/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Textured_Cube/data/texture.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Textured_Cube/data/texture.bin -------------------------------------------------------------------------------- /Graphics/3D/Textured_Cube/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Textured_Cube/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Textured_Quad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Textured_Quad/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Textured_Quad/data/texture.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Textured_Quad/data/texture.bin -------------------------------------------------------------------------------- /Graphics/3D/Textured_Quad/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Textured_Quad/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/Toon_Shading/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Toon_Shading/Makefile -------------------------------------------------------------------------------- /Graphics/3D/Toon_Shading/data/statue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Toon_Shading/data/statue.bin -------------------------------------------------------------------------------- /Graphics/3D/Toon_Shading/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/Toon_Shading/source/main.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson01/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson01/source/nehe1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson01/source/nehe1.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson02/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson02/source/nehe2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson02/source/nehe2.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson03/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson03/source/nehe3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson03/source/nehe3.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson04/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson04/source/nehe4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson04/source/nehe4.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson05/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson05/source/nehe5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson05/source/nehe5.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson06/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson06/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson06/data/drunkenlogo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson06/data/drunkenlogo.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson06/source/nehe6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson06/source/nehe6.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson07/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson07/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson07/data/drunkenlogo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson07/data/drunkenlogo.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson07/source/nehe7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson07/source/nehe7.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson08/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson08/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson08/data/drunkenlogo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson08/data/drunkenlogo.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson08/source/nehe8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson08/source/nehe8.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson09/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson09/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson09/data/Star.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson09/data/Star.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson09/source/nehe9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson09/source/nehe9.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10/data/Mud.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10/data/Mud.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10/data/World.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10/data/World.txt -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10/data/drunkenlogo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10/data/drunkenlogo.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10/source/nehe10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10/source/nehe10.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10b/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10b/data/Mud.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10b/data/Mud.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10b/data/World.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10b/data/World.txt -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson10b/source/nehe10b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson10b/source/nehe10b.cpp -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson11/Makefile -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson11/data/drunkenlogo.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson11/data/drunkenlogo.pcx -------------------------------------------------------------------------------- /Graphics/3D/nehe/lesson11/source/nehe11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/3D/nehe/lesson11/source/nehe11.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/16bit_color_bmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/16bit_color_bmp/Makefile -------------------------------------------------------------------------------- /Graphics/Backgrounds/16bit_color_bmp/data/drunkenlogo.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/16bit_color_bmp/data/drunkenlogo.grit -------------------------------------------------------------------------------- /Graphics/Backgrounds/16bit_color_bmp/data/drunkenlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/16bit_color_bmp/data/drunkenlogo.png -------------------------------------------------------------------------------- /Graphics/Backgrounds/16bit_color_bmp/source/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/16bit_color_bmp/source/template.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/256_color_bmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/256_color_bmp/Makefile -------------------------------------------------------------------------------- /Graphics/Backgrounds/256_color_bmp/data/drunkenlogo.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/256_color_bmp/data/drunkenlogo.grit -------------------------------------------------------------------------------- /Graphics/Backgrounds/256_color_bmp/data/drunkenlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/256_color_bmp/data/drunkenlogo.png -------------------------------------------------------------------------------- /Graphics/Backgrounds/256_color_bmp/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/256_color_bmp/source/main.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/Double_Buffer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/Double_Buffer/Makefile -------------------------------------------------------------------------------- /Graphics/Backgrounds/Double_Buffer/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/Double_Buffer/source/main.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/Makefile -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/Makefile -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/gfx/layers.pew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/gfx/layers.pew -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/gfx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/gfx/readme.txt -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/gfx/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/gfx/tiles.png -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/include/Multilayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/include/Multilayer.h -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/include/RotBackgrounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/include/RotBackgrounds.h -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/include/TextBackgrounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/include/TextBackgrounds.h -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/Multilayer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/Multilayer.s -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/RotBackgrounds.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/RotBackgrounds.s -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/TextBackgrounds.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/TextBackgrounds.s -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/advanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/advanced.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/basic.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/handmade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/handmade.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/main.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/all_in_one/source/scrolling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/all_in_one/source/scrolling.cpp -------------------------------------------------------------------------------- /Graphics/Backgrounds/rotation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/rotation/Makefile -------------------------------------------------------------------------------- /Graphics/Backgrounds/rotation/data/drunkenlogo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/rotation/data/drunkenlogo.bin -------------------------------------------------------------------------------- /Graphics/Backgrounds/rotation/data/palette.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/rotation/data/palette.bin -------------------------------------------------------------------------------- /Graphics/Backgrounds/rotation/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Backgrounds/rotation/source/main.cpp -------------------------------------------------------------------------------- /Graphics/Effects/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Effects/windows/Makefile -------------------------------------------------------------------------------- /Graphics/Effects/windows/gfx/drunkenlogo.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Effects/windows/gfx/drunkenlogo.grit -------------------------------------------------------------------------------- /Graphics/Effects/windows/gfx/drunkenlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Effects/windows/gfx/drunkenlogo.png -------------------------------------------------------------------------------- /Graphics/Effects/windows/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Effects/windows/source/template.c -------------------------------------------------------------------------------- /Graphics/Ext_Palettes/backgrounds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Ext_Palettes/backgrounds/Makefile -------------------------------------------------------------------------------- /Graphics/Ext_Palettes/backgrounds/gfx/devkitlogo.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Ext_Palettes/backgrounds/gfx/devkitlogo.grit -------------------------------------------------------------------------------- /Graphics/Ext_Palettes/backgrounds/gfx/devkitlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Ext_Palettes/backgrounds/gfx/devkitlogo.png -------------------------------------------------------------------------------- /Graphics/Ext_Palettes/backgrounds/gfx/drunkenlogo.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Ext_Palettes/backgrounds/gfx/drunkenlogo.grit -------------------------------------------------------------------------------- /Graphics/Ext_Palettes/backgrounds/gfx/drunkenlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Ext_Palettes/backgrounds/gfx/drunkenlogo.png -------------------------------------------------------------------------------- /Graphics/Ext_Palettes/backgrounds/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Ext_Palettes/backgrounds/source/main.c -------------------------------------------------------------------------------- /Graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Makefile -------------------------------------------------------------------------------- /Graphics/Printing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/Makefile -------------------------------------------------------------------------------- /Graphics/Printing/ansi_console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/ansi_console/Makefile -------------------------------------------------------------------------------- /Graphics/Printing/ansi_console/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/ansi_console/source/main.c -------------------------------------------------------------------------------- /Graphics/Printing/console_windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/console_windows/Makefile -------------------------------------------------------------------------------- /Graphics/Printing/console_windows/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/console_windows/source/main.c -------------------------------------------------------------------------------- /Graphics/Printing/custom_font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/custom_font/Makefile -------------------------------------------------------------------------------- /Graphics/Printing/custom_font/gfx/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/custom_font/gfx/font.bmp -------------------------------------------------------------------------------- /Graphics/Printing/custom_font/gfx/font.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/custom_font/gfx/font.grit -------------------------------------------------------------------------------- /Graphics/Printing/custom_font/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/custom_font/source/main.c -------------------------------------------------------------------------------- /Graphics/Printing/print_both_screens/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/print_both_screens/Makefile -------------------------------------------------------------------------------- /Graphics/Printing/print_both_screens/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/print_both_screens/source/template.c -------------------------------------------------------------------------------- /Graphics/Printing/rotscale_text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/rotscale_text/Makefile -------------------------------------------------------------------------------- /Graphics/Printing/rotscale_text/gfx/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/rotscale_text/gfx/font.bmp -------------------------------------------------------------------------------- /Graphics/Printing/rotscale_text/gfx/font.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/rotscale_text/gfx/font.grit -------------------------------------------------------------------------------- /Graphics/Printing/rotscale_text/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Printing/rotscale_text/source/main.c -------------------------------------------------------------------------------- /Graphics/Sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/allocation_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/allocation_test/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/allocation_test/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/allocation_test/source/main.c -------------------------------------------------------------------------------- /Graphics/Sprites/animate_simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/animate_simple/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/animate_simple/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/animate_simple/source/template.c -------------------------------------------------------------------------------- /Graphics/Sprites/animate_simple/sprites/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/animate_simple/sprites/man.png -------------------------------------------------------------------------------- /Graphics/Sprites/animate_simple/sprites/sprite.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/animate_simple/sprites/sprite.grit -------------------------------------------------------------------------------- /Graphics/Sprites/animate_simple/sprites/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/animate_simple/sprites/woman.png -------------------------------------------------------------------------------- /Graphics/Sprites/bitmap_sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/bitmap_sprites/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/bitmap_sprites/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/bitmap_sprites/source/main.cpp -------------------------------------------------------------------------------- /Graphics/Sprites/fire_and_sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/fire_and_sprites/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/fire_and_sprites/data/ball.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/fire_and_sprites/data/ball.pcx -------------------------------------------------------------------------------- /Graphics/Sprites/fire_and_sprites/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/fire_and_sprites/source/main.cpp -------------------------------------------------------------------------------- /Graphics/Sprites/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/simple/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/simple/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/simple/source/template.c -------------------------------------------------------------------------------- /Graphics/Sprites/sprite_extended_palettes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/sprite_extended_palettes/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/sprite_extended_palettes/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/sprite_extended_palettes/source/template.c -------------------------------------------------------------------------------- /Graphics/Sprites/sprite_rotate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/sprite_rotate/Makefile -------------------------------------------------------------------------------- /Graphics/Sprites/sprite_rotate/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/Sprites/sprite_rotate/source/template.c -------------------------------------------------------------------------------- /Graphics/capture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/capture/Makefile -------------------------------------------------------------------------------- /Graphics/capture/ScreenShot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/capture/ScreenShot/Makefile -------------------------------------------------------------------------------- /Graphics/capture/ScreenShot/include/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/capture/ScreenShot/include/bmp.h -------------------------------------------------------------------------------- /Graphics/capture/ScreenShot/include/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/capture/ScreenShot/include/screenshot.h -------------------------------------------------------------------------------- /Graphics/capture/ScreenShot/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/capture/ScreenShot/source/main.cpp -------------------------------------------------------------------------------- /Graphics/capture/ScreenShot/source/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/capture/ScreenShot/source/screenshot.cpp -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/2Dplus3D.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/2Dplus3D.pnps -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/Makefile -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/Thumbs.db -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/enemies.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/enemies.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/enemies.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/enemies.grit -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/flyer.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/flyer.grit -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/flyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/flyer.png -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/organ16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/organ16.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/organ16.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/organ16.grit -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/shuttle.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/shuttle.grit -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/gfx/shuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/gfx/shuttle.png -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/readme_2Dplus2D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/readme_2Dplus2D.txt -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/source/Cvertexbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/source/Cvertexbuffer.cpp -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/source/Cvertexbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/source/Cvertexbuffer.h -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/source/cearn_atan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/source/cearn_atan.cpp -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/source/cearn_atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/source/cearn_atan.h -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/source/main.cpp -------------------------------------------------------------------------------- /Graphics/gl2d/2Dplus3D/source/uvcoord_enemies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/2Dplus3D/source/uvcoord_enemies.h -------------------------------------------------------------------------------- /Graphics/gl2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/Makefile -------------------------------------------------------------------------------- /Graphics/gl2d/dual_screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/dual_screen/Makefile -------------------------------------------------------------------------------- /Graphics/gl2d/dual_screen/dual_screen.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/dual_screen/dual_screen.pnps -------------------------------------------------------------------------------- /Graphics/gl2d/dual_screen/readme_dual_screen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/dual_screen/readme_dual_screen.txt -------------------------------------------------------------------------------- /Graphics/gl2d/dual_screen/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/dual_screen/source/main.c -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/Fonts.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/Fonts.pnps -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/Makefile -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/gfx/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/gfx/Thumbs.db -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/gfx/font_16x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/gfx/font_16x16.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/gfx/font_16x16.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/gfx/font_16x16.grit -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/gfx/font_si.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/gfx/font_si.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/gfx/font_si.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/gfx/font_si.grit -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/readme_fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/readme_fonts.txt -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/source/main.cpp -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/source/uvcoord_font_16x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/source/uvcoord_font_16x16.h -------------------------------------------------------------------------------- /Graphics/gl2d/fonts/source/uvcoord_font_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/fonts/source/uvcoord_font_si.h -------------------------------------------------------------------------------- /Graphics/gl2d/primitives/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/primitives/Makefile -------------------------------------------------------------------------------- /Graphics/gl2d/primitives/primitives.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/primitives/primitives.pnps -------------------------------------------------------------------------------- /Graphics/gl2d/primitives/readme_primitives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/primitives/readme_primitives.txt -------------------------------------------------------------------------------- /Graphics/gl2d/primitives/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/primitives/source/main.c -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/Makefile -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/gfx/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/gfx/Thumbs.db -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/gfx/crono.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/gfx/crono.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/gfx/crono.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/gfx/crono.grit -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/gfx/tiles.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/gfx/tiles.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/gfx/tiles.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/gfx/tiles.grit -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/readme_scrolling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/readme_scrolling.txt -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/scrolling.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/scrolling.pnps -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/source/main.c -------------------------------------------------------------------------------- /Graphics/gl2d/scrolling/source/uvcoord_crono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/scrolling/source/uvcoord_crono.h -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/Makefile -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/Thumbs.db -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/anya.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/anya.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/anya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/anya.png -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/blob_sprite.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/blob_sprite.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/blob_sprite.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/blob_sprite.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/enemies.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/enemies.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/enemies.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/enemies.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/flyer.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/flyer.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/flyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/flyer.png -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/font.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/font.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/font.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/fontbubble.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/fontbubble.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/fontbubble.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/fontbubble.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/shuttle.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/shuttle.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/shuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/shuttle.png -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/test_sprite.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/test_sprite.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/test_sprite.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/test_sprite.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/tiles.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/tiles.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/tiles.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/tiles.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/zero.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/zero.bmp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/gfx/zero.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/gfx/zero.grit -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/readme_sprites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/readme_sprites.txt -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/source/cearn_atan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/source/cearn_atan.cpp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/source/cearn_atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/source/cearn_atan.h -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/source/main.cpp -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/source/uvcoord_enemies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/source/uvcoord_enemies.h -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/source/uvcoord_zero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/source/uvcoord_zero.h -------------------------------------------------------------------------------- /Graphics/gl2d/sprites/sprites.pnps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/gl2d/sprites/sprites.pnps -------------------------------------------------------------------------------- /Graphics/grit/256colorTilemap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/grit/256colorTilemap/Makefile -------------------------------------------------------------------------------- /Graphics/grit/256colorTilemap/gfx/tilemap.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/grit/256colorTilemap/gfx/tilemap.grit -------------------------------------------------------------------------------- /Graphics/grit/256colorTilemap/gfx/tilemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/grit/256colorTilemap/gfx/tilemap.png -------------------------------------------------------------------------------- /Graphics/grit/256colorTilemap/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/grit/256colorTilemap/source/main.c -------------------------------------------------------------------------------- /Graphics/grit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Graphics/grit/Makefile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/Makefile -------------------------------------------------------------------------------- /audio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/Makefile -------------------------------------------------------------------------------- /audio/maxmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/Makefile -------------------------------------------------------------------------------- /audio/maxmod/audio_modes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/audio_modes/Makefile -------------------------------------------------------------------------------- /audio/maxmod/audio_modes/audio/keyg-subtonal.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/audio_modes/audio/keyg-subtonal.xm -------------------------------------------------------------------------------- /audio/maxmod/audio_modes/audio/purple_motion-inspiration.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/audio_modes/audio/purple_motion-inspiration.s3m -------------------------------------------------------------------------------- /audio/maxmod/audio_modes/audio/rez-monday.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/audio_modes/audio/rez-monday.mod -------------------------------------------------------------------------------- /audio/maxmod/audio_modes/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/audio_modes/source/main.c -------------------------------------------------------------------------------- /audio/maxmod/basic_sound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/basic_sound/Makefile -------------------------------------------------------------------------------- /audio/maxmod/basic_sound/maxmod_data/Ambulance.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/basic_sound/maxmod_data/Ambulance.wav -------------------------------------------------------------------------------- /audio/maxmod/basic_sound/maxmod_data/Boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/basic_sound/maxmod_data/Boom.wav -------------------------------------------------------------------------------- /audio/maxmod/basic_sound/maxmod_data/FlatOutLies.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/basic_sound/maxmod_data/FlatOutLies.mod -------------------------------------------------------------------------------- /audio/maxmod/basic_sound/source/MaxModExample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/basic_sound/source/MaxModExample.c -------------------------------------------------------------------------------- /audio/maxmod/reverb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/reverb/Makefile -------------------------------------------------------------------------------- /audio/maxmod/reverb/audio/tempest-zen_bowling.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/reverb/audio/tempest-zen_bowling.mod -------------------------------------------------------------------------------- /audio/maxmod/reverb/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/reverb/source/main.c -------------------------------------------------------------------------------- /audio/maxmod/song_events_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/song_events_example/Makefile -------------------------------------------------------------------------------- /audio/maxmod/song_events_example/gfx/ball.grit: -------------------------------------------------------------------------------- 1 | #default options work for sprites -------------------------------------------------------------------------------- /audio/maxmod/song_events_example/gfx/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/song_events_example/gfx/ball.png -------------------------------------------------------------------------------- /audio/maxmod/song_events_example/music/example.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/song_events_example/music/example.it -------------------------------------------------------------------------------- /audio/maxmod/song_events_example/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/song_events_example/source/template.c -------------------------------------------------------------------------------- /audio/maxmod/song_events_example2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/song_events_example2/Makefile -------------------------------------------------------------------------------- /audio/maxmod/song_events_example2/music/example2.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/song_events_example2/music/example2.it -------------------------------------------------------------------------------- /audio/maxmod/song_events_example2/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/song_events_example2/source/template.c -------------------------------------------------------------------------------- /audio/maxmod/streaming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/streaming/Makefile -------------------------------------------------------------------------------- /audio/maxmod/streaming/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/maxmod/streaming/source/main.c -------------------------------------------------------------------------------- /audio/micrecord/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/micrecord/Makefile -------------------------------------------------------------------------------- /audio/micrecord/source/micrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/audio/micrecord/source/micrecord.c -------------------------------------------------------------------------------- /card/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/card/Makefile -------------------------------------------------------------------------------- /card/eeprom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/card/eeprom/Makefile -------------------------------------------------------------------------------- /card/eeprom/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/card/eeprom/source/main.cpp -------------------------------------------------------------------------------- /debugging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/debugging/Makefile -------------------------------------------------------------------------------- /debugging/exceptionTest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/debugging/exceptionTest/Makefile -------------------------------------------------------------------------------- /debugging/exceptionTest/source/exceptionTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/debugging/exceptionTest/source/exceptionTest.c -------------------------------------------------------------------------------- /dswifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/Makefile -------------------------------------------------------------------------------- /dswifi/ap_search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/ap_search/Makefile -------------------------------------------------------------------------------- /dswifi/ap_search/gfx/wifiicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/ap_search/gfx/wifiicon.png -------------------------------------------------------------------------------- /dswifi/ap_search/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/ap_search/source/template.c -------------------------------------------------------------------------------- /dswifi/autoconnect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/autoconnect/Makefile -------------------------------------------------------------------------------- /dswifi/autoconnect/source/autoconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/autoconnect/source/autoconnect.c -------------------------------------------------------------------------------- /dswifi/httpget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/httpget/Makefile -------------------------------------------------------------------------------- /dswifi/httpget/source/httpget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/dswifi/httpget/source/httpget.c -------------------------------------------------------------------------------- /filesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/Makefile -------------------------------------------------------------------------------- /filesystem/libfat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/libfat/Makefile -------------------------------------------------------------------------------- /filesystem/libfat/libfatdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/libfat/libfatdir/Makefile -------------------------------------------------------------------------------- /filesystem/libfat/libfatdir/source/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/libfat/libfatdir/source/directory.c -------------------------------------------------------------------------------- /filesystem/nitrofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/Makefile -------------------------------------------------------------------------------- /filesystem/nitrofs/nitrodir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/nitrodir/Makefile -------------------------------------------------------------------------------- /filesystem/nitrofs/nitrodir/nitrofiles/dir1/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filesystem/nitrofs/nitrodir/nitrofiles/dir2/subdir1/subsubdir1/file2.txt: -------------------------------------------------------------------------------- 1 | Hello from file2.txt 2 | 3 | -------------------------------------------------------------------------------- /filesystem/nitrofs/nitrodir/nitrofiles/dir2/subdir1/test2.txt: -------------------------------------------------------------------------------- 1 | hello world. 2 | -------------------------------------------------------------------------------- /filesystem/nitrofs/nitrodir/nitrofiles/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/nitrodir/nitrofiles/file1.txt -------------------------------------------------------------------------------- /filesystem/nitrofs/nitrodir/source/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/nitrodir/source/directory.c -------------------------------------------------------------------------------- /filesystem/nitrofs/overlays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/overlays/Makefile -------------------------------------------------------------------------------- /filesystem/nitrofs/overlays/overlays.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/overlays/overlays.ld -------------------------------------------------------------------------------- /filesystem/nitrofs/overlays/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/overlays/source/main.c -------------------------------------------------------------------------------- /filesystem/nitrofs/overlays/source/test0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/overlays/source/test0.c -------------------------------------------------------------------------------- /filesystem/nitrofs/overlays/source/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/overlays/source/test1.c -------------------------------------------------------------------------------- /filesystem/nitrofs/overlays/source/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/filesystem/nitrofs/overlays/source/test2.c -------------------------------------------------------------------------------- /hello_world/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/hello_world/Makefile -------------------------------------------------------------------------------- /hello_world/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/hello_world/source/main.cpp -------------------------------------------------------------------------------- /input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Makefile -------------------------------------------------------------------------------- /input/Touch_Pad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/Makefile -------------------------------------------------------------------------------- /input/Touch_Pad/touch_look/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_look/Makefile -------------------------------------------------------------------------------- /input/Touch_Pad/touch_look/data/Mud.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_look/data/Mud.pcx -------------------------------------------------------------------------------- /input/Touch_Pad/touch_look/data/World.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_look/data/World.txt -------------------------------------------------------------------------------- /input/Touch_Pad/touch_look/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_look/source/main.cpp -------------------------------------------------------------------------------- /input/Touch_Pad/touch_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_test/Makefile -------------------------------------------------------------------------------- /input/Touch_Pad/touch_test/graphics/ball.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_test/graphics/ball.grit -------------------------------------------------------------------------------- /input/Touch_Pad/touch_test/graphics/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_test/graphics/ball.png -------------------------------------------------------------------------------- /input/Touch_Pad/touch_test/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/Touch_Pad/touch_test/source/main.c -------------------------------------------------------------------------------- /input/addon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/addon/Makefile -------------------------------------------------------------------------------- /input/addon/source/addon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/addon/source/addon.c -------------------------------------------------------------------------------- /input/keyboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/keyboard/Makefile -------------------------------------------------------------------------------- /input/keyboard/keyboard_async/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/keyboard/keyboard_async/Makefile -------------------------------------------------------------------------------- /input/keyboard/keyboard_async/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/keyboard/keyboard_async/source/template.c -------------------------------------------------------------------------------- /input/keyboard/keyboard_stdin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/keyboard/keyboard_stdin/Makefile -------------------------------------------------------------------------------- /input/keyboard/keyboard_stdin/source/keymain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/input/keyboard/keyboard_stdin/source/keymain.c -------------------------------------------------------------------------------- /pxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/pxi/Makefile -------------------------------------------------------------------------------- /pxi/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/pxi/arm7/Makefile -------------------------------------------------------------------------------- /pxi/arm7/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/pxi/arm7/source/template.c -------------------------------------------------------------------------------- /pxi/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/pxi/arm9/Makefile -------------------------------------------------------------------------------- /pxi/arm9/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/pxi/arm9/source/template.c -------------------------------------------------------------------------------- /templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/Makefile -------------------------------------------------------------------------------- /templates/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/arm9/Makefile -------------------------------------------------------------------------------- /templates/arm9/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/arm9/source/main.c -------------------------------------------------------------------------------- /templates/arm9lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/arm9lib/Makefile -------------------------------------------------------------------------------- /templates/arm9lib/include/templatelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/arm9lib/include/templatelib.h -------------------------------------------------------------------------------- /templates/arm9lib/source/templatelib.c: -------------------------------------------------------------------------------- 1 | int myLibFunction() { 2 | 3 | 4 | return 42; 5 | 6 | } 7 | -------------------------------------------------------------------------------- /templates/combined/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/combined/Makefile -------------------------------------------------------------------------------- /templates/combined/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/combined/arm7/Makefile -------------------------------------------------------------------------------- /templates/combined/arm7/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/combined/arm7/source/template.c -------------------------------------------------------------------------------- /templates/combined/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/combined/arm9/Makefile -------------------------------------------------------------------------------- /templates/combined/arm9/source/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/combined/arm9/source/template.c -------------------------------------------------------------------------------- /templates/dldi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/dldi/Makefile -------------------------------------------------------------------------------- /templates/dldi/source/dldi_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/dldi/source/dldi_header.s -------------------------------------------------------------------------------- /templates/dldi/source/iointerface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/templates/dldi/source/iointerface.c -------------------------------------------------------------------------------- /time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/time/Makefile -------------------------------------------------------------------------------- /time/RealTimeClock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/time/RealTimeClock/Makefile -------------------------------------------------------------------------------- /time/RealTimeClock/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/time/RealTimeClock/source/main.c -------------------------------------------------------------------------------- /time/stopwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/time/stopwatch/Makefile -------------------------------------------------------------------------------- /time/stopwatch/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/time/stopwatch/source/main.c -------------------------------------------------------------------------------- /time/timercallback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/time/timercallback/Makefile -------------------------------------------------------------------------------- /time/timercallback/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devkitPro/nds-examples/HEAD/time/timercallback/source/main.c --------------------------------------------------------------------------------