├── .github ├── dependabot.yml └── workflows │ ├── generate-release.yml │ ├── test-github-actions-linux.yml │ └── test-github-actions-windows.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── Coremark-RP2040.png ├── LICENSE ├── Makefile ├── README.md ├── pico_sdk_import.cmake ├── scripts ├── clean_lin.sh ├── clean_win.bat └── setup_env.bat └── src ├── core_list_join.c ├── core_main.c ├── core_matrix.c ├── core_portme.c ├── core_portme.h ├── core_state.c ├── core_util.c ├── coremark.h ├── cvt.c └── ee_printf.c /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/generate-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/.github/workflows/generate-release.yml -------------------------------------------------------------------------------- /.github/workflows/test-github-actions-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/.github/workflows/test-github-actions-linux.yml -------------------------------------------------------------------------------- /.github/workflows/test-github-actions-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/.github/workflows/test-github-actions-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Coremark-RP2040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/Coremark-RP2040.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/README.md -------------------------------------------------------------------------------- /pico_sdk_import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/pico_sdk_import.cmake -------------------------------------------------------------------------------- /scripts/clean_lin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/scripts/clean_lin.sh -------------------------------------------------------------------------------- /scripts/clean_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/scripts/clean_win.bat -------------------------------------------------------------------------------- /scripts/setup_env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/scripts/setup_env.bat -------------------------------------------------------------------------------- /src/core_list_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/core_list_join.c -------------------------------------------------------------------------------- /src/core_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/core_main.c -------------------------------------------------------------------------------- /src/core_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/core_matrix.c -------------------------------------------------------------------------------- /src/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/core_portme.c -------------------------------------------------------------------------------- /src/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/core_portme.h -------------------------------------------------------------------------------- /src/core_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/core_state.c -------------------------------------------------------------------------------- /src/core_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/core_util.c -------------------------------------------------------------------------------- /src/coremark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/coremark.h -------------------------------------------------------------------------------- /src/cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/cvt.c -------------------------------------------------------------------------------- /src/ee_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/protik09/CoreMark-RP2040/HEAD/src/ee_printf.c --------------------------------------------------------------------------------