# mgba-esp32 **Repository Path**: youning1/mgba-esp32 ## Basic Information - **Project Name**: mgba-esp32 - **Description**: No description available - **Primary Language**: Unknown - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-22 - **Last Updated**: 2022-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # How to build esp32-port Step 1: build libmgba.a ``` mkdir build cd build cmake -DTOOLCHAIN=/where_your_esp32_gcc -DUSE_MINIZIP=OFF -DUSE_ZLIB=OFF -DUSE_LZMA=OFF .. make -j8 ``` Step 2: build mgba ``` setup ESP-IDF 3.x and tool cd esp-port/helloworld make flash monitor ```