├── .github └── workflows │ └── main.yml ├── .gitignore ├── .versionrc.js ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── commitlint.config.js ├── docs ├── bc_s.png ├── bdwn.png ├── closed.png ├── dir_d44c64559bbebec7f509842c48db8b23.html ├── doc.png ├── doxygen.css ├── doxygen.svg ├── dynsections.js ├── err__def_8h.html ├── err__def_8h_source.html ├── files.html ├── folderclosed.png ├── folderopen.png ├── gba__eeprom_8h.html ├── gba__eeprom_8h_source.html ├── gba__flash_8h.html ├── gba__flash_8h_source.html ├── gba__sram_8h.html ├── gba__sram_8h_source.html ├── globals.html ├── globals_enum.html ├── globals_eval.html ├── globals_func.html ├── globals_vars.html ├── index.html ├── jquery.js ├── menu.js ├── menudata.js ├── nav_f.png ├── nav_g.png ├── nav_h.png ├── open.png ├── search │ ├── all_0.html │ ├── all_0.js │ ├── all_1.html │ ├── all_1.js │ ├── all_2.html │ ├── all_2.js │ ├── all_3.html │ ├── all_3.js │ ├── close.svg │ ├── enums_0.html │ ├── enums_0.js │ ├── enums_1.html │ ├── enums_1.js │ ├── enumvalues_0.html │ ├── enumvalues_0.js │ ├── enumvalues_1.html │ ├── enumvalues_1.js │ ├── files_0.html │ ├── files_0.js │ ├── files_1.html │ ├── files_1.js │ ├── functions_0.html │ ├── functions_0.js │ ├── functions_1.html │ ├── functions_1.js │ ├── functions_2.html │ ├── functions_2.js │ ├── mag_sel.svg │ ├── nomatches.html │ ├── search.css │ ├── search.js │ ├── search_l.png │ ├── search_m.png │ ├── search_r.png │ ├── searchdata.js │ ├── variables_0.html │ └── variables_0.js ├── splitbar.png ├── sync_off.png ├── sync_on.png ├── tab_a.png ├── tab_b.png ├── tab_h.png ├── tab_s.png └── tabs.css ├── include ├── err_def.h ├── gba_eeprom.h ├── gba_flash.h └── gba_sram.h ├── package.json ├── src ├── err_def.c ├── gba_eeprom.c ├── gba_flash.c └── gba_sram.c └── test ├── detect-save-type ├── Makefile ├── README.md └── main.c ├── eeprom-512B ├── Makefile └── eeprom-512B.c ├── eeprom-8KB ├── Makefile └── eeprom-8KB.c ├── flash-128KB ├── Makefile └── flash-128KB.c ├── flash-64KB ├── Makefile └── flash-64KB.c └── sram ├── Makefile └── sram.c /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/.gitignore -------------------------------------------------------------------------------- /.versionrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/.versionrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.3.0 -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']} 2 | -------------------------------------------------------------------------------- /docs/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/bc_s.png -------------------------------------------------------------------------------- /docs/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/bdwn.png -------------------------------------------------------------------------------- /docs/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/closed.png -------------------------------------------------------------------------------- /docs/dir_d44c64559bbebec7f509842c48db8b23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/dir_d44c64559bbebec7f509842c48db8b23.html -------------------------------------------------------------------------------- /docs/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/doc.png -------------------------------------------------------------------------------- /docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/doxygen.css -------------------------------------------------------------------------------- /docs/doxygen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/doxygen.svg -------------------------------------------------------------------------------- /docs/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/dynsections.js -------------------------------------------------------------------------------- /docs/err__def_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/err__def_8h.html -------------------------------------------------------------------------------- /docs/err__def_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/err__def_8h_source.html -------------------------------------------------------------------------------- /docs/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/files.html -------------------------------------------------------------------------------- /docs/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/folderclosed.png -------------------------------------------------------------------------------- /docs/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/folderopen.png -------------------------------------------------------------------------------- /docs/gba__eeprom_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/gba__eeprom_8h.html -------------------------------------------------------------------------------- /docs/gba__eeprom_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/gba__eeprom_8h_source.html -------------------------------------------------------------------------------- /docs/gba__flash_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/gba__flash_8h.html -------------------------------------------------------------------------------- /docs/gba__flash_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/gba__flash_8h_source.html -------------------------------------------------------------------------------- /docs/gba__sram_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/gba__sram_8h.html -------------------------------------------------------------------------------- /docs/gba__sram_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/gba__sram_8h_source.html -------------------------------------------------------------------------------- /docs/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/globals.html -------------------------------------------------------------------------------- /docs/globals_enum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/globals_enum.html -------------------------------------------------------------------------------- /docs/globals_eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/globals_eval.html -------------------------------------------------------------------------------- /docs/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/globals_func.html -------------------------------------------------------------------------------- /docs/globals_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/globals_vars.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/jquery.js -------------------------------------------------------------------------------- /docs/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/menu.js -------------------------------------------------------------------------------- /docs/menudata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/menudata.js -------------------------------------------------------------------------------- /docs/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/nav_f.png -------------------------------------------------------------------------------- /docs/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/nav_g.png -------------------------------------------------------------------------------- /docs/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/nav_h.png -------------------------------------------------------------------------------- /docs/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/open.png -------------------------------------------------------------------------------- /docs/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_0.html -------------------------------------------------------------------------------- /docs/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_0.js -------------------------------------------------------------------------------- /docs/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_1.html -------------------------------------------------------------------------------- /docs/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_1.js -------------------------------------------------------------------------------- /docs/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_2.html -------------------------------------------------------------------------------- /docs/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_2.js -------------------------------------------------------------------------------- /docs/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_3.html -------------------------------------------------------------------------------- /docs/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/all_3.js -------------------------------------------------------------------------------- /docs/search/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/close.svg -------------------------------------------------------------------------------- /docs/search/enums_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enums_0.html -------------------------------------------------------------------------------- /docs/search/enums_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enums_0.js -------------------------------------------------------------------------------- /docs/search/enums_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enums_1.html -------------------------------------------------------------------------------- /docs/search/enums_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enums_1.js -------------------------------------------------------------------------------- /docs/search/enumvalues_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enumvalues_0.html -------------------------------------------------------------------------------- /docs/search/enumvalues_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enumvalues_0.js -------------------------------------------------------------------------------- /docs/search/enumvalues_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enumvalues_1.html -------------------------------------------------------------------------------- /docs/search/enumvalues_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/enumvalues_1.js -------------------------------------------------------------------------------- /docs/search/files_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/files_0.html -------------------------------------------------------------------------------- /docs/search/files_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/files_0.js -------------------------------------------------------------------------------- /docs/search/files_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/files_1.html -------------------------------------------------------------------------------- /docs/search/files_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/files_1.js -------------------------------------------------------------------------------- /docs/search/functions_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/functions_0.html -------------------------------------------------------------------------------- /docs/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/functions_0.js -------------------------------------------------------------------------------- /docs/search/functions_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/functions_1.html -------------------------------------------------------------------------------- /docs/search/functions_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/functions_1.js -------------------------------------------------------------------------------- /docs/search/functions_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/functions_2.html -------------------------------------------------------------------------------- /docs/search/functions_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/functions_2.js -------------------------------------------------------------------------------- /docs/search/mag_sel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/mag_sel.svg -------------------------------------------------------------------------------- /docs/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/nomatches.html -------------------------------------------------------------------------------- /docs/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/search.css -------------------------------------------------------------------------------- /docs/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/search.js -------------------------------------------------------------------------------- /docs/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/search_l.png -------------------------------------------------------------------------------- /docs/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/search_m.png -------------------------------------------------------------------------------- /docs/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/search_r.png -------------------------------------------------------------------------------- /docs/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/searchdata.js -------------------------------------------------------------------------------- /docs/search/variables_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/variables_0.html -------------------------------------------------------------------------------- /docs/search/variables_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/search/variables_0.js -------------------------------------------------------------------------------- /docs/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/splitbar.png -------------------------------------------------------------------------------- /docs/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/sync_off.png -------------------------------------------------------------------------------- /docs/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/sync_on.png -------------------------------------------------------------------------------- /docs/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/tab_a.png -------------------------------------------------------------------------------- /docs/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/tab_b.png -------------------------------------------------------------------------------- /docs/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/tab_h.png -------------------------------------------------------------------------------- /docs/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/tab_s.png -------------------------------------------------------------------------------- /docs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/docs/tabs.css -------------------------------------------------------------------------------- /include/err_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/include/err_def.h -------------------------------------------------------------------------------- /include/gba_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/include/gba_eeprom.h -------------------------------------------------------------------------------- /include/gba_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/include/gba_flash.h -------------------------------------------------------------------------------- /include/gba_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/include/gba_sram.h -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/package.json -------------------------------------------------------------------------------- /src/err_def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/src/err_def.c -------------------------------------------------------------------------------- /src/gba_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/src/gba_eeprom.c -------------------------------------------------------------------------------- /src/gba_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/src/gba_flash.c -------------------------------------------------------------------------------- /src/gba_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/src/gba_sram.c -------------------------------------------------------------------------------- /test/detect-save-type/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/detect-save-type/Makefile -------------------------------------------------------------------------------- /test/detect-save-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/detect-save-type/README.md -------------------------------------------------------------------------------- /test/detect-save-type/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/detect-save-type/main.c -------------------------------------------------------------------------------- /test/eeprom-512B/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/eeprom-512B/Makefile -------------------------------------------------------------------------------- /test/eeprom-512B/eeprom-512B.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/eeprom-512B/eeprom-512B.c -------------------------------------------------------------------------------- /test/eeprom-8KB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/eeprom-8KB/Makefile -------------------------------------------------------------------------------- /test/eeprom-8KB/eeprom-8KB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/eeprom-8KB/eeprom-8KB.c -------------------------------------------------------------------------------- /test/flash-128KB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/flash-128KB/Makefile -------------------------------------------------------------------------------- /test/flash-128KB/flash-128KB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/flash-128KB/flash-128KB.c -------------------------------------------------------------------------------- /test/flash-64KB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/flash-64KB/Makefile -------------------------------------------------------------------------------- /test/flash-64KB/flash-64KB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/flash-64KB/flash-64KB.c -------------------------------------------------------------------------------- /test/sram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/sram/Makefile -------------------------------------------------------------------------------- /test/sram/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laqieer/libsavgba/HEAD/test/sram/sram.c --------------------------------------------------------------------------------