├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── documents ├── DDI0194H_ssp_pl022_trm.pdf └── NESDoc.pdf ├── mps2_template ├── example │ ├── LiteNES │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── emulator │ │ │ ├── 7z.dll │ │ │ ├── auxlib.lua │ │ │ ├── fceux-2.1.4a-win32-444.zip │ │ │ ├── fceux.cfg │ │ │ ├── fceux.chm │ │ │ ├── fceux.exe │ │ │ ├── luaScripts │ │ │ │ ├── BugsBunnyBirthdayBlowout.lua │ │ │ │ ├── DrawTest.lua │ │ │ │ ├── Excitingbike-speedometeronly.lua │ │ │ │ ├── Excitingbike.lua │ │ │ │ ├── FRKfunctions.lua │ │ │ │ ├── GUI-iup_button.lua │ │ │ │ ├── GUI-iup_example.lua │ │ │ │ ├── Galaxian.lua │ │ │ │ ├── Gradius-BulletHell.lua │ │ │ │ ├── Luabot.lua │ │ │ │ ├── Machrider.lua │ │ │ │ ├── MegamanII-LaserEyes.lua │ │ │ │ ├── MemoryWatch.lua │ │ │ │ ├── Multitrack.lua │ │ │ │ ├── Multitrack2.lua │ │ │ │ ├── PunchOutChallenge.lua │ │ │ │ ├── PunchOutStats.lua │ │ │ │ ├── PunchOutTraining.lua │ │ │ │ ├── Registerfind(CheatSearch).lua │ │ │ │ ├── Rewinder.lua │ │ │ │ ├── SMB-AreaScrambler.lua │ │ │ │ ├── SMB-CompetitionRecorder.lua │ │ │ │ ├── SMB-HitBoxes.lua │ │ │ │ ├── SMB-Jetpack.lua │ │ │ │ ├── SMB-Lives&HPDisplay.lua │ │ │ │ ├── SMB-Mouse.lua │ │ │ │ ├── SMB-Snow.lua │ │ │ │ ├── SMB2U.lua │ │ │ │ ├── SMB3-RainbowRiding.lua │ │ │ │ ├── SavestateTest.lua │ │ │ │ ├── ShowPalette.lua │ │ │ │ ├── TeenageMutantNinjaTurtles.lua │ │ │ │ ├── UsingLuaBot-Documentation.txt │ │ │ │ ├── UsingLuaScripting-Documentation.txt │ │ │ │ ├── UsingLuaScripting-ListofFunctions.txt │ │ │ │ ├── ZapperDisplay.lua │ │ │ │ ├── ZapperFun.lua │ │ │ │ ├── directoryTest.lua │ │ │ │ ├── foo.txt │ │ │ │ ├── luabot_framework.lua │ │ │ │ ├── m_utils.lua │ │ │ │ ├── shapedefs.lua │ │ │ │ ├── tetris.lua │ │ │ │ ├── vnb.lua │ │ │ │ ├── x_functions.lua │ │ │ │ ├── x_interface.lua │ │ │ │ └── x_smb1enemylist.lua │ │ │ └── palettes │ │ │ │ ├── ASQ_realityA.pal │ │ │ │ ├── ASQ_realityB.pal │ │ │ │ ├── BMF_final2.pal │ │ │ │ ├── BMF_final3.pal │ │ │ │ ├── FCEU-13-default_nitsuja.pal │ │ │ │ ├── FCEU-15-nitsuja_new.pal │ │ │ │ └── FCEUX.pal │ │ ├── include │ │ │ ├── common.h │ │ │ ├── cpu-internal.h │ │ │ ├── cpu.h │ │ │ ├── fce.h │ │ │ ├── hal.h │ │ │ ├── memory.h │ │ │ ├── mmc.h │ │ │ ├── nes.h │ │ │ ├── ppu-internal.h │ │ │ ├── ppu.h │ │ │ └── psg.h │ │ ├── kungfu.png │ │ ├── roms │ │ │ ├── Contra (USA).nes │ │ │ ├── Contra.s │ │ │ ├── Road Fighter (Europe).nes │ │ │ ├── Road Fighter.s │ │ │ ├── Super Mario Bros (E).nes │ │ │ ├── Super Tank (Battle City Pirate) (J) [p1].nes │ │ │ ├── Super_Mario_Bros.s │ │ │ ├── Super_Tank.s │ │ │ └── demo.nes │ │ └── src │ │ │ ├── fce │ │ │ ├── cartridge.c │ │ │ ├── cartridge.h │ │ │ ├── common.c │ │ │ ├── cpu-addressing.c │ │ │ ├── cpu.c │ │ │ ├── fce.c │ │ │ ├── memory.c │ │ │ ├── mmc.c │ │ │ ├── ppu.c │ │ │ ├── ppu_new.c │ │ │ ├── ppu_new.h │ │ │ └── psg.c │ │ │ ├── hal.c │ │ │ └── main.c │ ├── RTE │ │ ├── Device │ │ │ └── CMSDK_CM7_SP │ │ │ │ ├── RTE_Device.h │ │ │ │ ├── startup_CMSDK_CM7.s │ │ │ │ └── system_CMSDK_CM7.c │ │ └── _V2M-MPS2 │ │ │ └── RTE_Components.h │ ├── app_cfg.h │ ├── app_platform │ │ ├── STM32F746G-Discovery │ │ │ ├── GLCD_746G_Discovery.c │ │ │ ├── GLCD_Config.h │ │ │ ├── GLCD_Fonts.c │ │ │ ├── LCDConf.c │ │ │ ├── LCD_X.c │ │ │ ├── app_cfg.h │ │ │ ├── bsp.c │ │ │ └── bsp.h │ │ ├── V2M-MPS2 │ │ │ ├── CMSDK_CM7_SP │ │ │ │ ├── Blinky │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── Blinky.c │ │ │ │ │ ├── Blinky.uvguix │ │ │ │ │ ├── Blinky.uvoptx │ │ │ │ │ ├── Blinky.uvprojx │ │ │ │ │ ├── Dbg_MPS2.ini │ │ │ │ │ ├── Dbg_Sim.ini │ │ │ │ │ ├── MPS2_CS_ETB.ini │ │ │ │ │ ├── MPS2_CS_TPIU.ini │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── Device │ │ │ │ │ │ │ └── CMSDK_CM7_SP │ │ │ │ │ │ │ ├── RTE_Device.h │ │ │ │ │ │ │ ├── startup_CMSDK_CM7.s │ │ │ │ │ │ │ └── system_CMSDK_CM7.c │ │ │ │ │ └── stdout_USART.c │ │ │ │ └── RTX_Blinky │ │ │ │ │ ├── Abstract.txt │ │ │ │ │ ├── Blinky.c │ │ │ │ │ ├── Blinky.uvguix │ │ │ │ │ ├── Blinky.uvoptx │ │ │ │ │ ├── Blinky.uvprojx │ │ │ │ │ ├── Dbg_MPS2.ini │ │ │ │ │ ├── Dbg_Sim.ini │ │ │ │ │ └── RTE │ │ │ │ │ ├── CMSIS │ │ │ │ │ └── RTX_Conf_CM.c │ │ │ │ │ └── Device │ │ │ │ │ └── CMSDK_CM7_SP │ │ │ │ │ ├── RTE_Device.h │ │ │ │ │ ├── startup_CMSDK_CM7.s │ │ │ │ │ └── system_CMSDK_CM7.c │ │ │ ├── Common │ │ │ │ ├── Buttons_V2M-MPS2.c │ │ │ │ ├── Device.h │ │ │ │ ├── GLCD_Config.h │ │ │ │ ├── GLCD_Fonts.c │ │ │ │ ├── GLCD_V2M-MPS2.c │ │ │ │ ├── LED_V2M-MPS2.c │ │ │ │ ├── SMM_MPS2.h │ │ │ │ └── Touch_V2M-MPS2.c │ │ │ ├── app_cfg.h │ │ │ ├── bsp.c │ │ │ └── bsp.h │ │ ├── V2M-MPS3 │ │ │ ├── app_cfg.h │ │ │ ├── bsp.c │ │ │ └── bsp.h │ │ ├── app_cfg.h │ │ ├── app_platform.c │ │ ├── app_platform.h │ │ ├── bsp.h │ │ ├── file_io.h │ │ ├── generic_io_lib_armv6-m_size.lib │ │ ├── generic_io_lib_armv6-m_speed.lib │ │ ├── generic_io_lib_armv7-m_size.lib │ │ ├── generic_io_lib_armv7-m_speed.lib │ │ ├── generic_io_stream.lib │ │ ├── stdout_USART.c │ │ └── stdout_USART.h │ ├── build │ │ └── mdk │ │ │ ├── Abstract.txt │ │ │ ├── Blinky.sct │ │ │ ├── Blinky.uvguix │ │ │ ├── Blinky.uvoptx │ │ │ ├── Blinky.uvprojx │ │ │ ├── Dbg_MPS2.ini │ │ │ ├── Dbg_Sim.ini │ │ │ ├── DebugConfig │ │ │ ├── STM32F746-Discovery_STM32F746NGHx_1.0.0.dbgconf │ │ │ └── STM32F746-Discovery_STM32F746NGHx_2.0.0.dbgconf │ │ │ ├── EventRecorderStub.scvd │ │ │ ├── FVP_cfg.txt │ │ │ ├── MPS2_CS_ETB.ini │ │ │ ├── MPS2_CS_TPIU.ini │ │ │ ├── Out │ │ │ └── ArInp.Scr │ │ │ ├── RTE │ │ │ ├── Device │ │ │ │ ├── CMSDK_CM4_FP │ │ │ │ │ ├── RTE_Device.h │ │ │ │ │ ├── startup_CMSDK_CM4.s │ │ │ │ │ └── system_CMSDK_CM4.c │ │ │ │ ├── CMSDK_CM7_SP │ │ │ │ │ ├── RTE_Device.h │ │ │ │ │ ├── startup_CMSDK_CM7.s │ │ │ │ │ └── system_CMSDK_CM7.c │ │ │ │ ├── STM32F746NGHx │ │ │ │ │ ├── RTE_Device.h │ │ │ │ │ ├── startup_stm32f746xx.s │ │ │ │ │ ├── stm32f7xx_hal_conf.h │ │ │ │ │ └── system_stm32f7xx.c │ │ │ │ └── Yamin │ │ │ │ │ ├── RTE_Device.h │ │ │ │ │ ├── Yamin.sct │ │ │ │ │ ├── partition_Yamin.h │ │ │ │ │ ├── startup_Yamin.c │ │ │ │ │ └── system_Yamin.c │ │ │ ├── _STM32F746-Discovery-AC6 │ │ │ │ └── RTE_Components.h │ │ │ ├── _STM32F746-Discovery-Lib │ │ │ │ ├── Pre_Include_Global.h │ │ │ │ └── RTE_Components.h │ │ │ ├── _STM32F746-Discovery │ │ │ │ └── RTE_Components.h │ │ │ ├── _V2M-MPS2-LiteNES │ │ │ │ └── RTE_Components.h │ │ │ ├── _V2M-MPS2-jeg │ │ │ │ └── RTE_Components.h │ │ │ ├── _V2M-MPS2 │ │ │ │ └── RTE_Components.h │ │ │ ├── _V2M-MPS3-jeg │ │ │ │ └── RTE_Components.h │ │ │ └── _rom_lib │ │ │ │ └── RTE_Components.h │ │ │ ├── STM32F746G_Discovery.sct │ │ │ ├── efsym │ │ │ └── reboot.txt │ ├── jeg │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── benchmark.c │ │ ├── cartridge.c │ │ ├── cartridge.h │ │ ├── common.h │ │ ├── cpu6502.c │ │ ├── cpu6502.h │ │ ├── cpu6502_debug.c │ │ ├── cpu6502_debug.h │ │ ├── cpu6502_opcodes.c │ │ ├── cpu6502_opcodes.h │ │ ├── fce.c │ │ ├── fce.h │ │ ├── hal.h │ │ ├── jeg_cfg.h │ │ ├── nes.c │ │ ├── nes.h │ │ ├── ppu.c │ │ ├── ppu.h │ │ ├── ppu_pixel_based.c │ │ ├── test │ │ │ ├── klaus2m5 │ │ │ │ ├── 6502_functional_test.bin │ │ │ │ ├── 6502_functional_test.lst │ │ │ │ └── system.c │ │ │ └── nes_roms │ │ │ │ ├── backwards_branch.nes │ │ │ │ ├── blargg_palette_ram.nes │ │ │ │ ├── blargg_sprite_ram.nes │ │ │ │ ├── blargg_vbl_clear_time.nes │ │ │ │ ├── blargg_vram_access.nes │ │ │ │ ├── branch_basics.nes │ │ │ │ ├── cpu_dummy_reads.nes │ │ │ │ ├── cpu_exec_space_ppuio.nes │ │ │ │ ├── cpu_timing_test.nes │ │ │ │ ├── failing │ │ │ │ ├── blargg_nes_cpu_test5_cpu.nes │ │ │ │ ├── blargg_nes_cpu_test5_official.nes │ │ │ │ ├── cpu_dummy_writes_oam.nes │ │ │ │ ├── cpu_dummy_writes_ppumem.nes │ │ │ │ ├── ppu_vbl_nmi.nes │ │ │ │ ├── ram_after_reset.nes │ │ │ │ └── registers.nes │ │ │ │ ├── forward_branch.nes │ │ │ │ ├── nestest.nes │ │ │ │ ├── readme.md │ │ │ │ ├── test.key │ │ │ │ └── test_roms.c │ │ ├── ui.c │ │ └── windows │ │ │ ├── SDL.dll │ │ │ ├── SDL2.dll │ │ │ ├── include │ │ │ └── SDL │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_active.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_byteorder.h │ │ │ │ ├── SDL_cdrom.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config.h.cmake │ │ │ │ ├── SDL_config.h.in │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_psp.h │ │ │ │ ├── SDL_config_win32.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ ├── SDL_config_wiz.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_getenv.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_keysym.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ └── libs │ │ │ ├── libSDL.dll.a │ │ │ ├── libSDL2.dll.a │ │ │ ├── libSDL2main.a │ │ │ └── libSDLmain.a │ └── system.c └── sources │ ├── app_cfg.h │ └── gmsi │ ├── app_cfg.h │ ├── default.c │ ├── gmsi.c │ ├── gmsi.h │ ├── hal │ ├── app_cfg.h │ ├── bsp │ │ ├── app_cfg.h │ │ ├── bsp.c │ │ └── bsp.h │ ├── component │ │ ├── app_cfg.h │ │ ├── bootloader │ │ │ ├── app_cfg.h │ │ │ ├── bootloader.c │ │ │ └── bootloader.h │ │ ├── component.c │ │ ├── component.h │ │ ├── key │ │ │ ├── app_cfg.h │ │ │ ├── key.c │ │ │ ├── key.h │ │ │ ├── key_interface.h │ │ │ └── key_queue │ │ │ │ ├── app_cfg.h │ │ │ │ ├── key_queue.c │ │ │ │ └── key_queue.h │ │ ├── memory │ │ │ ├── app_cfg.h │ │ │ ├── interface.h │ │ │ ├── mal │ │ │ │ ├── app_cfg.h │ │ │ │ ├── interface.h │ │ │ │ ├── mal.c │ │ │ │ ├── mal.h │ │ │ │ ├── sdf_w25qxxx │ │ │ │ │ ├── app_cfg.h │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── sdf_w25qxxx.c │ │ │ │ │ └── sdf_w25qxxx.h │ │ │ │ └── sram │ │ │ │ │ ├── app_cfg.h │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── sram.c │ │ │ │ │ └── sram.h │ │ │ ├── memory.h │ │ │ └── page │ │ │ │ ├── app_cfg.h │ │ │ │ ├── interface.h │ │ │ │ ├── page.c │ │ │ │ └── page.h │ │ └── sw_sdio │ │ │ ├── app_cfg.h │ │ │ ├── sw_sdio.c │ │ │ └── sw_sdio.h │ ├── hal.c │ └── hal.h │ ├── service │ ├── app_cfg.h │ ├── communication │ │ ├── app_cfg.h │ │ ├── communication.h │ │ ├── crc │ │ │ ├── app_cfg.h │ │ │ ├── crc.c │ │ │ ├── crc.h │ │ │ ├── crc16.c │ │ │ ├── crc32.c │ │ │ ├── crc7.c │ │ │ └── crc8.c │ │ ├── frame │ │ │ ├── app_cfg.h │ │ │ ├── es_simple_frame │ │ │ │ ├── app_cfg.h │ │ │ │ ├── es_simple_frame.c │ │ │ │ ├── es_simple_frame.h │ │ │ │ └── tools │ │ │ │ │ ├── AdapterTester.exe │ │ │ │ │ ├── ESDevice.dll │ │ │ │ │ ├── ESUtilities.dll │ │ │ │ │ ├── HIDAdapter.dll │ │ │ │ │ └── SerialPortAdapter.dll │ │ │ ├── frame.h │ │ │ └── iframe.h │ │ ├── telegraph_engine │ │ │ ├── app_cfg.h │ │ │ ├── telegraph_engine.c │ │ │ └── telegraph_engine.h │ │ └── xmodem │ │ │ ├── app_cfg.h │ │ │ ├── xmodem.c │ │ │ └── xmodem.h │ ├── encryption │ │ ├── app_cfg.h │ │ ├── encryption.h │ │ └── random │ │ │ ├── app_cfg.h │ │ │ ├── random.c │ │ │ └── random.h │ ├── gui │ │ ├── app_cfg.h │ │ ├── gui.h │ │ └── tgui │ │ │ ├── app_cfg.h │ │ │ ├── grid │ │ │ ├── app_cfg.h │ │ │ ├── example.lib │ │ │ ├── grid.c │ │ │ ├── grid.h │ │ │ └── interface.h │ │ │ ├── interface.h │ │ │ ├── tgui.c │ │ │ └── tgui.h │ ├── memory │ │ ├── app_cfg.h │ │ ├── block │ │ │ ├── __class_block.h │ │ │ ├── app_cfg.h │ │ │ ├── block.c │ │ │ └── block.h │ │ ├── block_queue │ │ │ ├── app_cfg.h │ │ │ ├── block_queue.c │ │ │ └── block_queue.h │ │ ├── epool │ │ │ ├── app_cfg.h │ │ │ ├── epool.c │ │ │ └── epool.h │ │ ├── memory.c │ │ ├── memory.h │ │ └── stream2block │ │ │ ├── app_cfg.h │ │ │ ├── stream2block.c │ │ │ └── stream2block.h │ ├── scheduler │ │ ├── app_cfg.h │ │ ├── scheduler.c │ │ ├── scheduler.h │ │ ├── scheduler_internal.h │ │ ├── shell.c │ │ ├── task.c │ │ └── task.h │ ├── service.c │ ├── service.h │ └── time │ │ ├── app_cfg.h │ │ ├── multiple_delay │ │ ├── app_cfg.h │ │ ├── multiple_delay.c │ │ └── multiple_delay.h │ │ ├── time.c │ │ └── time.h │ └── utilities │ ├── 3rd-party │ └── PLOOC │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ ├── README.md │ │ ├── byte_queue │ │ │ ├── byte_queue.c │ │ │ └── byte_queue.h │ │ ├── enhanced_byte_queue │ │ │ ├── enhanced_byte_queue.c │ │ │ └── enhanced_byte_queue.h │ │ ├── picture │ │ │ └── example3.png │ │ ├── project │ │ │ ├── main.c │ │ │ └── mdk │ │ │ │ ├── EventRecorderStub.scvd │ │ │ │ ├── RTE │ │ │ │ ├── Device │ │ │ │ │ └── CMSDK_CM3 │ │ │ │ │ │ ├── RTE_Device.h │ │ │ │ │ │ ├── startup_CMSDK_CM3.s │ │ │ │ │ │ └── system_CMSDK_CM3.c │ │ │ │ ├── _Target_1 │ │ │ │ │ └── RTE_Components.h │ │ │ │ └── _arm_compiler_6_example │ │ │ │ │ └── RTE_Components.h │ │ │ │ ├── platform.c │ │ │ │ ├── platform.h │ │ │ │ ├── plooc_example.uvoptx │ │ │ │ └── plooc_example.uvprojx │ │ └── trace │ │ │ ├── trace.c │ │ │ └── trace.h │ │ ├── plooc.h │ │ ├── plooc_class.h │ │ ├── plooc_class_black_box.h │ │ ├── plooc_class_simple.h │ │ ├── plooc_class_simple_c90.h │ │ ├── plooc_class_strict.h │ │ └── plooc_class_strict_old.h │ ├── app_type.h │ ├── arm │ ├── CMSIS │ │ ├── Core │ │ │ ├── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_armclang_ltm.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── cmsis_version.h │ │ │ │ ├── core_armv81mml.h │ │ │ │ ├── core_armv8mbl.h │ │ │ │ ├── core_armv8mml.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm1.h │ │ │ │ ├── core_cm23.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm33.h │ │ │ │ ├── core_cm35p.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_sc000.h │ │ │ │ ├── core_sc300.h │ │ │ │ ├── mpu_armv7.h │ │ │ │ ├── mpu_armv8.h │ │ │ │ └── tz_context.h │ │ │ └── Template │ │ │ │ └── ARMv8-M │ │ │ │ ├── main_s.c │ │ │ │ └── tz_context.c │ │ ├── Core_A │ │ │ ├── Include │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armclang.h │ │ │ │ ├── cmsis_compiler.h │ │ │ │ ├── cmsis_cp15.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── cmsis_iccarm.h │ │ │ │ ├── core_ca.h │ │ │ │ └── irq_ctrl.h │ │ │ └── Source │ │ │ │ └── irq_ctrl_gic.c │ │ ├── DSP │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ └── arm_math.h │ │ ├── NN │ │ │ ├── Include │ │ │ │ ├── arm_nn_tables.h │ │ │ │ ├── arm_nnfunctions.h │ │ │ │ └── arm_nnsupportfunctions.h │ │ │ ├── Scripts │ │ │ │ └── NNFunctions │ │ │ │ │ ├── fully_connected_opt_weight_generation.py │ │ │ │ │ └── table_gen.py │ │ │ └── Source │ │ │ │ ├── ActivationFunctions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── arm_nn_activations_q15.c │ │ │ │ ├── arm_nn_activations_q7.c │ │ │ │ ├── arm_relu_q15.c │ │ │ │ └── arm_relu_q7.c │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConvolutionFunctions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── arm_convolve_1x1_HWC_q7_fast_nonsquare.c │ │ │ │ ├── arm_convolve_HWC_q15_basic.c │ │ │ │ ├── arm_convolve_HWC_q15_fast.c │ │ │ │ ├── arm_convolve_HWC_q15_fast_nonsquare.c │ │ │ │ ├── arm_convolve_HWC_q7_RGB.c │ │ │ │ ├── arm_convolve_HWC_q7_basic.c │ │ │ │ ├── arm_convolve_HWC_q7_basic_nonsquare.c │ │ │ │ ├── arm_convolve_HWC_q7_fast.c │ │ │ │ ├── arm_convolve_HWC_q7_fast_nonsquare.c │ │ │ │ ├── arm_convolve_s8.c │ │ │ │ ├── arm_depthwise_conv_s8.c │ │ │ │ ├── arm_depthwise_conv_u8_basic_ver1.c │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7.c │ │ │ │ ├── arm_depthwise_separable_conv_HWC_q7_nonsquare.c │ │ │ │ ├── arm_nn_mat_mult_kernel_q7_q15.c │ │ │ │ ├── arm_nn_mat_mult_kernel_q7_q15_reordered.c │ │ │ │ └── arm_nn_mat_mult_kernel_s8_s16.c │ │ │ │ ├── FullyConnectedFunctions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15.c │ │ │ │ ├── arm_fully_connected_mat_q7_vec_q15_opt.c │ │ │ │ ├── arm_fully_connected_q15.c │ │ │ │ ├── arm_fully_connected_q15_opt.c │ │ │ │ ├── arm_fully_connected_q7.c │ │ │ │ ├── arm_fully_connected_q7_opt.c │ │ │ │ └── arm_fully_connected_s8.c │ │ │ │ ├── NNSupportFunctions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── arm_nn_add_q7.c │ │ │ │ ├── arm_nn_mult_q15.c │ │ │ │ ├── arm_nn_mult_q7.c │ │ │ │ ├── arm_nntables.c │ │ │ │ ├── arm_q7_to_q15_no_shift.c │ │ │ │ ├── arm_q7_to_q15_reordered_no_shift.c │ │ │ │ └── arm_q7_to_q15_with_offset.c │ │ │ │ ├── PoolingFunctions │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── arm_pool_q7_HWC.c │ │ │ │ └── SoftmaxFunctions │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── arm_softmax_q15.c │ │ │ │ └── arm_softmax_q7.c │ │ └── readme_patch.txt │ ├── arm_compiler.h │ ├── signal.c │ └── signal.h │ ├── avr │ ├── app_type.h │ ├── avr_compiler.h │ └── signal.h │ ├── communicate.h │ ├── compiler.h │ ├── delegate.c │ ├── delegate.h │ ├── error.h │ ├── ooc.h │ ├── preprocessor │ ├── mrepeat.h │ ├── preprocessor.h │ ├── stringz.h │ └── tpaste.h │ ├── simple_fsm.h │ ├── template │ ├── t_list.c │ ├── t_list.h │ ├── t_pool.h │ ├── t_queue.h │ └── template.h │ ├── tiny_fsm.h │ └── usebits.h └── tools ├── ESDevice.dll ├── ESUtilities.dll ├── IOStream.dll ├── IOStreamAgent.exe ├── SerialPortAdapter.dll ├── TCPClientAdapter.dll ├── launch_serial_port.bat └── launch_tcpclient.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/_config.yml -------------------------------------------------------------------------------- /documents/DDI0194H_ssp_pl022_trm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/documents/DDI0194H_ssp_pl022_trm.pdf -------------------------------------------------------------------------------- /documents/NESDoc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/documents/NESDoc.pdf -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/.gitignore: -------------------------------------------------------------------------------- 1 | *.[oad] 2 | *.swp 3 | *~ 4 | litenes 5 | /tags 6 | -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/Makefile -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/README.md -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/7z.dll -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/auxlib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/auxlib.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/fceux-2.1.4a-win32-444.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/fceux-2.1.4a-win32-444.zip -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/fceux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/fceux.cfg -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/fceux.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/fceux.chm -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/fceux.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/fceux.exe -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/BugsBunnyBirthdayBlowout.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/BugsBunnyBirthdayBlowout.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/DrawTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/DrawTest.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Excitingbike-speedometeronly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Excitingbike-speedometeronly.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Excitingbike.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Excitingbike.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/FRKfunctions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/FRKfunctions.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/GUI-iup_button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/GUI-iup_button.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/GUI-iup_example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/GUI-iup_example.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Galaxian.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Galaxian.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Gradius-BulletHell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Gradius-BulletHell.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Luabot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Luabot.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Machrider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Machrider.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/MegamanII-LaserEyes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/MegamanII-LaserEyes.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/MemoryWatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/MemoryWatch.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Multitrack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Multitrack.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Multitrack2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Multitrack2.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/PunchOutChallenge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/PunchOutChallenge.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/PunchOutStats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/PunchOutStats.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/PunchOutTraining.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/PunchOutTraining.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Registerfind(CheatSearch).lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Registerfind(CheatSearch).lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/Rewinder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/Rewinder.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB-AreaScrambler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB-AreaScrambler.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB-CompetitionRecorder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB-CompetitionRecorder.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB-HitBoxes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB-HitBoxes.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB-Jetpack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB-Jetpack.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB-Lives&HPDisplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB-Lives&HPDisplay.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB-Mouse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB-Mouse.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB-Snow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB-Snow.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB2U.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB2U.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SMB3-RainbowRiding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SMB3-RainbowRiding.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/SavestateTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/SavestateTest.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/ShowPalette.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/ShowPalette.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/TeenageMutantNinjaTurtles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/TeenageMutantNinjaTurtles.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/UsingLuaBot-Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/UsingLuaBot-Documentation.txt -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/UsingLuaScripting-Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/UsingLuaScripting-Documentation.txt -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/UsingLuaScripting-ListofFunctions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/UsingLuaScripting-ListofFunctions.txt -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/ZapperDisplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/ZapperDisplay.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/ZapperFun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/ZapperFun.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/directoryTest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/directoryTest.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/luabot_framework.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/luabot_framework.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/m_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/m_utils.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/shapedefs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/shapedefs.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/tetris.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/tetris.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/vnb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/vnb.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/x_functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/x_functions.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/x_interface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/x_interface.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/luaScripts/x_smb1enemylist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/luaScripts/x_smb1enemylist.lua -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/palettes/ASQ_realityA.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/palettes/ASQ_realityA.pal -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/palettes/ASQ_realityB.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/palettes/ASQ_realityB.pal -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/palettes/BMF_final2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/palettes/BMF_final2.pal -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/palettes/BMF_final3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/palettes/BMF_final3.pal -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/palettes/FCEU-13-default_nitsuja.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/palettes/FCEU-13-default_nitsuja.pal -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/palettes/FCEU-15-nitsuja_new.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/palettes/FCEU-15-nitsuja_new.pal -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/emulator/palettes/FCEUX.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/emulator/palettes/FCEUX.pal -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/common.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/cpu-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/cpu-internal.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/cpu.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/fce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/fce.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/hal.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/memory.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/mmc.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/nes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/nes.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/ppu-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/ppu-internal.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/ppu.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/include/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/include/psg.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/kungfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/kungfu.png -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Contra (USA).nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Contra (USA).nes -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Contra.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Contra.s -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Road Fighter (Europe).nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Road Fighter (Europe).nes -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Road Fighter.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Road Fighter.s -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Super Mario Bros (E).nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Super Mario Bros (E).nes -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Super Tank (Battle City Pirate) (J) [p1].nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Super Tank (Battle City Pirate) (J) [p1].nes -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Super_Mario_Bros.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Super_Mario_Bros.s -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/Super_Tank.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/Super_Tank.s -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/roms/demo.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/roms/demo.nes -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/cartridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/cartridge.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/cartridge.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/common.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/cpu-addressing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/cpu-addressing.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/cpu.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/fce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/fce.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/memory.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/mmc.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/ppu.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/ppu_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/ppu_new.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/ppu_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/ppu_new.h -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/fce/psg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/fce/psg.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/hal.c -------------------------------------------------------------------------------- /mps2_template/example/LiteNES/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/LiteNES/src/main.c -------------------------------------------------------------------------------- /mps2_template/example/RTE/Device/CMSDK_CM7_SP/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/RTE/Device/CMSDK_CM7_SP/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/example/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s -------------------------------------------------------------------------------- /mps2_template/example/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c -------------------------------------------------------------------------------- /mps2_template/example/RTE/_V2M-MPS2/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/RTE/_V2M-MPS2/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/GLCD_746G_Discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/GLCD_746G_Discovery.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/GLCD_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/GLCD_Config.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/GLCD_Fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/GLCD_Fonts.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/LCDConf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/LCDConf.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/LCD_X.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/LCD_X.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/bsp.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/STM32F746G-Discovery/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/STM32F746G-Discovery/bsp.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Abstract.txt -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.uvguix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.uvguix -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.uvoptx -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Blinky.uvprojx -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Dbg_MPS2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Dbg_MPS2.ini -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Dbg_Sim.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/Dbg_Sim.ini -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/MPS2_CS_ETB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/MPS2_CS_ETB.ini -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/MPS2_CS_TPIU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/MPS2_CS_TPIU.ini -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/RTE/Device/CMSDK_CM7_SP/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/RTE/Device/CMSDK_CM7_SP/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/stdout_USART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/Blinky/stdout_USART.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Abstract.txt -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.uvguix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.uvguix -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.uvoptx -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Blinky.uvprojx -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Dbg_MPS2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Dbg_MPS2.ini -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Dbg_Sim.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/Dbg_Sim.ini -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/CMSIS/RTX_Conf_CM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/CMSIS/RTX_Conf_CM.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/Device/CMSDK_CM7_SP/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/Device/CMSDK_CM7_SP/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/CMSDK_CM7_SP/RTX_Blinky/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/Buttons_V2M-MPS2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/Buttons_V2M-MPS2.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/Device.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/GLCD_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/GLCD_Config.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/GLCD_Fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/GLCD_Fonts.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/GLCD_V2M-MPS2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/GLCD_V2M-MPS2.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/LED_V2M-MPS2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/LED_V2M-MPS2.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/SMM_MPS2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/SMM_MPS2.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/Common/Touch_V2M-MPS2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/Common/Touch_V2M-MPS2.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/bsp.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS2/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS2/bsp.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS3/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS3/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS3/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS3/bsp.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/V2M-MPS3/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/V2M-MPS3/bsp.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/app_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/app_platform.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/app_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/app_platform.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/bsp.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/file_io.h -------------------------------------------------------------------------------- /mps2_template/example/app_platform/generic_io_lib_armv6-m_size.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/generic_io_lib_armv6-m_size.lib -------------------------------------------------------------------------------- /mps2_template/example/app_platform/generic_io_lib_armv6-m_speed.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/generic_io_lib_armv6-m_speed.lib -------------------------------------------------------------------------------- /mps2_template/example/app_platform/generic_io_lib_armv7-m_size.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/generic_io_lib_armv7-m_size.lib -------------------------------------------------------------------------------- /mps2_template/example/app_platform/generic_io_lib_armv7-m_speed.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/generic_io_lib_armv7-m_speed.lib -------------------------------------------------------------------------------- /mps2_template/example/app_platform/generic_io_stream.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/generic_io_stream.lib -------------------------------------------------------------------------------- /mps2_template/example/app_platform/stdout_USART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/stdout_USART.c -------------------------------------------------------------------------------- /mps2_template/example/app_platform/stdout_USART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/app_platform/stdout_USART.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Abstract.txt -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Blinky.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Blinky.sct -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Blinky.uvguix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Blinky.uvguix -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Blinky.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Blinky.uvoptx -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Blinky.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Blinky.uvprojx -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Dbg_MPS2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Dbg_MPS2.ini -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Dbg_Sim.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Dbg_Sim.ini -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/DebugConfig/STM32F746-Discovery_STM32F746NGHx_1.0.0.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/DebugConfig/STM32F746-Discovery_STM32F746NGHx_1.0.0.dbgconf -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/DebugConfig/STM32F746-Discovery_STM32F746NGHx_2.0.0.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/DebugConfig/STM32F746-Discovery_STM32F746NGHx_2.0.0.dbgconf -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/EventRecorderStub.scvd -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/FVP_cfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/FVP_cfg.txt -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/MPS2_CS_ETB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/MPS2_CS_ETB.ini -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/MPS2_CS_TPIU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/MPS2_CS_TPIU.ini -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/Out/ArInp.Scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/Out/ArInp.Scr -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/CMSDK_CM4_FP/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/CMSDK_CM4_FP/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/CMSDK_CM4_FP/startup_CMSDK_CM4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/CMSDK_CM4_FP/startup_CMSDK_CM4.s -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/CMSDK_CM4_FP/system_CMSDK_CM4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/CMSDK_CM4_FP/system_CMSDK_CM4.c -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/CMSDK_CM7_SP/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/CMSDK_CM7_SP/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/CMSDK_CM7_SP/startup_CMSDK_CM7.s -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/CMSDK_CM7_SP/system_CMSDK_CM7.c -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/startup_stm32f746xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/startup_stm32f746xx.s -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/stm32f7xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/stm32f7xx_hal_conf.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/system_stm32f7xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/STM32F746NGHx/system_stm32f7xx.c -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/Yamin/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/Yamin/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/Yamin/Yamin.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/Yamin/Yamin.sct -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/Yamin/partition_Yamin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/Yamin/partition_Yamin.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/Yamin/startup_Yamin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/Yamin/startup_Yamin.c -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/Device/Yamin/system_Yamin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/Device/Yamin/system_Yamin.c -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_STM32F746-Discovery-AC6/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_STM32F746-Discovery-AC6/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_STM32F746-Discovery-Lib/Pre_Include_Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_STM32F746-Discovery-Lib/Pre_Include_Global.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_STM32F746-Discovery-Lib/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_STM32F746-Discovery-Lib/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_STM32F746-Discovery/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_STM32F746-Discovery/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_V2M-MPS2-LiteNES/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_V2M-MPS2-LiteNES/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_V2M-MPS2-jeg/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_V2M-MPS2-jeg/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_V2M-MPS2/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_V2M-MPS2/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_V2M-MPS3-jeg/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_V2M-MPS3-jeg/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/RTE/_rom_lib/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/RTE/_rom_lib/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/STM32F746G_Discovery.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/build/mdk/STM32F746G_Discovery.sct -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/efsym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mps2_template/example/build/mdk/reboot.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mps2_template/example/jeg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/.gitignore -------------------------------------------------------------------------------- /mps2_template/example/jeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/LICENSE -------------------------------------------------------------------------------- /mps2_template/example/jeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/Makefile -------------------------------------------------------------------------------- /mps2_template/example/jeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/README.md -------------------------------------------------------------------------------- /mps2_template/example/jeg/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/benchmark.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/cartridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cartridge.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cartridge.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/common.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/cpu6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cpu6502.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/cpu6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cpu6502.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/cpu6502_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cpu6502_debug.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/cpu6502_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cpu6502_debug.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/cpu6502_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cpu6502_opcodes.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/cpu6502_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/cpu6502_opcodes.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/fce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/fce.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/fce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/fce.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/hal.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/jeg_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/jeg_cfg.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/nes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/nes.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/nes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/nes.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/ppu.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/ppu.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/ppu_pixel_based.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/ppu_pixel_based.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/klaus2m5/6502_functional_test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/klaus2m5/6502_functional_test.bin -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/klaus2m5/6502_functional_test.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/klaus2m5/6502_functional_test.lst -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/klaus2m5/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/klaus2m5/system.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/backwards_branch.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/backwards_branch.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/blargg_palette_ram.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/blargg_palette_ram.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/blargg_sprite_ram.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/blargg_sprite_ram.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/blargg_vbl_clear_time.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/blargg_vbl_clear_time.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/blargg_vram_access.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/blargg_vram_access.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/branch_basics.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/branch_basics.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/cpu_dummy_reads.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/cpu_dummy_reads.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/cpu_exec_space_ppuio.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/cpu_exec_space_ppuio.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/cpu_timing_test.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/cpu_timing_test.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/failing/blargg_nes_cpu_test5_cpu.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/failing/blargg_nes_cpu_test5_cpu.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/failing/blargg_nes_cpu_test5_official.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/failing/blargg_nes_cpu_test5_official.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/failing/cpu_dummy_writes_oam.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/failing/cpu_dummy_writes_oam.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/failing/cpu_dummy_writes_ppumem.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/failing/cpu_dummy_writes_ppumem.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/failing/ppu_vbl_nmi.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/failing/ppu_vbl_nmi.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/failing/ram_after_reset.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/failing/ram_after_reset.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/failing/registers.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/failing/registers.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/forward_branch.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/forward_branch.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/nestest.nes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/nestest.nes -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/readme.md -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/test.key -------------------------------------------------------------------------------- /mps2_template/example/jeg/test/nes_roms/test_roms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/test/nes_roms/test_roms.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/ui.c -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/SDL.dll -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/SDL2.dll -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_active.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_assert.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_atomic.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_audio.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_bits.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_blendmode.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_byteorder.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_cdrom.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_clipboard.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config.h.cmake -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config.h.in -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_android.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_macosx.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_minimal.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_pandora.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_psp.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_win32.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_windows.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_winrt.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_config_wiz.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_copying.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_egl.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_endian.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_error.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_events.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_filesystem.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_gamecontroller.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_gesture.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_getenv.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_haptic.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_hints.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_keycode.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_log.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_main.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_messagebox.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_name.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengl_glext.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengles.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengles2.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_pixels.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_platform.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_power.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_quit.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_rect.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_render.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_revision.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_scancode.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_shape.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_surface.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_system.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_assert.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_common.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_compare.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_crc32.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_font.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_harness.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_images.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_log.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_md5.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_memory.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_test_random.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_thread.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_timer.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_touch.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_types.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_version.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_video.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/SDL_vulkan.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/begin_code.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/include/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/include/SDL/close_code.h -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/libs/libSDL.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/libs/libSDL.dll.a -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/libs/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/libs/libSDL2.dll.a -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/libs/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/libs/libSDL2main.a -------------------------------------------------------------------------------- /mps2_template/example/jeg/windows/libs/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/jeg/windows/libs/libSDLmain.a -------------------------------------------------------------------------------- /mps2_template/example/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/example/system.c -------------------------------------------------------------------------------- /mps2_template/sources/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/default.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/gmsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/gmsi.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/gmsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/gmsi.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/bsp/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/bsp/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/bsp/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/bsp/bsp.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/bsp/bsp.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/bootloader/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/bootloader/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/bootloader/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/bootloader/bootloader.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/bootloader/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/bootloader/bootloader.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/component.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/component.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/key/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/key/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/key/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/key/key.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/key/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/key/key.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/key/key_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/key/key_interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/key/key_queue/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/key/key_queue/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/key/key_queue/key_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/key/key_queue/key_queue.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/key/key_queue/key_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/key/key_queue/key_queue.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/mal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/mal.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/mal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/mal.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/sdf_w25qxxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/sdf_w25qxxx.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/sdf_w25qxxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sdf_w25qxxx/sdf_w25qxxx.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sram/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sram/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sram/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sram/interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sram/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sram/sram.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/mal/sram/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/mal/sram/sram.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/memory.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/page/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/page/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/page/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/page/interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/page/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/page/page.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/memory/page/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/memory/page/page.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/sw_sdio/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/sw_sdio/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/sw_sdio/sw_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/sw_sdio/sw_sdio.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/component/sw_sdio/sw_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/component/sw_sdio/sw_sdio.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/hal.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/hal/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/hal/hal.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/communication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/communication.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/crc/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/crc/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/crc/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/crc/crc.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/crc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/crc/crc.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/crc/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/crc/crc16.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/crc/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/crc/crc32.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/crc/crc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/crc/crc7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/crc/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/crc/crc8.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/es_simple_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/es_simple_frame.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/es_simple_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/es_simple_frame.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/AdapterTester.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/AdapterTester.exe -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/ESDevice.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/ESDevice.dll -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/ESUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/ESUtilities.dll -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/HIDAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/HIDAdapter.dll -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/SerialPortAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/es_simple_frame/tools/SerialPortAdapter.dll -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/frame.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/frame/iframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/frame/iframe.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/telegraph_engine/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/telegraph_engine/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/telegraph_engine/telegraph_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/telegraph_engine/telegraph_engine.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/telegraph_engine/telegraph_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/telegraph_engine/telegraph_engine.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/xmodem/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/xmodem/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/xmodem/xmodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/xmodem/xmodem.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/communication/xmodem/xmodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/communication/xmodem/xmodem.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/encryption/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/encryption/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/encryption/encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/encryption/encryption.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/encryption/random/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/encryption/random/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/encryption/random/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/encryption/random/random.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/encryption/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/encryption/random/random.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/gui.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/grid/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/grid/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/grid/example.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/grid/example.lib -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/grid/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/grid/grid.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/grid/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/grid/grid.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/grid/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/grid/interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/interface.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/tgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/tgui.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/gui/tgui/tgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/gui/tgui/tgui.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/block/__class_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/block/__class_block.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/block/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/block/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/block/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/block/block.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/block/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/block/block.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/block_queue/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/block_queue/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/block_queue/block_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/block_queue/block_queue.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/block_queue/block_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/block_queue/block_queue.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/epool/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/epool/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/epool/epool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/epool/epool.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/epool/epool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/epool/epool.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/memory.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/memory.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/stream2block/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/stream2block/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/stream2block/stream2block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/stream2block/stream2block.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/memory/stream2block/stream2block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/memory/stream2block/stream2block.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/scheduler/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/scheduler/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/scheduler/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/scheduler/scheduler.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/scheduler/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/scheduler/scheduler.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/scheduler/scheduler_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/scheduler/scheduler_internal.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/scheduler/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/scheduler/shell.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/scheduler/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/scheduler/task.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/scheduler/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/scheduler/task.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/service.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/service.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/time/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/time/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/time/multiple_delay/app_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/time/multiple_delay/app_cfg.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/time/multiple_delay/multiple_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/time/multiple_delay/multiple_delay.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/time/multiple_delay/multiple_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/time/multiple_delay/multiple_delay.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/time/time.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/service/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/service/time/time.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/LICENSE -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/README.md -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/README.md -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/byte_queue/byte_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/byte_queue/byte_queue.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/byte_queue/byte_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/byte_queue/byte_queue.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/enhanced_byte_queue/enhanced_byte_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/enhanced_byte_queue/enhanced_byte_queue.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/enhanced_byte_queue/enhanced_byte_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/enhanced_byte_queue/enhanced_byte_queue.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/picture/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/picture/example3.png -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/main.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/EventRecorderStub.scvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/EventRecorderStub.scvd -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/Device/CMSDK_CM3/RTE_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/Device/CMSDK_CM3/RTE_Device.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/Device/CMSDK_CM3/startup_CMSDK_CM3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/Device/CMSDK_CM3/startup_CMSDK_CM3.s -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/Device/CMSDK_CM3/system_CMSDK_CM3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/Device/CMSDK_CM3/system_CMSDK_CM3.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/_Target_1/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/_Target_1/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/_arm_compiler_6_example/RTE_Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/RTE/_arm_compiler_6_example/RTE_Components.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/platform.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/platform.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/plooc_example.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/plooc_example.uvoptx -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/plooc_example.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/project/mdk/plooc_example.uvprojx -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/trace/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/trace/trace.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/trace/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/example/trace/trace.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_black_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_black_box.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_simple.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_simple_c90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_simple_c90.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_strict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_strict.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_strict_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/3rd-party/PLOOC/plooc_class_strict_old.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/app_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/app_type.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_armclang_ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_armclang_ltm.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/cmsis_version.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_armv81mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_armv81mml.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_armv8mbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_armv8mbl.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_armv8mml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_armv8mml.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm0.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm0plus.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm1.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm23.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm3.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm33.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm35p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm35p.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm4.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_cm7.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_sc000.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/core_sc300.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/mpu_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/mpu_armv7.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/mpu_armv8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/mpu_armv8.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/tz_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Include/tz_context.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Template/ARMv8-M/main_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Template/ARMv8-M/main_s.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Template/ARMv8-M/tz_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core/Template/ARMv8-M/tz_context.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_armclang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_armclang.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_compiler.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_cp15.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/cmsis_iccarm.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/core_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/core_ca.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/irq_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Include/irq_ctrl.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Source/irq_ctrl_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/Core_A/Source/irq_ctrl_gic.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/DSP/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/DSP/Include/arm_common_tables.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/DSP/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/DSP/Include/arm_const_structs.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/DSP/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/DSP/Include/arm_math.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Include/arm_nn_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Include/arm_nn_tables.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Include/arm_nnfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Include/arm_nnfunctions.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Include/arm_nnsupportfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Include/arm_nnsupportfunctions.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Scripts/NNFunctions/fully_connected_opt_weight_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Scripts/NNFunctions/fully_connected_opt_weight_generation.py -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Scripts/NNFunctions/table_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Scripts/NNFunctions/table_gen.py -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/CMakeLists.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_nn_activations_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_nn_activations_q15.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_nn_activations_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_nn_activations_q7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_relu_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_relu_q15.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_relu_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ActivationFunctions/arm_relu_q7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/CMakeLists.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/CMakeLists.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_1x1_HWC_q7_fast_nonsquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_1x1_HWC_q7_fast_nonsquare.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_basic.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_fast.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_fast_nonsquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q15_fast_nonsquare.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_RGB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_RGB.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_basic.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_basic_nonsquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_basic_nonsquare.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_fast.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_fast_nonsquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_HWC_q7_fast_nonsquare.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_convolve_s8.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_conv_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_conv_s8.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_conv_u8_basic_ver1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_conv_u8_basic_ver1.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_separable_conv_HWC_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_separable_conv_HWC_q7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_separable_conv_HWC_q7_nonsquare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_depthwise_separable_conv_HWC_q7_nonsquare.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_q7_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_q7_q15.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_q7_q15_reordered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_q7_q15_reordered.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_s8_s16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/ConvolutionFunctions/arm_nn_mat_mult_kernel_s8_s16.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/CMakeLists.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_mat_q7_vec_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_mat_q7_vec_q15.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_mat_q7_vec_q15_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_mat_q7_vec_q15_opt.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q15.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q15_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q15_opt.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q7_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_q7_opt.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_s8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/FullyConnectedFunctions/arm_fully_connected_s8.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/CMakeLists.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nn_add_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nn_add_q7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nn_mult_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nn_mult_q15.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nn_mult_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nn_mult_q7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nntables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_nntables.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_q7_to_q15_no_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_q7_to_q15_no_shift.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_q7_to_q15_reordered_no_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_q7_to_q15_reordered_no_shift.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_q7_to_q15_with_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/NNSupportFunctions/arm_q7_to_q15_with_offset.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/PoolingFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/PoolingFunctions/CMakeLists.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/PoolingFunctions/arm_pool_q7_HWC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/PoolingFunctions/arm_pool_q7_HWC.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/SoftmaxFunctions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/SoftmaxFunctions/CMakeLists.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_q15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_q15.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_q7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/NN/Source/SoftmaxFunctions/arm_softmax_q7.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/CMSIS/readme_patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/CMSIS/readme_patch.txt -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/arm_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/arm_compiler.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/signal.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/arm/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/arm/signal.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/avr/app_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/avr/app_type.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/avr/avr_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/avr/avr_compiler.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/avr/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/avr/signal.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/communicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/communicate.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/compiler.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/delegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/delegate.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/delegate.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/error.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/ooc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/ooc.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/preprocessor/mrepeat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/preprocessor/mrepeat.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/preprocessor/preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/preprocessor/preprocessor.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/preprocessor/stringz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/preprocessor/stringz.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/preprocessor/tpaste.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/preprocessor/tpaste.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/simple_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/simple_fsm.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/template/t_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/template/t_list.c -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/template/t_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/template/t_list.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/template/t_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/template/t_pool.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/template/t_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/template/t_queue.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/template/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/template/template.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/tiny_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/tiny_fsm.h -------------------------------------------------------------------------------- /mps2_template/sources/gmsi/utilities/usebits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/mps2_template/sources/gmsi/utilities/usebits.h -------------------------------------------------------------------------------- /tools/ESDevice.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/ESDevice.dll -------------------------------------------------------------------------------- /tools/ESUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/ESUtilities.dll -------------------------------------------------------------------------------- /tools/IOStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/IOStream.dll -------------------------------------------------------------------------------- /tools/IOStreamAgent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/IOStreamAgent.exe -------------------------------------------------------------------------------- /tools/SerialPortAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/SerialPortAdapter.dll -------------------------------------------------------------------------------- /tools/TCPClientAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/TCPClientAdapter.dll -------------------------------------------------------------------------------- /tools/launch_serial_port.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/launch_serial_port.bat -------------------------------------------------------------------------------- /tools/launch_tcpclient.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GorgonMeducer/EmbeddedNES/HEAD/tools/launch_tcpclient.bat --------------------------------------------------------------------------------