├── .gitignore ├── LICENSE ├── PC_8086 ├── hxcmod.com ├── hxcmod.lk1 ├── hxcmod.mk ├── hxcmod.mk1 ├── hxcmod.tgt ├── hxcmod.wpj ├── mod_emax_delicate_oooz.c ├── mod_inco-byggsats13.c ├── modplay_i8086.c ├── sb_io.asm └── sb_io.h ├── STM32 ├── STM32F105 │ ├── .mxproject │ ├── Drivers │ │ ├── CMSIS │ │ │ ├── Device │ │ │ │ └── ST │ │ │ │ │ └── STM32F1xx │ │ │ │ │ └── Include │ │ │ │ │ ├── stm32f105xc.h │ │ │ │ │ ├── stm32f1xx.h │ │ │ │ │ └── system_stm32f1xx.h │ │ │ └── Include │ │ │ │ ├── arm_common_tables.h │ │ │ │ ├── arm_const_structs.h │ │ │ │ ├── arm_math.h │ │ │ │ ├── cmsis_armcc.h │ │ │ │ ├── cmsis_armcc_V6.h │ │ │ │ ├── cmsis_gcc.h │ │ │ │ ├── core_cm0.h │ │ │ │ ├── core_cm0plus.h │ │ │ │ ├── core_cm3.h │ │ │ │ ├── core_cm4.h │ │ │ │ ├── core_cm7.h │ │ │ │ ├── core_cmFunc.h │ │ │ │ ├── core_cmInstr.h │ │ │ │ ├── core_cmSimd.h │ │ │ │ ├── core_sc000.h │ │ │ │ └── core_sc300.h │ │ └── STM32F1xx_HAL_Driver │ │ │ ├── Inc │ │ │ ├── Legacy │ │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f1xx_hal.h │ │ │ ├── stm32f1xx_hal_cortex.h │ │ │ ├── stm32f1xx_hal_dac.h │ │ │ ├── stm32f1xx_hal_dac_ex.h │ │ │ ├── stm32f1xx_hal_def.h │ │ │ ├── stm32f1xx_hal_dma.h │ │ │ ├── stm32f1xx_hal_dma_ex.h │ │ │ ├── stm32f1xx_hal_flash.h │ │ │ ├── stm32f1xx_hal_flash_ex.h │ │ │ ├── stm32f1xx_hal_gpio.h │ │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ │ ├── stm32f1xx_hal_pwr.h │ │ │ ├── stm32f1xx_hal_rcc.h │ │ │ ├── stm32f1xx_hal_rcc_ex.h │ │ │ ├── stm32f1xx_hal_tim.h │ │ │ ├── stm32f1xx_hal_tim_ex.h │ │ │ └── stm32f1xx_hal_uart.h │ │ │ └── Src │ │ │ ├── stm32f1xx_hal.c │ │ │ ├── stm32f1xx_hal_cortex.c │ │ │ ├── stm32f1xx_hal_dac.c │ │ │ ├── stm32f1xx_hal_dac_ex.c │ │ │ ├── stm32f1xx_hal_dma.c │ │ │ ├── stm32f1xx_hal_flash.c │ │ │ ├── stm32f1xx_hal_flash_ex.c │ │ │ ├── stm32f1xx_hal_gpio.c │ │ │ ├── stm32f1xx_hal_gpio_ex.c │ │ │ ├── stm32f1xx_hal_pwr.c │ │ │ ├── stm32f1xx_hal_rcc.c │ │ │ ├── stm32f1xx_hal_rcc_ex.c │ │ │ ├── stm32f1xx_hal_tim.c │ │ │ ├── stm32f1xx_hal_tim_ex.c │ │ │ └── stm32f1xx_hal_uart.c │ ├── HxCModPlayer_STM32F105.ioc │ ├── Inc │ │ ├── main.h │ │ ├── stm32f1xx_hal_conf.h │ │ └── stm32f1xx_it.h │ ├── Makefile │ ├── STM32F105RBTx_FLASH.ld │ ├── Src │ │ ├── gotek_display.c │ │ ├── gotek_display.h │ │ ├── main.c │ │ ├── mod_data.c │ │ ├── print.c │ │ ├── print.h │ │ ├── stm32f1xx_hal_msp.c │ │ ├── stm32f1xx_it.c │ │ └── system_stm32f1xx.c │ ├── build │ │ └── HxCModPlayer_STM32F105.bin │ ├── mx.scratch │ └── startup_stm32f105xc.s └── STM32F1XX │ ├── Docs │ └── delta_sigma_hardware_principle.png │ ├── Inc │ ├── buildconf.h │ ├── custom_buildconf.h │ ├── fast_delta_sigma_dac_gen.h │ └── hw_init_table.h │ ├── Makefile │ ├── ST_headers │ ├── CMSIS │ │ ├── Device │ │ │ └── ST │ │ │ │ └── STM32F1xx │ │ │ │ └── Include │ │ │ │ ├── stm32f100xb.h │ │ │ │ ├── stm32f100xe.h │ │ │ │ ├── stm32f101x6.h │ │ │ │ ├── stm32f101xb.h │ │ │ │ ├── stm32f101xe.h │ │ │ │ ├── stm32f101xg.h │ │ │ │ ├── stm32f102x6.h │ │ │ │ ├── stm32f102xb.h │ │ │ │ ├── stm32f103x6.h │ │ │ │ ├── stm32f103xb.h │ │ │ │ ├── stm32f103xe.h │ │ │ │ ├── stm32f103xg.h │ │ │ │ ├── stm32f105xc.h │ │ │ │ ├── stm32f107xc.h │ │ │ │ ├── stm32f1xx.h │ │ │ │ └── system_stm32f1xx.h │ │ └── Include │ │ │ ├── arm_common_tables.h │ │ │ ├── arm_const_structs.h │ │ │ ├── arm_math.h │ │ │ ├── core_cm0.h │ │ │ ├── core_cm0plus.h │ │ │ ├── core_cm3.h │ │ │ ├── core_cm4.h │ │ │ ├── core_cm7.h │ │ │ ├── core_cmFunc.h │ │ │ ├── core_cmInstr.h │ │ │ ├── core_cmSimd.h │ │ │ ├── core_sc000.h │ │ │ └── core_sc300.h │ ├── STM32F1xx_HAL_Driver │ │ └── Inc │ │ │ ├── Legacy │ │ │ └── stm32_hal_legacy.h │ │ │ ├── stm32f1xx_hal.h │ │ │ ├── stm32f1xx_hal_cortex.h │ │ │ ├── stm32f1xx_hal_def.h │ │ │ ├── stm32f1xx_hal_dma.h │ │ │ ├── stm32f1xx_hal_dma_ex.h │ │ │ ├── stm32f1xx_hal_flash.h │ │ │ ├── stm32f1xx_hal_flash_ex.h │ │ │ ├── stm32f1xx_hal_gpio.h │ │ │ ├── stm32f1xx_hal_gpio_ex.h │ │ │ ├── stm32f1xx_hal_pwr.h │ │ │ ├── stm32f1xx_hal_rcc.h │ │ │ └── stm32f1xx_hal_rcc_ex.h │ ├── mini_stm32f1xx_defs.h │ └── stm32f1xx_hal_conf.h │ ├── Src │ ├── arm-gcc-link.ld │ ├── fast_delta_sigma_gen.s │ ├── hw_init_data.c │ ├── hw_init_table.c │ ├── main.c │ └── startup_stm32f1xx.s │ ├── mods │ ├── ALPHAVIL.mod │ ├── Cybernoid_2.mod │ ├── JustSpankIt.mod │ ├── MIDNIGHT_EXPRESS_slo.mod │ ├── Storm_Music.mod │ ├── hybris-ingame.mod │ ├── impact14.mod │ ├── impact20.mod │ ├── jazz-nuseup42.mod │ ├── mattis-gonnas_kill_you.mod │ ├── mattis-lowsi_jeti_maah.mod │ ├── meo-sleeping_waste.mod │ ├── millivanilli2.mod │ ├── nao-gabber_astro.mod │ ├── rez-r0t0f3ul.mod │ └── spiritmx.mod │ ├── prebuilt_test_fw │ └── STM32_HxCMOD_Prebuilt_Test_Firmwares.7z │ ├── readme.txt │ └── tools │ ├── Makefile │ └── hw_init_table_gen.c ├── data_files ├── buildh.bat ├── cartoon-dreams_n_fantasies.mod ├── data_bmp_font8x8_bmp.h ├── data_cartoon_dreams_n_fantasies_mod.h └── font8x8.bmp ├── framegenerator.c ├── framegenerator.h ├── gen_tables.c ├── hxcmod.c ├── hxcmod.h ├── js_emscripten ├── Makefile ├── generate_html.c ├── js_hxcmod_player.c ├── page_layout.html └── www │ ├── hxcmod.css │ ├── index.html │ ├── js_hxcmod_player_asmjs.js │ ├── js_hxcmod_player_wasm.js │ ├── js_hxcmod_player_wasm.wasm │ ├── mods │ ├── ASM94.MOD │ ├── BUD.MOD │ ├── CITRON.MOD │ ├── DOPE.MOD │ ├── PINILL-PRESENT.MOD │ ├── Pro_BMX_Simulator.mod │ ├── SUPERLM.MOD │ ├── clawz-fastAndfriendly.mod │ ├── dr_awesome-intro_music3.mod │ ├── emax-delicate_oooz.mod │ ├── estrayk-her6.mod │ ├── estrayk-horizon.mod │ ├── estrayk-hybris-ingame.mod │ ├── jason-shortness.mod │ ├── jazz-nuseup42.mod │ ├── juice-the_rising_sun.mod │ ├── lunatic.mod │ ├── maktone-class6.mod │ ├── maktone-class_cracktro15.mod │ ├── maktone-the_crazy_dentist.mod │ ├── man_s_mi.mod │ ├── mattis-gonnas_kill_you.mod │ ├── mattis-lowsi_jeti_maah.mod │ ├── melodee-laxity.mod │ ├── menumus3.mod │ ├── meo-sleeping_waste.mod │ ├── mr_death-red_velvet.mod │ ├── nao-deceased_by_disease.mod │ ├── nao-gabber_astro.mod │ ├── nao-glamour4u.mod │ ├── nugget-highspeed.mod │ ├── overload.mod │ ├── reflex-spotlights.mod │ ├── reflex-tiny_diny.mod │ ├── rez-bubble_toast_score.mod │ ├── rez-delta.mod │ ├── rez-gigi.mod │ ├── rez-kenzalol.mod │ ├── rez-monday.mod │ ├── rez-r0t0f3ul.mod │ ├── rez-the_no_named.mod │ └── stargazer-chip2.mod │ ├── play.png │ └── webaudio_layer.js ├── packer ├── lzw.c ├── lzw.h ├── pack.c ├── pack.h ├── rle.c └── rle.h ├── readme.txt ├── sdl ├── Makefile └── hxcmodplayer.c └── win32 ├── Release └── hxcmodplayer.exe ├── appliicon.ico ├── avi_utils.c ├── avi_utils.h ├── fileselector.c ├── fileselector.h ├── generateModAvi.c ├── generateModAvi.h ├── hxcmodplayer.c ├── hxcmodplayer.dsp ├── hxcmodplayer.dsw ├── hxcmodplayer.rc ├── resource.h └── stdint.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /PC_8086/hxcmod.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/hxcmod.com -------------------------------------------------------------------------------- /PC_8086/hxcmod.lk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/hxcmod.lk1 -------------------------------------------------------------------------------- /PC_8086/hxcmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/hxcmod.mk -------------------------------------------------------------------------------- /PC_8086/hxcmod.mk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/hxcmod.mk1 -------------------------------------------------------------------------------- /PC_8086/hxcmod.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/hxcmod.tgt -------------------------------------------------------------------------------- /PC_8086/hxcmod.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/hxcmod.wpj -------------------------------------------------------------------------------- /PC_8086/mod_emax_delicate_oooz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/mod_emax_delicate_oooz.c -------------------------------------------------------------------------------- /PC_8086/mod_inco-byggsats13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/mod_inco-byggsats13.c -------------------------------------------------------------------------------- /PC_8086/modplay_i8086.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/modplay_i8086.c -------------------------------------------------------------------------------- /PC_8086/sb_io.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/sb_io.asm -------------------------------------------------------------------------------- /PC_8086/sb_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/PC_8086/sb_io.h -------------------------------------------------------------------------------- /STM32/STM32F105/.mxproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/.mxproject -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f105xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f105xc.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/cmsis_armcc.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/cmsis_armcc_V6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/cmsis_armcc_V6.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/cmsis_gcc.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dac.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dac_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dac_ex.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dac.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dac_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dac_ex.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c -------------------------------------------------------------------------------- /STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c -------------------------------------------------------------------------------- /STM32/STM32F105/HxCModPlayer_STM32F105.ioc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/HxCModPlayer_STM32F105.ioc -------------------------------------------------------------------------------- /STM32/STM32F105/Inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Inc/main.h -------------------------------------------------------------------------------- /STM32/STM32F105/Inc/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Inc/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /STM32/STM32F105/Inc/stm32f1xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Inc/stm32f1xx_it.h -------------------------------------------------------------------------------- /STM32/STM32F105/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Makefile -------------------------------------------------------------------------------- /STM32/STM32F105/STM32F105RBTx_FLASH.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/STM32F105RBTx_FLASH.ld -------------------------------------------------------------------------------- /STM32/STM32F105/Src/gotek_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/gotek_display.c -------------------------------------------------------------------------------- /STM32/STM32F105/Src/gotek_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/gotek_display.h -------------------------------------------------------------------------------- /STM32/STM32F105/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/main.c -------------------------------------------------------------------------------- /STM32/STM32F105/Src/mod_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/mod_data.c -------------------------------------------------------------------------------- /STM32/STM32F105/Src/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/print.c -------------------------------------------------------------------------------- /STM32/STM32F105/Src/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/print.h -------------------------------------------------------------------------------- /STM32/STM32F105/Src/stm32f1xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/stm32f1xx_hal_msp.c -------------------------------------------------------------------------------- /STM32/STM32F105/Src/stm32f1xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/stm32f1xx_it.c -------------------------------------------------------------------------------- /STM32/STM32F105/Src/system_stm32f1xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/Src/system_stm32f1xx.c -------------------------------------------------------------------------------- /STM32/STM32F105/build/HxCModPlayer_STM32F105.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/build/HxCModPlayer_STM32F105.bin -------------------------------------------------------------------------------- /STM32/STM32F105/mx.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/mx.scratch -------------------------------------------------------------------------------- /STM32/STM32F105/startup_stm32f105xc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F105/startup_stm32f105xc.s -------------------------------------------------------------------------------- /STM32/STM32F1XX/Docs/delta_sigma_hardware_principle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Docs/delta_sigma_hardware_principle.png -------------------------------------------------------------------------------- /STM32/STM32F1XX/Inc/buildconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Inc/buildconf.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/Inc/custom_buildconf.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /STM32/STM32F1XX/Inc/fast_delta_sigma_dac_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Inc/fast_delta_sigma_dac_gen.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/Inc/hw_init_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Inc/hw_init_table.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Makefile -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xb.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f100xe.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101x6.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xb.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xe.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f101xg.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102x6.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f102xb.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103x6.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xe.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xg.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f105xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f105xc.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f107xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f107xc.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/arm_common_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/arm_common_tables.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/arm_const_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/arm_const_structs.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/arm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/arm_math.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm0.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm0plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm0plus.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm3.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm4.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cm7.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cmFunc.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cmInstr.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_cmSimd.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_sc000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_sc000.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/CMSIS/Include/core_sc300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/CMSIS/Include/core_sc300.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/mini_stm32f1xx_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/mini_stm32f1xx_defs.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/ST_headers/stm32f1xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/ST_headers/stm32f1xx_hal_conf.h -------------------------------------------------------------------------------- /STM32/STM32F1XX/Src/arm-gcc-link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Src/arm-gcc-link.ld -------------------------------------------------------------------------------- /STM32/STM32F1XX/Src/fast_delta_sigma_gen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Src/fast_delta_sigma_gen.s -------------------------------------------------------------------------------- /STM32/STM32F1XX/Src/hw_init_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Src/hw_init_data.c -------------------------------------------------------------------------------- /STM32/STM32F1XX/Src/hw_init_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Src/hw_init_table.c -------------------------------------------------------------------------------- /STM32/STM32F1XX/Src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Src/main.c -------------------------------------------------------------------------------- /STM32/STM32F1XX/Src/startup_stm32f1xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/Src/startup_stm32f1xx.s -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/ALPHAVIL.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/ALPHAVIL.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/Cybernoid_2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/Cybernoid_2.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/JustSpankIt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/JustSpankIt.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/MIDNIGHT_EXPRESS_slo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/MIDNIGHT_EXPRESS_slo.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/Storm_Music.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/Storm_Music.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/hybris-ingame.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/hybris-ingame.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/impact14.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/impact14.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/impact20.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/impact20.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/jazz-nuseup42.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/jazz-nuseup42.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/mattis-gonnas_kill_you.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/mattis-gonnas_kill_you.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/mattis-lowsi_jeti_maah.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/mattis-lowsi_jeti_maah.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/meo-sleeping_waste.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/meo-sleeping_waste.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/millivanilli2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/millivanilli2.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/nao-gabber_astro.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/nao-gabber_astro.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/rez-r0t0f3ul.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/rez-r0t0f3ul.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/mods/spiritmx.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/mods/spiritmx.mod -------------------------------------------------------------------------------- /STM32/STM32F1XX/prebuilt_test_fw/STM32_HxCMOD_Prebuilt_Test_Firmwares.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/prebuilt_test_fw/STM32_HxCMOD_Prebuilt_Test_Firmwares.7z -------------------------------------------------------------------------------- /STM32/STM32F1XX/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/readme.txt -------------------------------------------------------------------------------- /STM32/STM32F1XX/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/tools/Makefile -------------------------------------------------------------------------------- /STM32/STM32F1XX/tools/hw_init_table_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/STM32/STM32F1XX/tools/hw_init_table_gen.c -------------------------------------------------------------------------------- /data_files/buildh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/data_files/buildh.bat -------------------------------------------------------------------------------- /data_files/cartoon-dreams_n_fantasies.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/data_files/cartoon-dreams_n_fantasies.mod -------------------------------------------------------------------------------- /data_files/data_bmp_font8x8_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/data_files/data_bmp_font8x8_bmp.h -------------------------------------------------------------------------------- /data_files/data_cartoon_dreams_n_fantasies_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/data_files/data_cartoon_dreams_n_fantasies_mod.h -------------------------------------------------------------------------------- /data_files/font8x8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/data_files/font8x8.bmp -------------------------------------------------------------------------------- /framegenerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/framegenerator.c -------------------------------------------------------------------------------- /framegenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/framegenerator.h -------------------------------------------------------------------------------- /gen_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/gen_tables.c -------------------------------------------------------------------------------- /hxcmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/hxcmod.c -------------------------------------------------------------------------------- /hxcmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/hxcmod.h -------------------------------------------------------------------------------- /js_emscripten/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/Makefile -------------------------------------------------------------------------------- /js_emscripten/generate_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/generate_html.c -------------------------------------------------------------------------------- /js_emscripten/js_hxcmod_player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/js_hxcmod_player.c -------------------------------------------------------------------------------- /js_emscripten/page_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/page_layout.html -------------------------------------------------------------------------------- /js_emscripten/www/hxcmod.css: -------------------------------------------------------------------------------- 1 | .playzone:hover { 2 | text-decoration: underline; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /js_emscripten/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/index.html -------------------------------------------------------------------------------- /js_emscripten/www/js_hxcmod_player_asmjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/js_hxcmod_player_asmjs.js -------------------------------------------------------------------------------- /js_emscripten/www/js_hxcmod_player_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/js_hxcmod_player_wasm.js -------------------------------------------------------------------------------- /js_emscripten/www/js_hxcmod_player_wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/js_hxcmod_player_wasm.wasm -------------------------------------------------------------------------------- /js_emscripten/www/mods/ASM94.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/ASM94.MOD -------------------------------------------------------------------------------- /js_emscripten/www/mods/BUD.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/BUD.MOD -------------------------------------------------------------------------------- /js_emscripten/www/mods/CITRON.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/CITRON.MOD -------------------------------------------------------------------------------- /js_emscripten/www/mods/DOPE.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/DOPE.MOD -------------------------------------------------------------------------------- /js_emscripten/www/mods/PINILL-PRESENT.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/PINILL-PRESENT.MOD -------------------------------------------------------------------------------- /js_emscripten/www/mods/Pro_BMX_Simulator.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/Pro_BMX_Simulator.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/SUPERLM.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/SUPERLM.MOD -------------------------------------------------------------------------------- /js_emscripten/www/mods/clawz-fastAndfriendly.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/clawz-fastAndfriendly.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/dr_awesome-intro_music3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/dr_awesome-intro_music3.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/emax-delicate_oooz.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/emax-delicate_oooz.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/estrayk-her6.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/estrayk-her6.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/estrayk-horizon.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/estrayk-horizon.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/estrayk-hybris-ingame.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/estrayk-hybris-ingame.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/jason-shortness.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/jason-shortness.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/jazz-nuseup42.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/jazz-nuseup42.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/juice-the_rising_sun.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/juice-the_rising_sun.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/lunatic.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/lunatic.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/maktone-class6.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/maktone-class6.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/maktone-class_cracktro15.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/maktone-class_cracktro15.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/maktone-the_crazy_dentist.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/maktone-the_crazy_dentist.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/man_s_mi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/man_s_mi.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/mattis-gonnas_kill_you.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/mattis-gonnas_kill_you.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/mattis-lowsi_jeti_maah.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/mattis-lowsi_jeti_maah.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/melodee-laxity.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/melodee-laxity.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/menumus3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/menumus3.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/meo-sleeping_waste.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/meo-sleeping_waste.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/mr_death-red_velvet.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/mr_death-red_velvet.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/nao-deceased_by_disease.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/nao-deceased_by_disease.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/nao-gabber_astro.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/nao-gabber_astro.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/nao-glamour4u.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/nao-glamour4u.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/nugget-highspeed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/nugget-highspeed.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/overload.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/overload.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/reflex-spotlights.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/reflex-spotlights.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/reflex-tiny_diny.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/reflex-tiny_diny.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/rez-bubble_toast_score.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/rez-bubble_toast_score.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/rez-delta.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/rez-delta.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/rez-gigi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/rez-gigi.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/rez-kenzalol.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/rez-kenzalol.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/rez-monday.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/rez-monday.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/rez-r0t0f3ul.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/rez-r0t0f3ul.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/rez-the_no_named.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/rez-the_no_named.mod -------------------------------------------------------------------------------- /js_emscripten/www/mods/stargazer-chip2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/mods/stargazer-chip2.mod -------------------------------------------------------------------------------- /js_emscripten/www/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/play.png -------------------------------------------------------------------------------- /js_emscripten/www/webaudio_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/js_emscripten/www/webaudio_layer.js -------------------------------------------------------------------------------- /packer/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/packer/lzw.c -------------------------------------------------------------------------------- /packer/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/packer/lzw.h -------------------------------------------------------------------------------- /packer/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/packer/pack.c -------------------------------------------------------------------------------- /packer/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/packer/pack.h -------------------------------------------------------------------------------- /packer/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/packer/rle.c -------------------------------------------------------------------------------- /packer/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/packer/rle.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/readme.txt -------------------------------------------------------------------------------- /sdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/sdl/Makefile -------------------------------------------------------------------------------- /sdl/hxcmodplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/sdl/hxcmodplayer.c -------------------------------------------------------------------------------- /win32/Release/hxcmodplayer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/Release/hxcmodplayer.exe -------------------------------------------------------------------------------- /win32/appliicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/appliicon.ico -------------------------------------------------------------------------------- /win32/avi_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/avi_utils.c -------------------------------------------------------------------------------- /win32/avi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/avi_utils.h -------------------------------------------------------------------------------- /win32/fileselector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/fileselector.c -------------------------------------------------------------------------------- /win32/fileselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/fileselector.h -------------------------------------------------------------------------------- /win32/generateModAvi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/generateModAvi.c -------------------------------------------------------------------------------- /win32/generateModAvi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/generateModAvi.h -------------------------------------------------------------------------------- /win32/hxcmodplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/hxcmodplayer.c -------------------------------------------------------------------------------- /win32/hxcmodplayer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/hxcmodplayer.dsp -------------------------------------------------------------------------------- /win32/hxcmodplayer.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/hxcmodplayer.dsw -------------------------------------------------------------------------------- /win32/hxcmodplayer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/hxcmodplayer.rc -------------------------------------------------------------------------------- /win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/resource.h -------------------------------------------------------------------------------- /win32/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfdelnero/HxCModPlayer/HEAD/win32/stdint.h --------------------------------------------------------------------------------