Merge branch 'mgba-emu:master' into master
|
@ -12,7 +12,11 @@ install:
|
|||
- vcpkg --no-dry-run upgrade
|
||||
- rd /Q /S C:\Tools\vcpkg\buildtrees
|
||||
before_build:
|
||||
- cmake . -DCMAKE_PREFIX_PATH=C:\Qt\5.15\msvc2019_64 -DCMAKE_TOOLCHAIN_FILE=C:\Tools\vcpkg\scripts\buildsystems\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-release -DCMAKE_CONFIGURATION_TYPES=Release
|
||||
- cmake . -DCMAKE_PREFIX_PATH=C:\Qt\5.15\msvc2019_64 \
|
||||
-DCMAKE_TOOLCHAIN_FILE=C:\Tools\vcpkg\scripts\buildsystems\vcpkg.cmake \
|
||||
-DVCPKG_TARGET_TRIPLET=x64-windows-release \
|
||||
-DCMAKE_CONFIGURATION_TYPES=Release \
|
||||
-DCMAKE_SYSTEM_VERSION=10.0.22000.1
|
||||
build:
|
||||
parallel: true
|
||||
project: mGBA.sln
|
||||
|
|
86
CHANGES
|
@ -1,46 +1,98 @@
|
|||
0.11.0: (Future)
|
||||
Features:
|
||||
- New option to lock the maximum frame size
|
||||
- Scripting: New `input` API for getting raw keyboard/mouse/controller state
|
||||
- Scripting: New `storage` API for saving data for a script, e.g. settings
|
||||
- Scripting: Debugger integration to allow for breakpoints and watchpoints
|
||||
- New unlicensed GB mappers: NT (older types 1 and 2), Li Cheng, GGB-81
|
||||
- Debugger: Add range watchpoints
|
||||
Emulation fixes:
|
||||
- ARM: Add framework for coprocessor support
|
||||
- GB Audio: Fix audio envelope timing resetting too often (fixes mgba.io/i/3164)
|
||||
- GB I/O: Fix STAT writing IRQ trigger conditions (fixes mgba.io/i/2501)
|
||||
- GB Serialize: Add missing Pocket Cam state to savestates
|
||||
- GB Video: Implement DMG-style sprite ordering
|
||||
- GBA: Unhandled bkpt should be treated as an undefined exception
|
||||
- GBA: Add baseline CP0 (Wii U VC) and CP1 (DCC) implementations
|
||||
- GBA GPIO: Fix gyro read-out start (fixes mgba.io/i/3141)
|
||||
- GBA I/O: Fix HALTCNT access behavior (fixes mgba.io/i/2309)
|
||||
- GBA I/O: Fix audio register 8-bit write behavior (fixes mgba.io/i/3086)
|
||||
- GBA Serialize: Fix some minor save state edge cases
|
||||
- GBA Serialize: Properly restore GPIO register state (fixes mgba.io/i/3294)
|
||||
- GBA SIO: Fix MULTI mode SIOCNT bit 7 writes on secondary GBAs (fixes mgba.io/i/3110)
|
||||
- GBA Video: Disable BG target 1 blending when OBJ blending (fixes mgba.io/i/2722)
|
||||
- GBA Video: Improve emulation of window start/end conditions (fixes mgba.io/i/1945)
|
||||
Other fixes:
|
||||
- Core: Fix inconsistencies with setting game-specific overrides (fixes mgba.io/i/2963)
|
||||
- Core: Fix patch autoloading leaking the file handle
|
||||
- Debugger: Fix writing to specific segment in command-line debugger
|
||||
- GB: Fix uninitialized save data when loading undersized temporary saves
|
||||
- GB, GBA Core: Fix memory leak if reloading debug symbols
|
||||
- GB Serialize: Prevent loading invalid states where LY >= 144 in modes other than 1
|
||||
- GBA: Fix getting game info for multiboot ROMs
|
||||
- GBA Audio: Fix crash if audio FIFOs and timers get out of sync
|
||||
- GBA Audio: Fix crash in audio subsampling if timing lockstep breaks
|
||||
- GBA Core: Fix loading symbols from ELF files if the file doesn't end with .elf
|
||||
- GBA Memory: Let raw access read high MMIO addresses
|
||||
- Qt: Fix savestate preview sizes with different scales (fixes mgba.io/i/2560)
|
||||
- Qt: Fix potential crash when configuring shortcuts
|
||||
- Qt: Fix crash when applying changes to GB I/O registers in I/O view
|
||||
- Qt: Fix LCDC background priority/enable bit being mis-mapped in I/O view
|
||||
- Qt: Fix saving named states breaking when screenshot states disabled (fixes mgba.io/i/3320)
|
||||
- Updater: Fix updating appimage across filesystems
|
||||
Misc:
|
||||
- Core: Handle relative paths for saves, screenshots, etc consistently (fixes mgba.io/i/2826)
|
||||
- Core: Improve rumble emulation by averaging state over entire frame (fixes mgba.io/i/3232)
|
||||
- Core: Add MD5 hashing for ROMs
|
||||
- GB: Prevent incompatible BIOSes from being used on differing models
|
||||
- GB Serialize: Add missing savestate support for MBC6 and NT (newer)
|
||||
- GBA: Improve detection of valid ELF ROMs
|
||||
- GBA Audio: Remove broken XQ audio pending rewrite
|
||||
- GBA Memory: Improve VRAM access stall cycle estimation
|
||||
- GBA SIO: Rewrite lockstep driver for improved stability
|
||||
- GBA Video: Add special circlular window handling in OpenGL renderer
|
||||
- Libretro: Add Super Game Boy Color support (closes mgba.io/i/3188)
|
||||
- mGUI: Enable auto-softpatching (closes mgba.io/i/2899)
|
||||
- mGUI: Persist fast forwarding after closing menu (fixes mgba.io/i/2414)
|
||||
- Qt: Handle multiple save game files for disparate games separately (fixes mgba.io/i/2887)
|
||||
- Qt: Remove maligned double-click-to-fullscreen shortcut (closes mgba.io/i/2632)
|
||||
- Qt: Pass logging context through to video proxy thread (fixes mgba.io/i/3095)
|
||||
- Qt: Show maker code and game version in ROM info
|
||||
- Qt: Make window corners square on Windows 11 (fixes mgba.io/i/3285)
|
||||
- Qt: Show a dummy shader settings tab if shaders aren't supported
|
||||
- Res: Port NSO-gba-colors shader (closes mgba.io/i/2834)
|
||||
- Scripting: Add `callbacks:oneshot` for single-call callbacks
|
||||
- Switch: Add bilinear filtering option (closes mgba.io/i/3111)
|
||||
- Vita: Add imc0 and xmc0 mount point support
|
||||
|
||||
0.10.3: (2024-01-07)
|
||||
Emulation fixes:
|
||||
- ARM: Remove obsolete force-alignment in `bx pc` (fixes mgba.io/i/2964)
|
||||
- ARM: Fake bpkt instruction should take no cycles (fixes mgba.io/i/2551)
|
||||
- GB Audio: Fix channels 1/2 staying muted if restarted after long silence
|
||||
- GB Audio: Fix channel 1 restarting if sweep applies after stop (fixes mgba.io/i/2965)
|
||||
- GB Audio: Fix restarting envelope when writing to register (fixes mgba.io/i/3067)
|
||||
- GB Audio: Improve "zombie mode" emulation in CGB mode (fixes mgba.io/i/2029)
|
||||
- GB I/O: Read back proper SVBK value after writing 0 (fixes mgba.io/i/2921)
|
||||
- GB I/O: Fix STAT writing IRQ trigger conditions (fixes mgba.io/i/2501)
|
||||
- GB Serialize: Add missing Pocket Cam state to savestates
|
||||
- GB SIO: Disabling SIO should cancel pending transfers (fixes mgba.io/i/2537)
|
||||
- GB Video: Implement DMG-style sprite ordering
|
||||
- GBA: Unhandled bkpt should be treated as an undefined exception
|
||||
- GBA Audio: Fix sample timing drifting when changing sample interval
|
||||
- GBA Audio: Fix initial channel 3 wave RAM (fixes mgba.io/i/2947)
|
||||
- GBA Audio: Fix sample position issues when rate changes (fixes mgba.io/i/3006)
|
||||
- GBA GPIO: Fix tilt scale and orientation (fixes mgba.io/i/2703)
|
||||
- GBA BIOS: Fix clobbering registers with word-sized CpuSet
|
||||
- GBA SIO: Fix normal mode SI/SO semantics (fixes mgba.io/i/2925)
|
||||
- GBA Video: Disable BG target 1 blending when OBJ blending (fixes mgba.io/i/2722)
|
||||
Other fixes:
|
||||
- Core: Fix inconsistencies with setting game-specific overrides (fixes mgba.io/i/2963)
|
||||
- Debugger: Fix writing to specific segment in command-line debugger
|
||||
- mGUI: Fix cases where an older save state screenshot would be shown. (fixes mgba.io/i/2183)
|
||||
- Qt: Fix savestate preview sizes with different scales (fixes mgba.io/i/2560)
|
||||
- GB: Fix applying a patch that changes the cartridge mapper (fixes mgba.io/i/3077)
|
||||
- GBA Savedata: Fix crash when resizing flash save games for RTC data
|
||||
- mGUI: Fix cases where an older save state screenshot would be shown (fixes mgba.io/i/2183)
|
||||
- Qt: Re-enable sync for multiplayer windows that aren't connected (fixes mgba.io/i/2974)
|
||||
- Qt: Fix mute settings not being loaded on setting screen (fixes mgba.io/i/2990)
|
||||
- Qt: Fix screen freezing on macOS after closing save state window (fixes mgba.io/i/2885)
|
||||
- Vita: Fix camera setting not appearing (fixes mgba.io/i/3012)
|
||||
Misc:
|
||||
- Core: Handle relative paths for saves, screenshots, etc consistently (fixes mgba.io/i/2826)
|
||||
- GB: Prevent incompatible BIOSes from being used on differing models
|
||||
- GB Serialize: Add missing savestate support for MBC6 and NT (newer)
|
||||
- GBA: Improve detection of valid ELF ROMs
|
||||
- mGUI: Enable auto-softpatching (closes mgba.io/i/2899)
|
||||
- mGUI: Persist fast forwarding after closing menu (fixes mgba.io/i/2414)
|
||||
- Qt: Add exporting of SAV + RTC saves from Save Converter to strip RTC data
|
||||
- Qt: Handle multiple save game files for disparate games separately (fixes mgba.io/i/2887)
|
||||
- Qt: Remove maligned double-click-to-fullscreen shortcut (closes mgba.io/i/2632)
|
||||
- Scripting: Add `callbacks:oneshot` for single-call callbacks
|
||||
- VFS: Use anonymousMemoryMap for large 7z allocations (fixes mgba.io/i/3013)
|
||||
|
||||
0.10.2: (2023-04-23)
|
||||
Emulation fixes:
|
||||
|
|
132
CMakeLists.txt
|
@ -39,18 +39,18 @@ if(NOT MSVC)
|
|||
# TODO: Remove this once mScript KV pairs support const correctness
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror=incompatible-pointer-types")
|
||||
endif()
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS} -Woverloaded-virtual")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNING_FLAGS} -Woverloaded-virtual -Werror=reorder")
|
||||
else()
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_CRT_SECURE_NO_WARNINGS /wd4003 /wd4244 /wd4146 /wd4267 /Zc:preprocessor-")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_CRT_SECURE_NO_WARNINGS /wd4003 /wd4244 /wd4146 /wd4267 /Zc:preprocessor-")
|
||||
endif()
|
||||
|
||||
if(NOT LIBMGBA_ONLY)
|
||||
set(USE_DEBUGGERS ON CACHE BOOL "Whether or not to enable the debugging infrastructure")
|
||||
set(ENABLE_DEBUGGERS ON CACHE BOOL "Whether or not to enable the debugging infrastructure")
|
||||
if (NOT WIN32)
|
||||
set(USE_EDITLINE ON CACHE BOOL "Whether or not to enable the CLI-mode debugger")
|
||||
endif()
|
||||
set(USE_GDB_STUB ON CACHE BOOL "Whether or not to enable the GDB stub ARM debugger")
|
||||
set(ENABLE_GDB_STUB ON CACHE BOOL "Whether or not to enable the GDB stub ARM debugger")
|
||||
set(USE_FFMPEG ON CACHE BOOL "Whether or not to enable FFmpeg support")
|
||||
set(USE_ZLIB ON CACHE BOOL "Whether or not to enable zlib support")
|
||||
set(USE_MINIZIP ON CACHE BOOL "Whether or not to enable external minizip support")
|
||||
|
@ -68,9 +68,6 @@ if(NOT LIBMGBA_ONLY)
|
|||
set(BUILD_QT ON CACHE BOOL "Build Qt frontend")
|
||||
set(BUILD_SDL ON CACHE BOOL "Build SDL frontend")
|
||||
set(BUILD_LIBRETRO OFF CACHE BOOL "Build libretro core")
|
||||
if(APPLE)
|
||||
set(BUILD_OPENEMU OFF CACHE BOOL "Build OpenEmu core")
|
||||
endif()
|
||||
set(BUILD_PERF OFF CACHE BOOL "Build performance profiling tool")
|
||||
set(BUILD_TEST OFF CACHE BOOL "Build testing harness")
|
||||
set(BUILD_SUITE OFF CACHE BOOL "Build test suite")
|
||||
|
@ -80,11 +77,12 @@ if(NOT LIBMGBA_ONLY)
|
|||
set(BUILD_PYTHON OFF CACHE BOOL "Build Python bindings")
|
||||
set(BUILD_STATIC OFF CACHE BOOL "Build a static library")
|
||||
set(BUILD_SHARED ON CACHE BOOL "Build a shared library")
|
||||
set(SKIP_LIBRARY OFF CACHE BOOL "Skip building the library (useful for only building libretro or OpenEmu cores)")
|
||||
set(SKIP_LIBRARY OFF CACHE BOOL "Skip building the library (useful for only building libretro core)")
|
||||
set(BUILD_GL ON CACHE BOOL "Build with OpenGL")
|
||||
set(BUILD_GLES2 ON CACHE BOOL "Build with OpenGL|ES 2")
|
||||
set(BUILD_GLES3 ON CACHE BOOL "Build with OpenGL|ES 3")
|
||||
set(BUILD_DOCGEN OFF CACHE BOOL "Build the scripting API documentation generator")
|
||||
set(BUILD_MAINTAINER_TOOLS OFF CACHE BOOL "Build tools only useful for maintainers")
|
||||
set(USE_EPOXY ON CACHE STRING "Build with libepoxy")
|
||||
set(DISABLE_DEPS OFF CACHE BOOL "Build without dependencies")
|
||||
set(DISTBUILD OFF CACHE BOOL "Build distribution packages")
|
||||
|
@ -93,6 +91,7 @@ if(NOT LIBMGBA_ONLY)
|
|||
mark_as_advanced(WIN32_UNIX_PATHS)
|
||||
endif()
|
||||
mark_as_advanced(BUILD_DOCGEN)
|
||||
mark_as_advanced(BUILD_MAINTAINER_TOOLS)
|
||||
else()
|
||||
set(DISABLE_FRONTENDS ON)
|
||||
set(DISABLE_DEPS ON)
|
||||
|
@ -142,11 +141,6 @@ if (BUILD_LIBRETRO)
|
|||
mark_as_advanced(LIBRETRO_LIBDIR)
|
||||
endif()
|
||||
|
||||
if (BUILD_OPENEMU)
|
||||
set(OE_LIBDIR "${LIBDIR}" CACHE PATH "Installed library directory (OpenEmu)")
|
||||
mark_as_advanced(OE_LIBDIR)
|
||||
endif()
|
||||
|
||||
if (DISTBUILD)
|
||||
set(EXTRA_LICENSES "" CACHE FILEPATH "Extra licenses to include in distribution packaages")
|
||||
mark_as_advanced(EXTRA_LICENSES)
|
||||
|
@ -213,18 +207,22 @@ elseif(BUILD_PGO AND PGO_STAGE_2)
|
|||
endif()
|
||||
|
||||
# Platform support
|
||||
set(OS_DEFINES)
|
||||
if(WIN32)
|
||||
set(WIN32_VERSION "${LIB_VERSION_MAJOR},${LIB_VERSION_MINOR},${LIB_VERSION_PATCH}")
|
||||
add_definitions(-D_WIN32_WINNT=0x0600)
|
||||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
|
||||
if(MSVC)
|
||||
add_definitions(-DNOMINMAX -DWIN32_LEAN_AND_MEAN)
|
||||
add_definitions(-D_UNICODE -DUNICODE)
|
||||
else()
|
||||
add_definitions(-D_GNU_SOURCE)
|
||||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
add_compile_definitions(_FILE_OFFSET_BITS=64)
|
||||
endif()
|
||||
endif()
|
||||
list(APPEND OS_LIB ws2_32 shlwapi)
|
||||
list(APPEND CORE_VFS_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-fd.c ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/windows/vfs-w32.c)
|
||||
list(APPEND OS_DEFINES ENABLE_VFS_FD)
|
||||
list(APPEND VFS_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-fd.c ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/windows/vfs-w32.c)
|
||||
file(GLOB OS_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/windows/*.c)
|
||||
source_group("Windows-specific code" FILES ${OS_SRC})
|
||||
elseif(UNIX)
|
||||
|
@ -234,7 +232,8 @@ elseif(UNIX)
|
|||
add_definitions(-D_GNU_SOURCE)
|
||||
endif()
|
||||
|
||||
list(APPEND CORE_VFS_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-fd.c ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-dirent.c)
|
||||
list(APPEND OS_DEFINES ENABLE_VFS_FD)
|
||||
list(APPEND VFS_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-fd.c ${CMAKE_CURRENT_SOURCE_DIR}/src/util/vfs/vfs-dirent.c)
|
||||
file(GLOB OS_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/posix/*.c)
|
||||
source_group("POSIX-specific code" FILES ${OS_SRC})
|
||||
endif()
|
||||
|
@ -273,20 +272,6 @@ if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang" OR
|
|||
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELEASE} -gdwarf")
|
||||
endif()
|
||||
|
||||
if(BUILD_BBB OR BUILD_RASPI OR BUILD_PANDORA)
|
||||
if(NOT BUILD_EGL)
|
||||
add_definitions(-DCOLOR_16_BIT -DCOLOR_5_6_5)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(BUILD_RASPI)
|
||||
set(BUILD_GL OFF CACHE BOOL "OpenGL not supported" FORCE)
|
||||
endif()
|
||||
|
||||
if(BUILD_PANDORA)
|
||||
add_definitions(-DBUILD_PANDORA)
|
||||
endif()
|
||||
|
||||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "arm.*")
|
||||
enable_language(ASM)
|
||||
endif()
|
||||
|
@ -297,7 +282,7 @@ endif()
|
|||
|
||||
if(DEFINED 3DS OR DEFINED PSP2 OR DEFINED WII OR DEFINED SWITCH)
|
||||
set(IS_EMBEDDED ON)
|
||||
set(USE_DEBUGGERS OFF)
|
||||
set(ENABLE_DEBUGGERS OFF)
|
||||
set(USE_SQLITE3 OFF)
|
||||
set(USE_DISCORD_RPC OFF)
|
||||
set(USE_LIBZIP OFF CACHE BOOL "")
|
||||
|
@ -309,12 +294,12 @@ if(DEFINED SWITCH)
|
|||
endif()
|
||||
|
||||
if(NOT M_CORE_GBA)
|
||||
set(USE_GDB_STUB OFF)
|
||||
set(ENABLE_GDB_STUB OFF)
|
||||
endif()
|
||||
|
||||
if(NOT USE_DEBUGGERS)
|
||||
if(NOT ENABLE_DEBUGGERS)
|
||||
set(USE_EDITLINE OFF)
|
||||
set(USE_GDB_STUB OFF)
|
||||
set(ENABLE_GDB_STUB OFF)
|
||||
endif()
|
||||
|
||||
if(WII)
|
||||
|
@ -341,22 +326,21 @@ find_function(popcount32)
|
|||
|
||||
find_function(futimens)
|
||||
find_function(futimes)
|
||||
find_function(localtime_r)
|
||||
|
||||
find_function(realpath)
|
||||
|
||||
if(ANDROID AND ANDROID_NDK_MAJOR GREATER 13)
|
||||
find_function(localtime_r)
|
||||
set(HAVE_STRTOF_L ON)
|
||||
elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
find_function(localtime_r)
|
||||
list(APPEND FUNCTION_DEFINES HAVE_STRTOF_L)
|
||||
elseif(NOT CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
# The strtof_l on Linux not actually exposed nor actually strtof_l
|
||||
set(HAVE_STRTOF_L OFF)
|
||||
else()
|
||||
find_function(localtime_r)
|
||||
find_function(strtof_l)
|
||||
endif()
|
||||
|
||||
check_include_files("xlocale.h" HAVE_XLOCALE)
|
||||
|
||||
set(ENABLE_VFS ON)
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Generic")
|
||||
if(NOT IS_EMBEDDED)
|
||||
set(DISABLE_DEPS ON CACHE BOOL "This platform cannot build with dependencies" FORCE)
|
||||
|
@ -489,7 +473,7 @@ if(NOT BUILD_GLES2 AND NOT BUILD_GLES3 AND NOT LIBMGBA_ONLY)
|
|||
endif()
|
||||
|
||||
if(DISABLE_DEPS)
|
||||
set(USE_GDB_STUB OFF)
|
||||
set(ENABLE_GDB_STUB OFF)
|
||||
set(USE_DISCORD_RPC OFF)
|
||||
set(USE_JSON_C OFF)
|
||||
set(USE_SQLITE3 OFF)
|
||||
|
@ -537,14 +521,12 @@ if(USE_EDITLINE)
|
|||
set(DEBUGGER_LIB ${LIBEDIT_LIBRARIES})
|
||||
endif()
|
||||
set(CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS},libedit2")
|
||||
list(APPEND FEATURE_SRC "${CMAKE_CURRENT_SOURCE_DIR}/src/feature/editline/cli-el-backend.c")
|
||||
else()
|
||||
set(DEBUGGER_LIB "")
|
||||
endif()
|
||||
|
||||
if(USE_GDB_STUB)
|
||||
list(APPEND FEATURES GDB_STUB)
|
||||
list(APPEND FEATURE_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/debugger/gdb-stub.c)
|
||||
if(ENABLE_GDB_STUB)
|
||||
list(APPEND ENABLES GDB_STUB)
|
||||
endif()
|
||||
source_group("Debugger" FILES ${DEBUGGER_SRC})
|
||||
|
||||
|
@ -588,8 +570,6 @@ if(USE_FFMPEG)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
list(APPEND THIRD_PARTY_SRC "${CMAKE_CURRENT_SOURCE_DIR}/src/third-party/blip_buf/blip_buf.c")
|
||||
|
||||
if(WANT_ZLIB AND NOT USE_ZLIB)
|
||||
set(SKIP_INSTALL_ALL ON)
|
||||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/src/third-party/zlib zlib EXCLUDE_FROM_ALL)
|
||||
|
@ -853,10 +833,10 @@ if(M_CORE_GBA)
|
|||
list(APPEND TEST_SRC ${ARM_TEST_SRC} ${GBA_TEST_SRC})
|
||||
endif()
|
||||
|
||||
if(USE_DEBUGGERS)
|
||||
if(ENABLE_DEBUGGERS)
|
||||
list(APPEND FEATURE_SRC ${DEBUGGER_SRC})
|
||||
list(APPEND TEST_SRC ${DEBUGGER_TEST_SRC})
|
||||
list(APPEND FEATURES DEBUGGERS)
|
||||
list(APPEND ENABLES DEBUGGERS)
|
||||
endif()
|
||||
|
||||
if(ENABLE_SCRIPTING)
|
||||
|
@ -864,6 +844,10 @@ if(ENABLE_SCRIPTING)
|
|||
list(APPEND TEST_SRC ${SCRIPT_TEST_SRC})
|
||||
endif()
|
||||
|
||||
if(ENABLE_VFS)
|
||||
list(APPEND ENABLES VFS)
|
||||
endif()
|
||||
|
||||
foreach(FEATURE IN LISTS FEATURES)
|
||||
list(APPEND FEATURE_DEFINES "USE_${FEATURE}")
|
||||
endforeach()
|
||||
|
@ -877,7 +861,6 @@ source_group("Extra features" FILES ${FEATURE_SRC})
|
|||
source_group("Third-party code" FILES ${THIRD_PARTY_SRC})
|
||||
|
||||
# Platform binaries
|
||||
set(OS_DEFINES)
|
||||
if(DEFINED 3DS)
|
||||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/src/platform/3ds ${CMAKE_CURRENT_BINARY_DIR}/3ds)
|
||||
endif()
|
||||
|
@ -902,7 +885,11 @@ list(APPEND CORE_SRC
|
|||
${THIRD_PARTY_SRC})
|
||||
list(APPEND TEST_SRC ${UTIL_TEST_SRC})
|
||||
|
||||
set(SRC ${CORE_SRC} ${VFS_SRC})
|
||||
set(SRC ${CORE_SRC})
|
||||
if(ENABLE_VFS)
|
||||
list(APPEND SRC ${VFS_SRC})
|
||||
endif()
|
||||
|
||||
if(NOT MINIMAL_CORE)
|
||||
set(ENABLE_EXTRA ON)
|
||||
if(M_CORE_GBA)
|
||||
|
@ -934,7 +921,7 @@ if(NOT SKIP_LIBRARY)
|
|||
endif()
|
||||
|
||||
if(BUILD_SHARED)
|
||||
add_library(${BINARY_NAME} SHARED ${SRC} ${VFS_SRC})
|
||||
add_library(${BINARY_NAME} SHARED ${SRC})
|
||||
set(EXPORT_DEFINES MGBA_DLL)
|
||||
if(BUILD_STATIC)
|
||||
add_library(${BINARY_NAME}-static STATIC ${SRC})
|
||||
|
@ -994,9 +981,9 @@ endif()
|
|||
|
||||
if(BUILD_LIBRETRO)
|
||||
file(GLOB RETRO_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/libretro/*.c)
|
||||
add_library(${BINARY_NAME}_libretro SHARED ${CORE_SRC} ${RETRO_SRC})
|
||||
add_library(${BINARY_NAME}_libretro SHARED ${CORE_SRC} ${RETRO_SRC} ${VFS_SRC})
|
||||
add_dependencies(${BINARY_NAME}_libretro ${BINARY_NAME}-version-info)
|
||||
set_target_properties(${BINARY_NAME}_libretro PROPERTIES PREFIX "" COMPILE_DEFINITIONS "__LIBRETRO__;COLOR_16_BIT;COLOR_5_6_5;DISABLE_THREADING;MGBA_STANDALONE;${OS_DEFINES};${FUNCTION_DEFINES};MINIMAL_CORE=2")
|
||||
set_target_properties(${BINARY_NAME}_libretro PROPERTIES PREFIX "" COMPILE_DEFINITIONS "__LIBRETRO__;COLOR_16_BIT;COLOR_5_6_5;DISABLE_THREADING;MGBA_STANDALONE;${OS_DEFINES};${FUNCTION_DEFINES};ENABLE_VFS;MINIMAL_CORE=2")
|
||||
target_link_libraries(${BINARY_NAME}_libretro ${OS_LIB})
|
||||
if(MSVC)
|
||||
install(TARGETS ${BINARY_NAME}_libretro RUNTIME DESTINATION ${LIBRETRO_LIBDIR} COMPONENT ${BINARY_NAME}_libretro)
|
||||
|
@ -1005,23 +992,7 @@ if(BUILD_LIBRETRO)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
if(BUILD_OPENEMU)
|
||||
find_library(FOUNDATION Foundation)
|
||||
find_library(OPENEMUBASE OpenEmuBase)
|
||||
file(GLOB OE_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/openemu/*.m)
|
||||
add_library(${BINARY_NAME}-openemu MODULE ${CORE_SRC} ${OS_SRC})
|
||||
set_target_properties(${BINARY_NAME}-openemu PROPERTIES
|
||||
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/src/platform/openemu/Info.plist.in
|
||||
BUNDLE TRUE
|
||||
BUNDLE_EXTENSION oecoreplugin
|
||||
OUTPUT_NAME ${PROJECT_NAME}
|
||||
COMPILE_OPTIONS "-fobjc-arc"
|
||||
COMPILE_DEFINITIONS "DISABLE_THREADING;MGBA_STANDALONE;${OS_DEFINES};${FUNCTION_DEFINES};MINIMAL_CORE=1")
|
||||
target_link_libraries(${BINARY_NAME}-openemu ${OS_LIB} ${FOUNDATION} ${OPENEMUBASE})
|
||||
install(TARGETS ${BINARY_NAME}-openemu LIBRARY DESTINATION ${OE_LIBDIR} COMPONENT ${BINARY_NAME}.oecoreplugin NAMELINK_SKIP)
|
||||
endif()
|
||||
|
||||
if(BUILD_QT AND (WIN32 OR APPLE OR CMAKE_SYSTEM_NAME STREQUAL "Linux"))
|
||||
if(BUILD_QT AND (WIN32 OR APPLE OR CMAKE_SYSTEM_NAME STREQUAL "Linux") AND ENABLE_VFS)
|
||||
set(BUILD_UPDATER ON)
|
||||
endif()
|
||||
|
||||
|
@ -1029,7 +1000,7 @@ if(BUILD_UPDATER)
|
|||
add_executable(updater-stub WIN32 ${CORE_VFS_SRC} ${VFS_SRC} ${OS_SRC} ${UTIL_BASE_SRC} ${THIRD_PARTY_SRC}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/core/config.c
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/feature/updater.c
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/feature/updater-main.c)
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/tools/updater-main.c)
|
||||
target_link_libraries(updater-stub ${ZLIB_LIBRARY} ${ZLIB_LIBRARY} ${ZIP_LIBRARIES} ${OS_LIB} ${PLATFORM_LIBRARY})
|
||||
set_target_properties(updater-stub PROPERTIES COMPILE_DEFINITIONS "${OS_DEFINES};${FUNCTION_DEFINES};${FEATURE_DEFINES};BUILD_STATIC")
|
||||
if(MSVC)
|
||||
|
@ -1041,8 +1012,14 @@ if(BUILD_UPDATER)
|
|||
endif()
|
||||
|
||||
if(ENABLE_SCRIPTING AND BUILD_DOCGEN)
|
||||
add_executable(docgen ${CMAKE_CURRENT_SOURCE_DIR}/src/script/docgen.c)
|
||||
add_executable(docgen ${CMAKE_CURRENT_SOURCE_DIR}/src/tools/docgen.c)
|
||||
target_link_libraries(docgen ${OS_LIB} ${PLATFORM_LIBRARY} ${BINARY_NAME})
|
||||
set_target_properties(docgen PROPERTIES COMPILE_DEFINITIONS "${OS_DEFINES};${FUNCTION_DEFINES};${FEATURE_DEFINES}")
|
||||
endif()
|
||||
|
||||
if(BUILD_MAINTAINER_TOOLS)
|
||||
add_executable(font-sdf-tool ${CMAKE_CURRENT_SOURCE_DIR}/src/tools/font-sdf.c ${CMAKE_CURRENT_SOURCE_DIR}/src/util/gui/font-metrics.c)
|
||||
target_link_libraries(font-sdf-tool ${OS_LIB} ${PLATFORM_LIBRARY} ${BINARY_NAME})
|
||||
endif()
|
||||
|
||||
if(BUILD_SDL)
|
||||
|
@ -1082,7 +1059,7 @@ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/mgba-util DESTINATION ${CM
|
|||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/include/mgba/flags.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/mgba COMPONENT ${BINARY_NAME}-dev)
|
||||
|
||||
# Packaging
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/res/licenses/blip_buf.txt DESTINATION ${CMAKE_INSTALL_DOCDIR}/licenses COMPONENT ${BINARY_NAME})
|
||||
install(FILES DESTINATION ${CMAKE_INSTALL_DOCDIR}/licenses COMPONENT ${BINARY_NAME})
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/res/licenses/inih.txt DESTINATION ${CMAKE_INSTALL_DOCDIR}/licenses COMPONENT ${BINARY_NAME})
|
||||
if(USE_DISCORD_RPC)
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/res/licenses/discord-rpc.txt DESTINATION ${CMAKE_INSTALL_DOCDIR}/licenses COMPONENT ${BINARY_NAME})
|
||||
|
@ -1309,11 +1286,11 @@ if(NOT QUIET AND NOT LIBMGBA_ONLY)
|
|||
message(STATUS " Game Boy Advance: ${M_CORE_GBA}")
|
||||
message(STATUS " Game Boy: ${M_CORE_GB}")
|
||||
message(STATUS "Features:")
|
||||
message(STATUS " Debuggers: ${USE_DEBUGGERS}")
|
||||
message(STATUS " Debuggers: ${ENABLE_DEBUGGERS}")
|
||||
if(NOT WIN32)
|
||||
message(STATUS " CLI debugger: ${USE_EDITLINE}")
|
||||
endif()
|
||||
message(STATUS " GDB stub: ${USE_GDB_STUB}")
|
||||
message(STATUS " GDB stub: ${ENABLE_GDB_STUB}")
|
||||
message(STATUS " GIF/Video recording: ${USE_FFMPEG}")
|
||||
message(STATUS " Screenshot/advanced savestate support: ${USE_PNG}")
|
||||
message(STATUS " ZIP support: ${SUMMARY_ZIP}")
|
||||
|
@ -1344,9 +1321,6 @@ if(NOT QUIET AND NOT LIBMGBA_ONLY)
|
|||
message(STATUS " ROM tester: ${BUILD_ROM_TEST}")
|
||||
message(STATUS "Cores:")
|
||||
message(STATUS " Libretro core: ${BUILD_LIBRETRO}")
|
||||
if(APPLE)
|
||||
message(STATUS " OpenEmu core: ${BUILD_OPENEMU}")
|
||||
endif()
|
||||
message(STATUS "Libraries:")
|
||||
message(STATUS " Static: ${BUILD_STATIC}")
|
||||
message(STATUS " Shared: ${BUILD_SHARED}")
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"version": 3,
|
||||
"configurePresets": [
|
||||
{
|
||||
"name": "clang",
|
||||
"generator": "Ninja",
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "gcc",
|
||||
"generator": "Ninja",
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -260,7 +260,6 @@ mGBA is Copyright © 2013 – 2023 Jeffrey Pfau. It is distributed under the [Mo
|
|||
mGBA contains the following third-party libraries:
|
||||
|
||||
- [inih](https://github.com/benhoyt/inih), which is copyright © 2009 – 2020 Ben Hoyt and used under a BSD 3-clause license.
|
||||
- [blip-buf](https://code.google.com/archive/p/blip-buf), which is copyright © 2003 – 2009 Shay Green and used under a Lesser GNU Public License.
|
||||
- [LZMA SDK](http://www.7-zip.org/sdk.html), which is public domain.
|
||||
- [MurmurHash3](https://github.com/aappleby/smhasher) implementation by Austin Appleby, which is public domain.
|
||||
- [getopt for MSVC](https://github.com/skandhurkat/Getopt-for-Visual-Studio/), which is public domain.
|
||||
|
|
|
@ -247,7 +247,6 @@ Copyright für mGBA © 2013 – 2021 Jeffrey Pfau. mGBA wird unter der [Mozilla
|
|||
mGBA beinhaltet die folgenden Bibliotheken von Drittanbietern:
|
||||
|
||||
- [inih](https://github.com/benhoyt/inih), Copyright © 2009 - 2020 Ben Hoyt, verwendet unter einer BSD 3-clause-Lizenz.
|
||||
- [blip-buf](https://code.google.com/archive/b/blip-buf), Copyright © 2003 - 2009 Shay Green, verwendet unter einer Lesser GNU Public License.
|
||||
- [LZMA SDK](http://www.7-zip.org/sdk.html), Public Domain.
|
||||
- [MurmurHash3](https://github.com/aappleby/smhasher), Implementierung von Austin Appleby, Public Domain.
|
||||
- [getopt fot MSVC](https://github.com/skandhurkat/Getopt-for-Visual-Studio/), Public Domain.
|
||||
|
|
|
@ -247,7 +247,6 @@ mGBA es Copyright © 2013 – 2021 Jeffrey Pfau. Es distribuído bajo la [licenc
|
|||
mGBA contiene las siguientes bibliotecas de terceros:
|
||||
|
||||
- [inih](https://github.com/benhoyt/inih), que es copyright © 2009 - 2020 Ben Hoyt y se utiliza bajo licencia de la cláusula 3 de BSD.
|
||||
- [blip-buf](https://code.google.com/archive/p/blip-buf), que es copyright © 2003 - 2009 Shay Green y se usa bajo LGPL.
|
||||
- [LZMA SDK](http://www.7-zip.org/sdk.html), la cual está en el dominio público.
|
||||
- [MurmurHash3](https://github.com/aappleby/smhasher), implementación por Austin Appleby, la cual está en el dominio público.
|
||||
- [getopt for MSVC](https://github.com/skandhurkat/Getopt-for-Visual-Studio/), la cual está en el dominio público.
|
||||
|
|
|
@ -5,7 +5,9 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
|
||||
可在以下网址找到最新新闻和下载:[mgba.io](https://mgba.io/)。
|
||||
|
||||
[![Build status](https://travis-ci.org/mgba-emu/mgba.svg?branch=master)](https://travis-ci.org/mgba-emu/mgba)
|
||||
[![Build status](https://buildbot.mgba.io/badges/build-win32.svg)](https://buildbot.mgba.io)
|
||||
[![Translation status](https://hosted.weblate.org/widgets/mgba/-/svg-badge.svg)](https://hosted.weblate.org/engage/mgba)
|
||||
|
||||
|
||||
功能
|
||||
--------
|
||||
|
@ -13,7 +15,7 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
- 支持高精确的 Game Boy Advance 硬件[<sup>[1]</sup>](#missing)。
|
||||
- 支持 Game Boy/Game Boy Color 硬件。
|
||||
- 快速模拟:已知即使在低端硬件(例如上网本)上也能够全速运行。
|
||||
- 用于重型和轻型前端的 Qt 和 SDL 端口。
|
||||
- 可用于重型和轻型前端的 Qt 和 SDL 移植。
|
||||
- 支持本地(同一台计算机)链接电缆。
|
||||
- 存档类型检测,即使是闪存大小也可检测[<sup>[2]</sup>](#flashdetect)。
|
||||
- 支持附带有运动传感器和振动机制的卡带(仅适用于游戏控制器)。
|
||||
|
@ -21,6 +23,7 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
- 支持《我们的太阳》系列游戏的太阳能传感器。
|
||||
- 支持 Game Boy 相机和 Game Boy 打印机。
|
||||
- 内置 BIOS 执行,并具有加载外部 BIOS 文件的功能。
|
||||
- 支持使用 Lua 编写脚本
|
||||
- 支持 Turbo/快进功能(按住 Tab 键)。
|
||||
- 支持倒带(按住反引号键)。
|
||||
- 支持跳帧,最多可配置 10 级。
|
||||
|
@ -32,10 +35,11 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
- 可重新映射键盘和游戏手柄的控制键。
|
||||
- 支持从 ZIP 和 7z 文件中加载。
|
||||
- 支持 IPS、UPS 和 BPS 补丁。
|
||||
- 支持通过命令行界面和 GDB 远程支持进行游戏调试,兼容 IDA Pro。
|
||||
- 支持通过命令行界面和 GDB 远程支持进行游戏调试,兼容 Ghidra 和 IDA Pro。
|
||||
- 支持可配置的模拟倒带。
|
||||
- 支持载入和导出 GameShark 和 Action Replay 快照。
|
||||
- 适用于 RetroArch/Libretro 和 OpenEmu 的内核。
|
||||
- 社区支持的多种语言翻译 [Weblate](https://hosted.weblate.org/engage/mgba).
|
||||
- 许许多多的小玩意。
|
||||
|
||||
#### Game Boy 映射器(mapper)
|
||||
|
@ -51,9 +55,10 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
- MBC5+振动
|
||||
- MBC7
|
||||
- Wisdom Tree(未授权)
|
||||
- NT "old type" 1 and 2 (未授权多合一卡带)
|
||||
- NT "new type" (未授权 MBC5-like)
|
||||
- Pokémon Jade/Diamond(未授权)
|
||||
- BBD(未授权、类 MBC5)
|
||||
- Hitek(未授权、类 MBC5)
|
||||
- Sachen MMC1 (未授权)
|
||||
|
||||
部分支持以下 mapper:
|
||||
|
||||
|
@ -63,6 +68,11 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
- TAMA5(缺少 RTC 支持)
|
||||
- HuC-1(缺少 IR 支持)
|
||||
- HuC-3(缺少 IR 和 RTC 支持)
|
||||
- Sachen MMC2 (缺少备用接线支持)
|
||||
- BBD (缺少图标切换)
|
||||
- Hitek (缺少图标切换)
|
||||
- GGB-81 (缺少图标切换)
|
||||
- Li Cheng (缺少图标切换)
|
||||
|
||||
### 计划加入的功能
|
||||
|
||||
|
@ -70,7 +80,6 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
- 支持 Dolphin/JOY 总线链接电缆。
|
||||
- MP2k 音频混合,获得比硬件更高质量的声音。
|
||||
- 支持针对工具辅助竞速(Tool-Assisted Speedrun)的重录功能。
|
||||
- 支持 Lua 脚本。
|
||||
- 全方位的调试套件。
|
||||
- 支持无线适配器。
|
||||
|
||||
|
@ -112,17 +121,19 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
编译
|
||||
---------
|
||||
|
||||
编译需要使用 CMake 3.1 或更新版本。已知 GCC 和 Clang 都可以编译 mGBA,而 Visual Studio 2013 和更旧的版本则无法编译。我们即将实现对 Visual Studio 2015 或更新版本的支持。
|
||||
编译需要使用 CMake 3.1 或更新版本。已知 GCC , Clang 和 Visual Studio 2013 都可以编译 mGBA。
|
||||
|
||||
#### Docker 构建
|
||||
|
||||
对于大多数平台来说,建议使用 Docker 进行构建。我们提供了多个 Docker 映像,其中包含在多个平台上构建 mGBA 所需的工具链和依赖项。
|
||||
|
||||
注意: 如果你是用的是 Widnows 10 之前的旧版本 Windows 系统, 你可能需要配置你的 Docker 使用 VirtualBox 共享文件夹以正确映射你当前 mGBA 检出目录到 Docker 镜像中的工作目录. 详细细节参见 issue [#1985](https://mgba.io/i/1985)
|
||||
|
||||
要使用 Docker 映像构建 mGBA,只需在 mGBA 的签出(checkout)根目录中运行以下命令:
|
||||
|
||||
docker run --rm -t -v $PWD:/home/mgba/src mgba/windows:w32
|
||||
|
||||
此命令将生成 `build-win32` 目录。将 `mgba/windows:w32` 替换为其他平台上的 Docker 映像,会生成相应的其他目录。Docker Hub 上提供了以下 Docker 映像:
|
||||
启动 Docker 容器之后, 此命令将生成 `build-win32` 目录, 此目录中包含编译产物。将 `mgba/windows:w32` 替换为其他平台上的 Docker 映像,会生成相应的其他目录。Docker Hub 上提供了以下 Docker 映像:
|
||||
|
||||
- mgba/3ds
|
||||
- mgba/switch
|
||||
|
@ -135,6 +146,8 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
- mgba/windows:w32
|
||||
- mgba/windows:w64
|
||||
|
||||
如果你希望加速编译过程, 可以考虑添加编译选项 `-e MAKEFLAGS=-jN`, 使用 `N` 个 CPU 核心来并行构建 mGBA
|
||||
|
||||
#### *nix 构建
|
||||
|
||||
要在基于 Unix 的系统上使用 CMake 进行构建,推荐执行以下命令:
|
||||
|
@ -147,7 +160,7 @@ mGBA 是一个运行 Game Boy Advance 游戏的模拟器。mGBA 的目标是比
|
|||
|
||||
这些命令将构建 mGBA 并将其安装到 `/usr/bin` 和 `/usr/lib` 中。系统会自动检测已安装的依赖项,如果未找到依赖项,则会在提示找不到依赖项的情况下运行 `cmake` 命令,并显示已被禁用的功能。
|
||||
|
||||
如果您使用的是 MacOS,则步骤略有不同。假设您使用的是自制软件包管理器,建议使用以下命令来获取依赖项并进行构建:
|
||||
如果您使用的是 MacOS,则步骤略有不同。假设您使用的 homebrew 软件包管理器,建议使用以下命令来获取依赖项并进行构建:
|
||||
|
||||
brew install cmake ffmpeg libzip qt5 sdl2 libedit pkg-config
|
||||
mkdir build
|
||||
|
@ -220,10 +233,12 @@ mGBA 没有硬性的依赖项,但是特定功能需要以下可选的依赖项
|
|||
- libzip 或 zlib:载入储存在 ZIP 文件中的 ROM 的所需依赖项。
|
||||
- SQLite3:游戏数据库的所需依赖项
|
||||
- libelf:ELF 载入的所需依赖项
|
||||
- Lua: 脚本支持
|
||||
- json-c: 脚本 `storage` API 支持
|
||||
|
||||
SQLite3、libpng 以及 zlib 已包含在模拟器中,因此不需要先对这些依赖项进行外部编译。
|
||||
|
||||
Footnotes
|
||||
脚注
|
||||
---------
|
||||
|
||||
<a name="missing">[1]</a> 目前缺失的功能有
|
||||
|
@ -232,7 +247,7 @@ Footnotes
|
|||
|
||||
<a name="flashdetect">[2]</a> 闪存大小检测在某些情况下不起作用。 这些可以在运行时中进行配置,但如果遇到此类情况,建议提交错误。
|
||||
|
||||
<a name="osxver">[3]</a> 仅 Qt 端口需要 10.9。应该可以在 10.7 或更早版本上构建或运行 Qt 端口,但这类操作不受官方支持。已知 SDL 端口可以在 10.5 上运行,并且可能能够在旧版本上运行。
|
||||
<a name="osxver">[3]</a> 仅 Qt 移植需要 10.9。应该可以在 10.7 或更早版本上构建或运行 Qt 移植,但这类操作不受官方支持。已知 SDL 移植可以在 10.5 上运行,并且可能能够在旧版本上运行。
|
||||
|
||||
[downloads]: http://mgba.io/downloads.html
|
||||
[source]: https://github.com/mgba-emu/mgba/
|
||||
|
@ -240,12 +255,11 @@ Footnotes
|
|||
版权
|
||||
---------
|
||||
|
||||
mGBA 版权 © 2013 – 2020 Jeffrey Pfau。基于 [Mozilla 公共许可证版本 2.0](https://www.mozilla.org/MPL/2.0/) 许可证分发。分发的 LICENSE 文件中提供了许可证的副本。
|
||||
mGBA 版权 © 2013 – 2023 Jeffrey Pfau。基于 [Mozilla 公共许可证版本 2.0](https://www.mozilla.org/MPL/2.0/) 许可证分发。分发的 LICENSE 文件中提供了许可证的副本。
|
||||
|
||||
mGBA 包含以下第三方库:
|
||||
|
||||
- [inih](https://github.com/benhoyt/inih):版权 © 2009 – 2020 Ben Hoyt,基于 BSD 3-clause 许可证使用。
|
||||
- [blip-buf](https://code.google.com/archive/p/blip-buf):版权 © 2003 – 2009 Shay Green,基于 Lesser GNU 公共许可证使用。
|
||||
- [LZMA SDK](http://www.7-zip.org/sdk.html):属公有领域使用。
|
||||
- [MurmurHash3](https://github.com/aappleby/smhasher):由 Austin Appleby 实施,属公有领域使用。
|
||||
- [getopt for MSVC](https://github.com/skandhurkat/Getopt-for-Visual-Studio/):属公有领域使用。
|
||||
|
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05db RunTest
|
||||
00:0b92 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 998 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05db RunTest
|
||||
00:0b92 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05cb RunTest
|
||||
00:09ed StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 918 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,45 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:062b RunTest
|
||||
00:0649 TestGroup
|
||||
00:0a39 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,45 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:062b RunTest
|
||||
00:0639 TestGroup
|
||||
00:0ec9 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05c3 RunTest
|
||||
00:091d StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 751 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,45 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:062b RunTest
|
||||
00:0639 TestGroup
|
||||
00:0ed6 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05bb RunTest
|
||||
00:0875 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 679 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05bb RunTest
|
||||
00:0875 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 666 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05bb RunTest
|
||||
00:0875 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 679 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05bb RunTest
|
||||
00:088f StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 747 B |
|
@ -0,0 +1,3 @@
|
|||
[testinfo]
|
||||
fail=1
|
||||
skip=180
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05f3 RunTest
|
||||
00:1a0f StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:063b RunTest
|
||||
00:1a82 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.9 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05bb RunTest
|
||||
00:085e StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 682 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,46 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05e3 RunTest
|
||||
00:05f9 TestGroup
|
||||
00:0801 ShortTestGroup
|
||||
00:0912 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:063b RunTest
|
||||
00:1f92 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:063b RunTest
|
||||
00:1cce StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,45 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:063b RunTest
|
||||
00:0940 RunTest.round_6
|
||||
00:1545 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:062b RunTest
|
||||
00:1e2a StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,45 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:062b RunTest
|
||||
00:0643 SubTestGroup
|
||||
00:0ac4 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,3 @@
|
|||
[testinfo]
|
||||
fail=1
|
||||
skip=120
|
|
@ -0,0 +1,45 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05eb RunTest
|
||||
00:05fb TestGroup
|
||||
00:0a7c StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|
|
@ -0,0 +1,44 @@
|
|||
; File generated by rgblink
|
||||
00:00ff reboot
|
||||
00:0100 Start
|
||||
00:0150 LCDOff
|
||||
00:0157 LCDOff.LCDOffLoop
|
||||
00:0163 LCDOff.ret
|
||||
00:0165 LCDOn
|
||||
00:016e LoadFont
|
||||
00:0176 LoadFont.loop
|
||||
00:017c LoadFont.loop2
|
||||
00:0185 LoadFont.loop3
|
||||
00:0192 LoadFont.loop4
|
||||
00:01a1 HexDigits
|
||||
00:03a1 Palette
|
||||
00:03b1 LoadObjPalettes
|
||||
00:03b5 LoadBGPalettes
|
||||
00:03b7 LoadPalettes
|
||||
00:03bc LoadPalettes.loop
|
||||
00:03c2 CommonInit
|
||||
00:03d0 CommonInit.clearLogoTilemap
|
||||
00:03e9 ModemSleep
|
||||
00:0401 ModemCh1Freqs
|
||||
00:0411 ModemCh2Freqs
|
||||
00:0421 ModemCh3Freqs
|
||||
00:0431 ModemSendByte
|
||||
00:0485 ModemStart
|
||||
00:04bf ModemStop
|
||||
00:04c3 ModemSendBuffer
|
||||
00:04cb _Start
|
||||
00:04e7 _Start.loop_u16400
|
||||
00:0502 _Start.failed
|
||||
00:0509 _Start.sendSerial
|
||||
00:0521 _Start.loop_u16401
|
||||
00:052a PrintResults
|
||||
00:0533 PrintResults.yLoop
|
||||
00:0557 PrintResults.xLoop
|
||||
00:0569 PrintResults.correct
|
||||
00:057d PrintResults.correct2
|
||||
00:059e SerialSendByte
|
||||
00:05a4 SerialSendByte.loop
|
||||
00:05ab CorrectResults
|
||||
00:05db RunTest
|
||||
00:0b92 StoreResult
|
||||
01:4000 NopSlide
|
After Width: | Height: | Size: 997 B |
|
@ -0,0 +1,2 @@
|
|||
[testinfo]
|
||||
fail=1
|