mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
Merge remote-tracking branch 'origin/main' into presets
# Conflicts: # files.cmake # src/d/actor/d_a_title.cpp # src/dusk/config.cpp # src/dusk/imgui/ImGuiConsole.cpp # src/dusk/imgui/ImGuiEngine.cpp
This commit is contained in:
@@ -0,0 +1,206 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
- '*LICENSE'
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
SCCACHE_GHA_ENABLED: "true"
|
||||
RUSTC_WRAPPER: "sccache"
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
name: Build Linux (${{matrix.name}})
|
||||
runs-on: ${{matrix.runner}}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: GCC x86_64
|
||||
runner: ubuntu-latest
|
||||
preset: gcc
|
||||
artifact_arch: x86_64
|
||||
- name: GCC aarch64
|
||||
runner: ubuntu-24.04-arm
|
||||
preset: gcc
|
||||
artifact_arch: aarch64
|
||||
# - name: Clang x86_64
|
||||
# runner: ubuntu-latest
|
||||
# preset: clang
|
||||
# artifact_arch: x86_64
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get -y install ninja-build clang lld openssl libcurl4-openssl-dev \
|
||||
zlib1g-dev libglu1-mesa-dev libdbus-1-dev libvulkan-dev libxi-dev libxrandr-dev libasound2-dev \
|
||||
libpulse-dev libudev-dev libpng-dev libncurses5-dev libx11-xcb-dev libfreetype-dev \
|
||||
libxinerama-dev libxcursor-dev python3-markupsafe libgtk-3-dev libssl-dev \
|
||||
libxss-dev libfuse2
|
||||
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.9
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake --preset x-linux-ci-${{matrix.preset}}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build --preset x-linux-ci-${{matrix.preset}}
|
||||
|
||||
- name: Generate AppImage
|
||||
run: ci/build-appimage.sh
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: dusk-${{env.DUSK_VERSION}}-linux-${{matrix.preset}}-${{matrix.artifact_arch}}
|
||||
path: |
|
||||
build/install/Dusk-*.AppImage
|
||||
build/install/debug.tar.*
|
||||
|
||||
|
||||
build-apple:
|
||||
name: Build Apple (${{matrix.name}})
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: AppleClang macOS universal
|
||||
platform: macos
|
||||
preset: x-macos-ci
|
||||
artifact_name: macos-appleclang-universal
|
||||
# - name: AppleClang iOS arm64 # TODO enable when CI is free
|
||||
# platform: ios
|
||||
# preset: x-ios-ci
|
||||
# artifact_name: ios-appleclang-arm64
|
||||
# - name: AppleClang tvOS arm64 # TODO enable when CI is free
|
||||
# platform: tvos
|
||||
# preset: x-tvos-ci
|
||||
# artifact_name: tvos-appleclang-arm64
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
|
||||
- name: Update Homebrew
|
||||
if: matrix.platform == 'tvos'
|
||||
run: |
|
||||
brew update
|
||||
brew upgrade --formula
|
||||
|
||||
- name: Install dependencies
|
||||
run: brew install cmake ninja
|
||||
|
||||
- name: Install markupsafe
|
||||
if: matrix.platform == 'tvos'
|
||||
run: pip3 install --break-system-packages markupsafe
|
||||
|
||||
- name: Install Rust iOS target
|
||||
if: matrix.platform == 'ios'
|
||||
run: rustup target add aarch64-apple-ios
|
||||
|
||||
- name: Install Rust tvOS target
|
||||
if: matrix.platform == 'tvos'
|
||||
run: |
|
||||
rustup toolchain install nightly
|
||||
rustup target add --toolchain nightly aarch64-apple-tvos
|
||||
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.9
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake --preset ${{matrix.preset}}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build --preset ${{matrix.preset}}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: dusk-${{env.DUSK_VERSION}}-${{matrix.artifact_name}}
|
||||
path: |
|
||||
build/install/Dusk.app
|
||||
build/install/debug.tar.*
|
||||
|
||||
build-windows:
|
||||
name: Build Windows (${{matrix.name}})
|
||||
runs-on: ${{matrix.runner}}
|
||||
|
||||
env:
|
||||
BUILD_DIR: C:\build
|
||||
SCCACHE_DIR: C:\sccache
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- name: MSVC x86_64
|
||||
runner: windows-latest
|
||||
preset: msvc
|
||||
msvc_arch: amd64
|
||||
vcpkg_arch: x64
|
||||
artifact_arch: x86_64
|
||||
- name: MSVC arm64
|
||||
runner: windows-11-arm
|
||||
preset: arm64-msvc
|
||||
msvc_arch: arm64
|
||||
vcpkg_arch: arm64
|
||||
artifact_arch: arm64
|
||||
# - name: Clang x86_64
|
||||
# runner: windows-latest
|
||||
# preset: clang
|
||||
# msvc_arch: amd64
|
||||
# vcpkg_arch: x64
|
||||
# artifact_arch: x86_64
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
|
||||
- name: Enable Visual Studio environment
|
||||
uses: ilammy/msvc-dev-cmd@v1
|
||||
with:
|
||||
arch: ${{matrix.msvc_arch}}
|
||||
|
||||
# msvc-dev-cmd sets VCPKG_ROOT, set it back
|
||||
- name: Override VCPKG_ROOT
|
||||
run: echo "VCPKG_ROOT=C:\vcpkg" >> $env:GITHUB_ENV
|
||||
|
||||
- name: Setup sccache
|
||||
uses: mozilla-actions/sccache-action@v0.0.9
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
choco install ninja
|
||||
vcpkg install zlib:${{matrix.vcpkg_arch}}-windows-static bzip2:${{matrix.vcpkg_arch}}-windows-static `
|
||||
zstd:${{matrix.vcpkg_arch}}-windows-static liblzma:${{matrix.vcpkg_arch}}-windows-static `
|
||||
freetype:${{matrix.vcpkg_arch}}-windows-static
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake --preset x-windows-ci-${{matrix.preset}}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build --preset x-windows-ci-${{matrix.preset}}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: dusk-${{env.DUSK_VERSION}}-win32-msvc-${{matrix.artifact_arch}}
|
||||
path: |
|
||||
${{env.BUILD_DIR}}/install/*.exe
|
||||
${{env.BUILD_DIR}}/install/debug.7z
|
||||
+261
-41
@@ -1,14 +1,86 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
if (APPLE)
|
||||
project(dusk LANGUAGES C CXX OBJC OBJCXX)
|
||||
else ()
|
||||
project(dusk LANGUAGES C CXX)
|
||||
cmake_minimum_required(VERSION 3.25)
|
||||
|
||||
if (NOT CMAKE_BUILD_TYPE)
|
||||
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
||||
"Build type options: Debug Release RelWithDebInfo MinSizeRel" FORCE)
|
||||
endif ()
|
||||
|
||||
# obtain revision info from git
|
||||
find_package(Git)
|
||||
if (GIT_FOUND)
|
||||
# make sure version information gets re-run when the current Git HEAD changes
|
||||
execute_process(WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} rev-parse --git-path HEAD
|
||||
OUTPUT_VARIABLE dusk_git_head_filename
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${dusk_git_head_filename}")
|
||||
|
||||
execute_process(WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} rev-parse --symbolic-full-name HEAD
|
||||
OUTPUT_VARIABLE dusk_git_head_symbolic
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
execute_process(WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||
COMMAND ${GIT_EXECUTABLE} rev-parse --git-path ${dusk_git_head_symbolic}
|
||||
OUTPUT_VARIABLE dusk_git_head_symbolic_filename
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${dusk_git_head_symbolic_filename}")
|
||||
|
||||
# defines DUSK_WC_REVISION
|
||||
execute_process(WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} rev-parse HEAD
|
||||
OUTPUT_VARIABLE DUSK_WC_REVISION
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
# defines DUSK_WC_DESCRIBE
|
||||
execute_process(WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --tags --long --dirty --match "v*"
|
||||
OUTPUT_VARIABLE DUSK_WC_DESCRIBE
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
|
||||
# remove the git hash, then collapse a clean "-0" suffix only
|
||||
string(REGEX REPLACE "-[^-]+(-dirty|)$" "\\1" DUSK_WC_DESCRIBE "${DUSK_WC_DESCRIBE}")
|
||||
string(REGEX REPLACE "-0$" "" DUSK_WC_DESCRIBE "${DUSK_WC_DESCRIBE}")
|
||||
|
||||
# defines DUSK_WC_BRANCH
|
||||
execute_process(WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD
|
||||
OUTPUT_VARIABLE DUSK_WC_BRANCH
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
# defines DUSK_WC_DATE
|
||||
execute_process(WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} log -1 --format=%ad
|
||||
OUTPUT_VARIABLE DUSK_WC_DATE
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
else ()
|
||||
message(STATUS "Unable to find git, commit information will not be available")
|
||||
endif ()
|
||||
|
||||
if (DUSK_WC_DESCRIBE)
|
||||
string(REGEX REPLACE "v([0-9]+)\.([0-9]+)\.([0-9]+)\-([0-9]+).*" "\\1.\\2.\\3.\\4" DUSK_VERSION_STRING "${DUSK_WC_DESCRIBE}")
|
||||
string(REGEX REPLACE "v([0-9]+)\.([0-9]+)\.([0-9]+).*" "\\1.\\2.\\3" DUSK_SHORT_VERSION_STRING "${DUSK_WC_DESCRIBE}")
|
||||
else ()
|
||||
set(DUSK_WC_DESCRIBE "UNKNOWN-VERSION")
|
||||
set(DUSK_VERSION_STRING "0.0.0")
|
||||
endif ()
|
||||
|
||||
# Add version information to CI environment variables
|
||||
if(DEFINED ENV{GITHUB_ENV})
|
||||
file(APPEND "$ENV{GITHUB_ENV}" "DUSK_VERSION=${DUSK_WC_DESCRIBE}\n")
|
||||
endif()
|
||||
message(STATUS "Dusk version set to ${DUSK_WC_DESCRIBE}")
|
||||
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
|
||||
project(dusk LANGUAGES C CXX VERSION ${DUSK_VERSION_STRING})
|
||||
if (APPLE AND NOT TVOS AND CMAKE_SYSTEM_NAME STREQUAL tvOS)
|
||||
# ios.toolchain.cmake hack for SDL
|
||||
set(TVOS ON)
|
||||
set(IOS OFF)
|
||||
endif ()
|
||||
|
||||
if(APPLE AND NOT CMAKE_OSX_SYSROOT)
|
||||
# If the Xcode SDK is lagging behind system version, CMake needs this done first
|
||||
execute_process(COMMAND xcrun --sdk macosx --show-sdk-path
|
||||
OUTPUT_VARIABLE CMAKE_OSX_SYSROOT
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
||||
|
||||
if (CMAKE_SYSTEM_NAME STREQUAL Linux)
|
||||
set(DAWN_USE_WAYLAND ON CACHE BOOL "Enable support for Wayland surface" FORCE)
|
||||
@@ -19,15 +91,46 @@ add_subdirectory(extern/aurora EXCLUDE_FROM_ALL)
|
||||
|
||||
add_subdirectory(libs/freeverb)
|
||||
|
||||
option(DUSK_BUILD_WARNINGS "If off, compiler warnings will be suppressed")
|
||||
option(DUSK_BUILD_WARNINGS "Enable compiler warnings (off by default)")
|
||||
option(DUSK_SELECTED_OPT "If on, selected parts of the project will be compiled with optimizations on Debug, intending to make the game run at 30 FPS. Note for MSVC: you will need to remove '/RTC1' from your debug flags in CMake.")
|
||||
option(DUSK_MOVIE_SUPPORT "If on, compile against libjpeg-turbo to enable THP file decoding" ON)
|
||||
|
||||
find_package(libjpeg-turbo)
|
||||
set(DUSK_MOVIE_SUPPORT_REAL ${DUSK_MOVIE_SUPPORT})
|
||||
if (DUSK_MOVIE_SUPPORT AND NOT libjpeg-turbo_FOUND)
|
||||
message(WARNING "libjpeg-turbo not found but DUSK_MOVIE_SUPPORT set, movie playback will not be available!")
|
||||
set(DUSK_MOVIE_SUPPORT_REAL OFF)
|
||||
if (DUSK_MOVIE_SUPPORT)
|
||||
find_package(libjpeg-turbo QUIET)
|
||||
if (libjpeg-turbo_FOUND)
|
||||
message(STATUS "dusk: Using system libjpeg-turbo")
|
||||
else ()
|
||||
message(STATUS "dusk: Fetching libjpeg-turbo")
|
||||
include(ExternalProject)
|
||||
set(_jpeg_install_dir ${CMAKE_BINARY_DIR}/libjpeg-turbo-install)
|
||||
if (WIN32)
|
||||
set(_jpeg_lib ${_jpeg_install_dir}/lib/turbojpeg-static.lib)
|
||||
else ()
|
||||
set(_jpeg_lib ${_jpeg_install_dir}/lib/libturbojpeg.a)
|
||||
endif ()
|
||||
ExternalProject_Add(libjpeg-turbo-ext
|
||||
URL https://github.com/libjpeg-turbo/libjpeg-turbo/archive/refs/tags/3.1.0.tar.gz
|
||||
URL_HASH SHA256=35fec2e1ddfb05ecf6d93e50bc57c1e54bc81c16d611ddf6eff73fff266d8285
|
||||
CMAKE_ARGS
|
||||
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
|
||||
-DCMAKE_INSTALL_PREFIX=${_jpeg_install_dir}
|
||||
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}
|
||||
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER}
|
||||
-DCMAKE_C_COMPILER_LAUNCHER=${CMAKE_C_COMPILER_LAUNCHER}
|
||||
-DCMAKE_MSVC_RUNTIME_LIBRARY=${CMAKE_MSVC_RUNTIME_LIBRARY}
|
||||
-DENABLE_SHARED=OFF
|
||||
-DWITH_TURBOJPEG=ON
|
||||
-DWITH_JAVA=OFF
|
||||
BUILD_BYPRODUCTS ${_jpeg_lib}
|
||||
)
|
||||
file(MAKE_DIRECTORY ${_jpeg_install_dir}/include)
|
||||
add_library(libjpeg-turbo::turbojpeg-static STATIC IMPORTED GLOBAL)
|
||||
set_target_properties(libjpeg-turbo::turbojpeg-static PROPERTIES
|
||||
IMPORTED_LOCATION ${_jpeg_lib}
|
||||
INTERFACE_INCLUDE_DIRECTORIES ${_jpeg_install_dir}/include
|
||||
)
|
||||
add_dependencies(libjpeg-turbo::turbojpeg-static libjpeg-turbo-ext)
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
if (CMAKE_SYSTEM_NAME STREQUAL Linux)
|
||||
@@ -48,6 +151,8 @@ elseif (MSVC)
|
||||
add_compile_options(/bigobj)
|
||||
add_compile_options(/Zc:strictStrings-)
|
||||
add_compile_options(/MP)
|
||||
add_compile_options(/FS)
|
||||
|
||||
if (NOT DUSK_BUILD_WARNINGS)
|
||||
add_compile_options(/W0)
|
||||
else ()
|
||||
@@ -63,33 +168,34 @@ endif ()
|
||||
|
||||
include(FetchContent)
|
||||
|
||||
# Declare all dependencies first so CMake can download them in parallel
|
||||
message(STATUS "dusk: Fetching cxxopts")
|
||||
FetchContent_Declare(
|
||||
cxxopts
|
||||
GIT_REPOSITORY https://github.com/jarro2783/cxxopts.git
|
||||
GIT_TAG v3.3.1
|
||||
FetchContent_Declare(cxxopts
|
||||
URL https://github.com/jarro2783/cxxopts/archive/refs/tags/v3.3.1.tar.gz
|
||||
URL_HASH SHA256=3bfc70542c521d4b55a46429d808178916a579b28d048bd8c727ee76c39e2072
|
||||
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
|
||||
)
|
||||
|
||||
FetchContent_MakeAvailable(cxxopts)
|
||||
message(STATUS "dusk: Fetching nlohmann/json")
|
||||
FetchContent_Declare(json
|
||||
URL https://github.com/nlohmann/json/releases/download/v3.12.0/json.tar.xz
|
||||
URL_HASH SHA256=42f6e95cad6ec532fd372391373363b62a14af6d771056dbfc86160e6dfff7aa
|
||||
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
|
||||
)
|
||||
FetchContent_MakeAvailable(json)
|
||||
FetchContent_MakeAvailable(cxxopts json)
|
||||
|
||||
configure_file(${CMAKE_SOURCE_DIR}/version.h.in ${CMAKE_BINARY_DIR}/version.h)
|
||||
|
||||
include(files.cmake)
|
||||
|
||||
# TODO: version handling for res includes
|
||||
|
||||
set(DUSK_BUNDLE_NAME Dusk)
|
||||
set(DUSK_BUNDLE_IDENTIFIER dev.decomp.dusk)
|
||||
set(DUSK_GAME_NAME "GZ2E")
|
||||
set(DUSK_GAME_VERSION "01")
|
||||
|
||||
set(DUSK_TP_VERSION ${DUSK_GAME_NAME}${DUSK_GAME_VERSION})
|
||||
|
||||
message(STATUS "dusk: Game Name: ${DUSK_GAME_NAME}")
|
||||
message(STATUS "dusk: Game Version: ${DUSK_GAME_VERSION}")
|
||||
message(STATUS "dusk: TP Version: ${DUSK_TP_VERSION}")
|
||||
message(STATUS "dusk: Game Version: ${DUSK_TP_VERSION}")
|
||||
|
||||
source_group("dolzel" FILES ${DOLZEL_FILES} ${Z2AUDIOLIB_FILES} ${JSYSTEM_FILES} ${JSYSTEM_DEBUG_FILES} ${REL_FILES})
|
||||
source_group("dusk" FILES ${DUSK_FILES})
|
||||
@@ -104,20 +210,19 @@ set(GAME_INCLUDE_DIRS
|
||||
libs/JSystem/include
|
||||
libs
|
||||
extern/aurora/include/dolphin
|
||||
extern)
|
||||
extern
|
||||
${CMAKE_BINARY_DIR})
|
||||
|
||||
set(GAME_LIBS aurora::core aurora::gx aurora::gd aurora::si aurora::vi aurora::pad aurora::mtx aurora::os aurora::dvd
|
||||
aurora::card freeverb cxxopts::cxxopts absl::flat_hash_map nlohmann_json::nlohmann_json)
|
||||
aurora::card freeverb cxxopts::cxxopts absl::flat_hash_map nlohmann_json::nlohmann_json TracyClient)
|
||||
|
||||
if (DUSK_MOVIE_SUPPORT_REAL)
|
||||
if (TARGET libjpeg-turbo::turbojpeg-static)
|
||||
message(STATUS "dusk: Linking against libjpeg-turbo static library")
|
||||
list(APPEND GAME_LIBS "libjpeg-turbo::turbojpeg-static")
|
||||
else ()
|
||||
message(STATUS "dusk: Linking against libjpeg-turbo shared library")
|
||||
list(APPEND GAME_LIBS "libjpeg-turbo::turbojpeg")
|
||||
endif ()
|
||||
list(APPEND GAME_COMPILE_DEFS MOVIE_SUPPORT=1)
|
||||
if (DUSK_MOVIE_SUPPORT)
|
||||
if (TARGET libjpeg-turbo::turbojpeg-static)
|
||||
list(APPEND GAME_LIBS libjpeg-turbo::turbojpeg-static)
|
||||
else ()
|
||||
list(APPEND GAME_LIBS libjpeg-turbo::turbojpeg)
|
||||
endif ()
|
||||
list(APPEND GAME_COMPILE_DEFS MOVIE_SUPPORT=1)
|
||||
endif ()
|
||||
|
||||
# game_debug is for game code files that we know work when compiled with DEBUG=1
|
||||
@@ -125,17 +230,13 @@ endif ()
|
||||
add_library(game_debug OBJECT ${JSYSTEM_DEBUG_FILES} ${SSYSTEM_FILES}
|
||||
src/dusk/audio/DuskAudioSystem.cpp
|
||||
src/dusk/audio/JASCriticalSection.cpp
|
||||
src/dusk/audio/DuskDsp.hpp
|
||||
src/dusk/audio/DuskDsp.cpp
|
||||
src/dusk/audio/Adpcm.cpp
|
||||
src/dusk/audio/Adpcm.hpp
|
||||
src/dusk/audio/DspStub.cpp)
|
||||
src/dusk/audio/DspStub.cpp
|
||||
src/dusk/imgui/ImGuiAudio.cpp)
|
||||
|
||||
# game_base is for all other game code files
|
||||
add_library(game_base OBJECT ${DOLZEL_FILES} ${Z2AUDIOLIB_FILES} ${JSYSTEM_FILES} ${REL_FILES} ${DUSK_FILES}
|
||||
${DOLPHIN_FILES}
|
||||
src/dusk/imgui/ImGuiStubLog.cpp
|
||||
src/dusk/imgui/ImGuiAudio.cpp)
|
||||
add_library(game_base OBJECT ${DOLZEL_FILES} ${Z2AUDIOLIB_FILES} ${JSYSTEM_FILES} ${REL_FILES} ${DUSK_FILES} ${DOLPHIN_FILES})
|
||||
|
||||
target_compile_definitions(game_debug PRIVATE ${GAME_COMPILE_DEFS} $<$<CONFIG:Debug>:DEBUG=1> $<$<CONFIG:Debug>:PARTIAL_DEBUG=1>)
|
||||
target_compile_definitions(game_base PRIVATE ${GAME_COMPILE_DEFS} NDEBUG=1 NDEBUG_DEFINED=1 DEBUG_DEFINED=0 $<$<CONFIG:Debug>:PARTIAL_DEBUG=1>)
|
||||
@@ -160,7 +261,7 @@ target_link_libraries(game PUBLIC ${GAME_LIBS})
|
||||
add_executable(dusk src/dusk/main.cpp)
|
||||
target_compile_definitions(dusk PRIVATE TARGET_PC AVOID_UB=1 VERSION=0)
|
||||
target_include_directories(dusk PRIVATE include)
|
||||
target_link_libraries(dusk PRIVATE game aurora::main freeverb)
|
||||
target_link_libraries(dusk PRIVATE game aurora::main)
|
||||
|
||||
add_custom_command(TARGET dusk POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
||||
@@ -169,6 +270,49 @@ add_custom_command(TARGET dusk POST_BUILD
|
||||
COMMENT "Copying resources"
|
||||
)
|
||||
|
||||
if (APPLE)
|
||||
if (IOS)
|
||||
set(DUSK_RESOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/platforms/ios)
|
||||
set(DUSK_INFO_PLIST ${DUSK_RESOURCE_DIR}/Info.plist.in)
|
||||
file(GLOB_RECURSE DUSK_RESOURCE_FILES "${DUSK_RESOURCE_DIR}/Base.lproj/*")
|
||||
endif ()
|
||||
if (IOS OR TVOS)
|
||||
target_sources(dusk PRIVATE ${DUSK_RESOURCE_FILES})
|
||||
foreach (FILE ${DUSK_RESOURCE_FILES})
|
||||
file(RELATIVE_PATH NEW_FILE "${DUSK_RESOURCE_DIR}" ${FILE})
|
||||
get_filename_component(NEW_FILE_PATH ${NEW_FILE} DIRECTORY)
|
||||
set_property(SOURCE ${FILE} PROPERTY MACOSX_PACKAGE_LOCATION "Resources/${NEW_FILE_PATH}")
|
||||
endforeach ()
|
||||
set_target_properties(
|
||||
dusk PROPERTIES
|
||||
MACOSX_BUNDLE TRUE
|
||||
MACOSX_BUNDLE_BUNDLE_NAME ${DUSK_BUNDLE_NAME}
|
||||
MACOSX_BUNDLE_GUI_IDENTIFIER ${DUSK_BUNDLE_IDENTIFIER}
|
||||
MACOSX_BUNDLE_BUNDLE_VERSION ${DUSK_VERSION_STRING}
|
||||
MACOSX_BUNDLE_SHORT_VERSION_STRING ${DUSK_SHORT_VERSION_STRING}
|
||||
OUTPUT_NAME dusk
|
||||
XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED "YES"
|
||||
XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED "YES"
|
||||
)
|
||||
if (CMAKE_GENERATOR STREQUAL "Xcode")
|
||||
set_target_properties(dusk PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${DUSK_INFO_PLIST})
|
||||
elseif (DEFINED DUSK_INFO_PLIST)
|
||||
set(MACOSX_BUNDLE_EXECUTABLE_NAME dusk)
|
||||
set(MACOSX_BUNDLE_GUI_IDENTIFIER ${DUSK_BUNDLE_IDENTIFIER})
|
||||
set(MACOSX_BUNDLE_BUNDLE_NAME ${DUSK_BUNDLE_NAME})
|
||||
set(MACOSX_BUNDLE_BUNDLE_VERSION ${DUSK_VERSION_STRING})
|
||||
set(MACOSX_BUNDLE_SHORT_VERSION_STRING ${DUSK_SHORT_VERSION_STRING})
|
||||
set(DUSK_GENERATED_INFO_PLIST ${CMAKE_CURRENT_BINARY_DIR}/dusk.Info.plist)
|
||||
configure_file(${DUSK_INFO_PLIST} ${DUSK_GENERATED_INFO_PLIST})
|
||||
add_custom_command(
|
||||
TARGET dusk POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${DUSK_GENERATED_INFO_PLIST} $<TARGET_FILE_DIR:dusk>/Info.plist
|
||||
VERBATIM
|
||||
)
|
||||
endif ()
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
include(extern/aurora/cmake/AuroraCopyRuntimeDLLs.cmake)
|
||||
aurora_copy_runtime_dlls(dusk)
|
||||
|
||||
@@ -183,3 +327,79 @@ if (DUSK_SELECTED_OPT)
|
||||
target_compile_options(aurora_gx PRIVATE ${_opt_flags})
|
||||
target_compile_options(freeverb PRIVATE ${_opt_flags})
|
||||
endif ()
|
||||
|
||||
# Packaging logic
|
||||
function(get_target_output_name target result_var)
|
||||
get_target_property(output_name ${target} OUTPUT_NAME)
|
||||
if (NOT output_name)
|
||||
set(${result_var} "${target}" PARENT_SCOPE)
|
||||
else ()
|
||||
set(${result_var} "${output_name}" PARENT_SCOPE)
|
||||
endif ()
|
||||
endfunction()
|
||||
function(get_target_prefix target result_var)
|
||||
set(${result_var} "" PARENT_SCOPE)
|
||||
if (APPLE)
|
||||
# Have to recreate some bundle logic here, since CMake can't tell us
|
||||
get_target_property(is_bundle ${target} MACOSX_BUNDLE)
|
||||
if (is_bundle)
|
||||
get_target_output_name(${target} output_name)
|
||||
if (CMAKE_SYSTEM_NAME STREQUAL Darwin)
|
||||
set(${result_var} "${output_name}.app/Contents/MacOS/" PARENT_SCOPE)
|
||||
else ()
|
||||
set(${result_var} "${output_name}.app/" PARENT_SCOPE)
|
||||
endif ()
|
||||
endif ()
|
||||
endif ()
|
||||
endfunction()
|
||||
list(APPEND BINARY_TARGETS dusk)
|
||||
set(EXTRA_TARGETS "")
|
||||
if (TARGET crashpad_handler)
|
||||
list(APPEND EXTRA_TARGETS crashpad_handler)
|
||||
endif ()
|
||||
install(TARGETS ${BINARY_TARGETS} ${EXTRA_TARGETS} DESTINATION ${CMAKE_INSTALL_PREFIX})
|
||||
if (CMAKE_BUILD_TYPE STREQUAL Debug OR CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo)
|
||||
set(DEBUG_FILES_LIST "")
|
||||
foreach (target IN LISTS BINARY_TARGETS EXTRA_TARGETS)
|
||||
get_target_output_name(${target} output_name)
|
||||
if (WIN32)
|
||||
install(FILES $<TARGET_PDB_FILE:${target}> DESTINATION ${CMAKE_INSTALL_PREFIX} OPTIONAL)
|
||||
elseif (APPLE)
|
||||
get_target_prefix(${target} target_prefix)
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND rm -fr \"$<TARGET_FILE_NAME:${target}>.dSYM\")")
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND dsymutil \"${target_prefix}$<TARGET_FILE_NAME:${target}>\")")
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND strip -S \"${target_prefix}$<TARGET_FILE_NAME:${target}>\")")
|
||||
if (NOT target_prefix STREQUAL "")
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND mv \"${target_prefix}$<TARGET_FILE_NAME:${target}>.dSYM\" .)")
|
||||
endif ()
|
||||
elseif (UNIX)
|
||||
get_target_prefix(${target} target_prefix)
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND objcopy --only-keep-debug \"${target_prefix}$<TARGET_FILE_NAME:${target}>\" \"${target_prefix}$<TARGET_FILE_NAME:${target}>.dbg\")")
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND objcopy --strip-debug --add-gnu-debuglink=$<TARGET_FILE_NAME:${target}>.dbg \"${target_prefix}$<TARGET_FILE_NAME:${target}>\")")
|
||||
endif ()
|
||||
list(APPEND DEBUG_FILES_LIST "${output_name}")
|
||||
endforeach ()
|
||||
if (WIN32)
|
||||
list(TRANSFORM DEBUG_FILES_LIST APPEND ".pdb")
|
||||
list(JOIN DEBUG_FILES_LIST " " DEBUG_FILES)
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND 7z a -t7z \"${CMAKE_INSTALL_PREFIX}/debug.7z\" ${DEBUG_FILES})")
|
||||
elseif (APPLE)
|
||||
list(TRANSFORM DEBUG_FILES_LIST APPEND ".dSYM")
|
||||
list(JOIN DEBUG_FILES_LIST " " DEBUG_FILES)
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND tar acfv \"${CMAKE_INSTALL_PREFIX}/debug.tar.xz\" ${DEBUG_FILES})")
|
||||
elseif (UNIX)
|
||||
list(TRANSFORM DEBUG_FILES_LIST APPEND ".dbg")
|
||||
list(JOIN DEBUG_FILES_LIST " " DEBUG_FILES)
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND tar -I \"xz -9 -T0\" -cvf \"${CMAKE_INSTALL_PREFIX}/debug.tar.xz\" ${DEBUG_FILES})")
|
||||
endif ()
|
||||
endif ()
|
||||
foreach (target IN LISTS BINARY_TARGETS)
|
||||
get_target_prefix(${target} target_prefix)
|
||||
foreach (extra_target IN LISTS EXTRA_TARGETS)
|
||||
get_target_prefix(${extra_target} extra_prefix)
|
||||
if (NOT "${target_prefix}" STREQUAL "${extra_prefix}")
|
||||
# Copy extra target to target prefix
|
||||
install(CODE "execute_process(WORKING_DIRECTORY \"${CMAKE_INSTALL_PREFIX}\" COMMAND cp \"${extra_prefix}$<TARGET_FILE_NAME:${extra_target}>\" \"${target_prefix}$<TARGET_FILE_NAME:${extra_target}>\")")
|
||||
endif ()
|
||||
endforeach ()
|
||||
endforeach ()
|
||||
|
||||
@@ -0,0 +1,603 @@
|
||||
{
|
||||
"version": 2,
|
||||
"cmakeMinimumRequired": {
|
||||
"major": 3,
|
||||
"minor": 25,
|
||||
"patch": 0
|
||||
},
|
||||
"configurePresets": [
|
||||
{
|
||||
"name": "debug",
|
||||
"hidden": true,
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreadedDebugDLL"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "relwithdebinfo",
|
||||
"hidden": true,
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
|
||||
"CMAKE_MSVC_RUNTIME_LIBRARY": "MultiThreaded"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "linux-default",
|
||||
"displayName": "Linux (default)",
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"cacheVariables": {
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install"
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||
"hostOS": [
|
||||
"Linux"
|
||||
]
|
||||
},
|
||||
"microsoft.com/VisualStudioRemoteSettings/CMake/1.0": {
|
||||
"sourceDir": "$env{HOME}/.vs/$ms{projectDirName}"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "linux-default-debug",
|
||||
"displayName": "Linux (default) Debug",
|
||||
"inherits": [
|
||||
"debug",
|
||||
"linux-default"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linux-default-relwithdebinfo",
|
||||
"displayName": "Linux (default) RelWithDebInfo",
|
||||
"inherits": [
|
||||
"relwithdebinfo",
|
||||
"linux-default"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linux-clang",
|
||||
"displayName": "Linux (Clang)",
|
||||
"inherits": [
|
||||
"linux-default"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "clang",
|
||||
"CMAKE_CXX_COMPILER": "clang++"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "linux-clang-debug",
|
||||
"displayName": "Linux (Clang) Debug",
|
||||
"inherits": [
|
||||
"debug",
|
||||
"linux-clang"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "linux-clang-relwithdebinfo",
|
||||
"displayName": "Linux (Clang) RelWithDebInfo",
|
||||
"inherits": [
|
||||
"relwithdebinfo",
|
||||
"linux-clang"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "windows-msvc",
|
||||
"displayName": "Windows (MSVC)",
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/out/build/${presetName}",
|
||||
"architecture": {
|
||||
"value": "x64",
|
||||
"strategy": "external"
|
||||
},
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "cl",
|
||||
"CMAKE_CXX_COMPILER": "cl",
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install"
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||
"hostOS": [
|
||||
"Windows"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "windows-msvc-debug",
|
||||
"displayName": "Windows (MSVC) Debug",
|
||||
"inherits": [
|
||||
"debug",
|
||||
"windows-msvc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "windows-msvc-relwithdebinfo",
|
||||
"displayName": "Windows (MSVC) RelWithDebInfo",
|
||||
"inherits": [
|
||||
"relwithdebinfo",
|
||||
"windows-msvc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "windows-arm64-msvc",
|
||||
"displayName": "Windows ARM64 (MSVC)",
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/out/build/${presetName}",
|
||||
"architecture": {
|
||||
"value": "arm64",
|
||||
"strategy": "external"
|
||||
},
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "cl",
|
||||
"CMAKE_CXX_COMPILER": "cl",
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install",
|
||||
"AURORA_DAWN_PROVIDER": "vendor"
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||
"hostOS": [
|
||||
"Windows"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "windows-clang",
|
||||
"displayName": "Windows (Clang)",
|
||||
"inherits": [
|
||||
"windows-msvc"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "clang-cl",
|
||||
"CMAKE_CXX_COMPILER": "clang-cl",
|
||||
"CMAKE_LINKER": "lld-link"
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||
"intelliSenseMode": "windows-clang-x64"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "windows-clang-debug",
|
||||
"displayName": "Windows (Clang) Debug",
|
||||
"inherits": [
|
||||
"debug",
|
||||
"windows-clang"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "windows-clang-relwithdebinfo",
|
||||
"displayName": "Windows (Clang) RelWithDebInfo",
|
||||
"inherits": [
|
||||
"relwithdebinfo",
|
||||
"windows-clang"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macos-default",
|
||||
"displayName": "macOS (default)",
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"cacheVariables": {
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install"
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||
"hostOS": [
|
||||
"macOS"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "macos-default-debug",
|
||||
"displayName": "macOS (default) Debug",
|
||||
"inherits": [
|
||||
"debug",
|
||||
"macos-default"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "macos-default-relwithdebinfo",
|
||||
"displayName": "macOS (default) RelWithDebInfo",
|
||||
"inherits": [
|
||||
"relwithdebinfo",
|
||||
"macos-default"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ios-default",
|
||||
"displayName": "iOS",
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"inherits": [
|
||||
"relwithdebinfo"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_TOOLCHAIN_FILE": "ios.toolchain.cmake",
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install",
|
||||
"PLATFORM": "OS64",
|
||||
"DEPLOYMENT_TARGET": "14.0",
|
||||
"ENABLE_BITCODE": {
|
||||
"type": "BOOL",
|
||||
"value": false
|
||||
},
|
||||
"ENABLE_ARC": {
|
||||
"type": "BOOL",
|
||||
"value": false
|
||||
},
|
||||
"Rust_CARGO_TARGET": "aarch64-apple-ios",
|
||||
"BUILD_SHARED_LIBS": {
|
||||
"type": "BOOL",
|
||||
"value": false
|
||||
},
|
||||
"CMAKE_DISABLE_FIND_PACKAGE_BZip2": {
|
||||
"type": "BOOL",
|
||||
"value": true
|
||||
},
|
||||
"CMAKE_DISABLE_FIND_PACKAGE_LibLZMA": {
|
||||
"type": "BOOL",
|
||||
"value": true
|
||||
},
|
||||
"CMAKE_DISABLE_FIND_PACKAGE_zstd": {
|
||||
"type": "BOOL",
|
||||
"value": true
|
||||
},
|
||||
"CMAKE_DISABLE_FIND_PACKAGE_Freetype": {
|
||||
"type": "BOOL",
|
||||
"value": true
|
||||
}
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||
"hostOS": [
|
||||
"macOS"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "tvos-default",
|
||||
"displayName": "tvOS",
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"inherits": [
|
||||
"relwithdebinfo"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_TOOLCHAIN_FILE": "ios.toolchain.cmake",
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install",
|
||||
"PLATFORM": "TVOS",
|
||||
"DEPLOYMENT_TARGET": "14.5",
|
||||
"ENABLE_BITCODE": {
|
||||
"type": "BOOL",
|
||||
"value": false
|
||||
},
|
||||
"Rust_CARGO_TARGET": "aarch64-apple-tvos",
|
||||
"Rust_TOOLCHAIN": "nightly",
|
||||
"BUILD_SHARED_LIBS": {
|
||||
"type": "BOOL",
|
||||
"value": false
|
||||
},
|
||||
"CMAKE_DISABLE_FIND_PACKAGE_BZip2": {
|
||||
"type": "BOOL",
|
||||
"value": true
|
||||
},
|
||||
"CMAKE_DISABLE_FIND_PACKAGE_LibLZMA": {
|
||||
"type": "BOOL",
|
||||
"value": true
|
||||
},
|
||||
"CMAKE_DISABLE_FIND_PACKAGE_zstd": {
|
||||
"type": "BOOL",
|
||||
"value": true
|
||||
}
|
||||
},
|
||||
"vendor": {
|
||||
"microsoft.com/VisualStudioSettings/CMake/1.0": {
|
||||
"hostOS": [
|
||||
"macOS"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "android-base",
|
||||
"hidden": true,
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"inherits": [
|
||||
"relwithdebinfo"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_INSTALL_PREFIX": "${sourceDir}/build/install",
|
||||
"CMAKE_TOOLCHAIN_FILE": "$env{ANDROID_HOME}/ndk/$env{ANDROID_NDK_VERSION}/build/cmake/android.toolchain.cmake",
|
||||
"ANDROID_PLATFORM": "android-24"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "android-arm64",
|
||||
"displayName": "Android (arm64-v8a)",
|
||||
"inherits": [
|
||||
"android-base"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"ANDROID_ABI": "arm64-v8a"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "android-x86_64",
|
||||
"displayName": "Android (x86_64)",
|
||||
"inherits": [
|
||||
"android-base"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"ANDROID_ABI": "x86_64"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "x-linux-ci",
|
||||
"hidden": true,
|
||||
"inherits": [
|
||||
"relwithdebinfo"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER_LAUNCHER": "sccache",
|
||||
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "x-linux-ci-gcc",
|
||||
"inherits": [
|
||||
"x-linux-ci",
|
||||
"linux-default"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-linux-ci-clang",
|
||||
"inherits": [
|
||||
"x-linux-ci",
|
||||
"linux-clang"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-macos-ci",
|
||||
"inherits": [
|
||||
"macos-default-relwithdebinfo"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER_LAUNCHER": "sccache",
|
||||
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "x-ios-ci",
|
||||
"inherits": [
|
||||
"ios-default"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER_LAUNCHER": "sccache",
|
||||
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "x-tvos-ci",
|
||||
"inherits": [
|
||||
"tvos-default"
|
||||
],
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER_LAUNCHER": "sccache",
|
||||
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "x-windows-ci",
|
||||
"hidden": true,
|
||||
"inherits": [
|
||||
"relwithdebinfo"
|
||||
],
|
||||
"binaryDir": "$env{BUILD_DIR}",
|
||||
"cacheVariables": {
|
||||
"CMAKE_INSTALL_PREFIX": "$env{BUILD_DIR}/install",
|
||||
"CMAKE_C_COMPILER_LAUNCHER": "sccache",
|
||||
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache",
|
||||
"CMAKE_MSVC_DEBUG_INFORMATION_FORMAT": "Embedded"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "x-windows-ci-msvc",
|
||||
"inherits": [
|
||||
"x-windows-ci",
|
||||
"windows-msvc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-windows-ci-clang",
|
||||
"inherits": [
|
||||
"x-windows-ci",
|
||||
"windows-clang"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-windows-ci-arm64-msvc",
|
||||
"inherits": [
|
||||
"x-windows-ci",
|
||||
"windows-arm64-msvc"
|
||||
]
|
||||
}
|
||||
],
|
||||
"buildPresets": [
|
||||
{
|
||||
"name": "linux-default-debug",
|
||||
"configurePreset": "linux-default-debug",
|
||||
"description": "Linux (default) debug build",
|
||||
"displayName": "Linux (default) Debug"
|
||||
},
|
||||
{
|
||||
"name": "linux-default-relwithdebinfo",
|
||||
"configurePreset": "linux-default-relwithdebinfo",
|
||||
"description": "Linux (default) release build with debug info",
|
||||
"displayName": "Linux (default) RelWithDebInfo"
|
||||
},
|
||||
{
|
||||
"name": "linux-clang-debug",
|
||||
"configurePreset": "linux-clang-debug",
|
||||
"description": "Linux (Clang) debug build",
|
||||
"displayName": "Linux (Clang) Debug"
|
||||
},
|
||||
{
|
||||
"name": "linux-clang-relwithdebinfo",
|
||||
"configurePreset": "linux-clang-relwithdebinfo",
|
||||
"description": "Linux (Clang) release build with debug info",
|
||||
"displayName": "Linux (Clang) RelWithDebInfo"
|
||||
},
|
||||
{
|
||||
"name": "macos-default-debug",
|
||||
"configurePreset": "macos-default-debug",
|
||||
"description": "macOS debug build",
|
||||
"displayName": "macOS Debug"
|
||||
},
|
||||
{
|
||||
"name": "macos-default-relwithdebinfo",
|
||||
"configurePreset": "macos-default-relwithdebinfo",
|
||||
"description": "macOS release build with debug info",
|
||||
"displayName": "macOS RelWithDebInfo"
|
||||
},
|
||||
{
|
||||
"name": "ios-default",
|
||||
"configurePreset": "ios-default",
|
||||
"description": "iOS release build with debug info",
|
||||
"displayName": "iOS RelWithDebInfo",
|
||||
"targets": [
|
||||
"dusk"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tvos-default",
|
||||
"configurePreset": "tvos-default",
|
||||
"description": "tvOS release build with debug info",
|
||||
"displayName": "tvOS RelWithDebInfo",
|
||||
"targets": [
|
||||
"dusk"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "android-arm64",
|
||||
"configurePreset": "android-arm64",
|
||||
"description": "Android arm64-v8a release build with debug info",
|
||||
"displayName": "Android arm64-v8a RelWithDebInfo",
|
||||
"targets": [
|
||||
"dusk"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "android-x86_64",
|
||||
"configurePreset": "android-x86_64",
|
||||
"description": "Android x86_64 release build with debug info",
|
||||
"displayName": "Android x86_64 RelWithDebInfo",
|
||||
"targets": [
|
||||
"dusk"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "windows-msvc-debug",
|
||||
"configurePreset": "windows-msvc-debug",
|
||||
"description": "Windows (MSVC) debug build",
|
||||
"displayName": "Windows (MSVC) Debug"
|
||||
},
|
||||
{
|
||||
"name": "windows-msvc-relwithdebinfo",
|
||||
"configurePreset": "windows-msvc-relwithdebinfo",
|
||||
"description": "Windows (MSVC) release build with debug info",
|
||||
"displayName": "Windows (MSVC) RelWithDebInfo"
|
||||
},
|
||||
{
|
||||
"name": "windows-clang-debug",
|
||||
"configurePreset": "windows-clang-debug",
|
||||
"description": "Windows (Clang) debug build",
|
||||
"displayName": "Windows (Clang) Debug"
|
||||
},
|
||||
{
|
||||
"name": "windows-clang-relwithdebinfo",
|
||||
"configurePreset": "windows-clang-relwithdebinfo",
|
||||
"description": "Windows (Clang) release build with debug info",
|
||||
"displayName": "Windows (Clang) RelWithDebInfo"
|
||||
},
|
||||
{
|
||||
"name": "x-linux-ci-gcc",
|
||||
"configurePreset": "x-linux-ci-gcc",
|
||||
"description": "(Internal) Linux CI GCC",
|
||||
"displayName": "(Internal) Linux CI GCC",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-linux-ci-clang",
|
||||
"configurePreset": "x-linux-ci-clang",
|
||||
"description": "(Internal) Linux CI Clang",
|
||||
"displayName": "(Internal) Linux CI Clang",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-macos-ci",
|
||||
"configurePreset": "x-macos-ci",
|
||||
"description": "(Internal) macOS CI",
|
||||
"displayName": "(Internal) macOS CI",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-ios-ci",
|
||||
"configurePreset": "x-ios-ci",
|
||||
"description": "(Internal) iOS CI",
|
||||
"displayName": "(Internal) iOS CI",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-tvos-ci",
|
||||
"configurePreset": "x-tvos-ci",
|
||||
"description": "(Internal) tvOS CI",
|
||||
"displayName": "(Internal) tvOS CI",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-windows-ci-msvc",
|
||||
"configurePreset": "x-windows-ci-msvc",
|
||||
"description": "(Internal) Windows CI MSVC",
|
||||
"displayName": "(Internal) Windows CI MSVC",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-windows-ci-clang",
|
||||
"configurePreset": "x-windows-ci-clang",
|
||||
"description": "(Internal) Windows CI Clang",
|
||||
"displayName": "(Internal) Windows CI Clang",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "x-windows-ci-arm64-msvc",
|
||||
"configurePreset": "x-windows-ci-arm64-msvc",
|
||||
"description": "(Internal) Windows CI MSVC arm64",
|
||||
"displayName": "(Internal) Windows CI MSVC arm64",
|
||||
"targets": [
|
||||
"install"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -2,22 +2,22 @@
|
||||
|
||||
### Building
|
||||
#### Prerequisites
|
||||
* [CMake 3.30+](https://cmake.org)
|
||||
* [CMake 3.25+](https://cmake.org)
|
||||
* Windows: Install `CMake Tools` in Visual Studio
|
||||
* macOS: `brew install cmake`
|
||||
* [Python 3+](https://python.org)
|
||||
* Windows: [Microsoft Store](https://go.microsoft.com/fwlink?linkID=2082640)
|
||||
* Verify it's added to `%PATH%` by typing `python` in `cmd`.
|
||||
* macOS: `brew install python@3`
|
||||
* **[Windows]** [Visual Studio 2022 Community](https://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx)
|
||||
* **[Windows]** [Visual Studio 2026 Community](https://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx)
|
||||
* Select `C++ Development` and verify the following packages are included:
|
||||
* `Windows 10 SDK`
|
||||
* `Windows 11 SDK`
|
||||
* `CMake Tools`
|
||||
* `C++ Clang Compiler`
|
||||
* `C++ Clang-cl`
|
||||
* **[macOS]** [Xcode 11.5+](https://developer.apple.com/xcode/download/)
|
||||
* **[Linux]** Actively tested on Ubuntu 20.04, Arch Linux & derivatives.
|
||||
* Ubuntu 20.04+ packages
|
||||
* **[macOS]** [Xcode 16.4+](https://developer.apple.com/xcode/download/)
|
||||
* **[Linux]** Actively tested on Ubuntu 24.04, Arch Linux & derivatives.
|
||||
* Ubuntu 24.04+ packages
|
||||
```
|
||||
build-essential curl git ninja-build clang lld zlib1g-dev libcurl4-openssl-dev \
|
||||
libglu1-mesa-dev libdbus-1-dev libvulkan-dev libxi-dev libxrandr-dev libasound2-dev libpulse-dev \
|
||||
@@ -39,32 +39,62 @@
|
||||
#### Setup
|
||||
Clone and initialize the Dusk repository
|
||||
```sh
|
||||
git clone --recursive https://github.com/TakaRikka/dusk.git
|
||||
git clone --recursive https://github.com/TwilitRealm/dusk.git
|
||||
cd dusk
|
||||
git pull
|
||||
git submodule update --recursive
|
||||
git submodule update --init --recursive
|
||||
```
|
||||
|
||||
#### Building
|
||||
**Visual Studio (Recommended for Windows)**
|
||||
|
||||
**CLion (Windows / macOS / Linux)**
|
||||
|
||||
Open the project directory in CLion. Enable the appropriate presets for your platform:
|
||||
|
||||

|
||||
|
||||
**Visual Studio (Windows)**
|
||||
|
||||
Open the project directory in Visual Studio. The CMake configuration will be loaded automatically.
|
||||
|
||||
**ninja (macOS)**
|
||||
|
||||
```sh
|
||||
cmake -B build/dusk -G "Visual Studio 17 2022" -A x64 # Win32 for 32bit
|
||||
cmake --preset macos-default-relwithdebinfo
|
||||
cmake --build --preset macos-default-relwithdebinfo
|
||||
```
|
||||
|
||||
**Visual Studio Code with ninja**
|
||||
Alternate presets available:
|
||||
- `macos-default-debug`: Clang, Debug
|
||||
|
||||
Project has support for the CMakeTools extension with variants and has a debug launch target
|
||||
**ninja (Linux)**
|
||||
|
||||
**ninja (Windows/macOS/Linux)**
|
||||
```sh
|
||||
cmake -B build/dusk -GNinja
|
||||
ninja -C build/dusk
|
||||
cmake --preset linux-default-relwithdebinfo
|
||||
cmake --build --preset linux-default-relwithdebinfo
|
||||
```
|
||||
|
||||
Alternate presets available:
|
||||
- `linux-default-debug`: GCC, Debug
|
||||
- `linux-clang-relwithdebinfo`: Clang, RelWithDebInfo
|
||||
- `linux-clang-debug`: Clang, Debug
|
||||
|
||||
**ninja (Windows)**
|
||||
|
||||
```sh
|
||||
cmake --preset windows-msvc-relwithdebinfo
|
||||
cmake --build --preset windows-msvc-relwithdebinfo
|
||||
```
|
||||
|
||||
Alternate presets available:
|
||||
- `windows-msvc-debug`: MSVC, Debug
|
||||
- `windows-clang-relwithdebinfo`: Clang-cl, RelWithDebInfo
|
||||
- `windows-clang-debug`: Clang-cl, Debug
|
||||
|
||||
#### Running
|
||||
Pass the disc image as a positional argument. Supported formats: ISO (GCM), RVZ, WIA, WBFS, CISO, GCZ
|
||||
```sh
|
||||
build/dusk/dusk /path/to/game.rvz
|
||||
build/{preset}/dusk /path/to/game.rvz
|
||||
```
|
||||
If no path is specified, Dusk defaults to `game.iso` in the current working directory.
|
||||
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 543 KiB |
Executable
+18
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash -ex
|
||||
shopt -s extglob
|
||||
|
||||
# Get linuxdeploy
|
||||
cd "$RUNNER_WORKSPACE"
|
||||
curl -fOL https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-$(uname -m).AppImage
|
||||
chmod +x linuxdeploy-$(uname -m).AppImage
|
||||
|
||||
# Build AppImage
|
||||
cd "$GITHUB_WORKSPACE"
|
||||
mkdir -p build/appdir/usr/{bin,share/{applications,icons/hicolor}}
|
||||
cp build/install/!(*.*) build/appdir/usr/bin
|
||||
cp -r platforms/freedesktop/{16x16,32x32,48x48,64x64,128x128,256x256,512x512,1024x1024} build/appdir/usr/share/icons/hicolor
|
||||
cp platforms/freedesktop/dusk.desktop build/appdir/usr/share/applications
|
||||
|
||||
cd build/install
|
||||
VERSION="$DUSK_VERSION" NO_STRIP=1 "$RUNNER_WORKSPACE"/linuxdeploy-$(uname -m).AppImage \
|
||||
--appdir "$GITHUB_WORKSPACE"/build/appdir --output appimage
|
||||
@@ -1,758 +0,0 @@
|
||||
41ba85f7b9ce10916ef321b987c42d715d7ffab0 build/DZDE01/f_pc_profile_lst/f_pc_profile_lst.rel
|
||||
f936e4f74cefb061505fa64d4a9614edcc9822ec build/DZDE01/d_a_andsw/d_a_andsw.rel
|
||||
42f899246e117c6e1e9accad72ac78dc67cba8b5 build/DZDE01/d_a_bg/d_a_bg.rel
|
||||
433cbc90961ca97f00f369d4acfa3d38e539c3b6 build/DZDE01/d_a_bg_obj/d_a_bg_obj.rel
|
||||
7883486d55800fc232a18eec0ac7615ab9c5795b build/DZDE01/d_a_dmidna/d_a_dmidna.rel
|
||||
c98fc02c23ba4e6af9e37f54e3a532b67ffedfaf build/DZDE01/d_a_door_dbdoor00/d_a_door_dbdoor00.rel
|
||||
5d929a9a7b07a8504422380c60df44d7a892aba2 build/DZDE01/d_a_door_knob00/d_a_door_knob00.rel
|
||||
d149b680f185c44c49dd2288f1cf84c85e1e1f14 build/DZDE01/d_a_door_shutter/d_a_door_shutter.rel
|
||||
de40dc62bb8e9af99533b2a86c950da875b3ca54 build/DZDE01/d_a_door_spiral/d_a_door_spiral.rel
|
||||
85ba33267e80fa1b8224c4700a6837fe0fbae8f8 build/DZDE01/d_a_dshutter/d_a_dshutter.rel
|
||||
118041317558b9f53d189ea75114eef70b98cbdb build/DZDE01/d_a_ep/d_a_ep.rel
|
||||
4d13f95d23e7187321c8e90adebeb2873d8166c8 build/DZDE01/d_a_hitobj/d_a_hitobj.rel
|
||||
9e8054ddf73e0270b0088061ccf4174f5402087d build/DZDE01/d_a_kytag00/d_a_kytag00.rel
|
||||
9e9c416cd58d66edc89c5c1b4c963eaa601dee5a build/DZDE01/d_a_kytag04/d_a_kytag04.rel
|
||||
51328b7ed7305519920acfe7cbe699914502cecd build/DZDE01/d_a_kytag17/d_a_kytag17.rel
|
||||
b444a9137f57cdb6422d25264e20b5eadc29e5f2 build/DZDE01/d_a_no_chg_room/d_a_no_chg_room.rel
|
||||
f7b194a02e6e9416dc29c46deb1d9346784fb08a build/DZDE01/d_a_obj_brakeeff/d_a_obj_brakeeff.rel
|
||||
30228329add58242710fca867d816ea8615155f7 build/DZDE01/d_a_obj_burnbox/d_a_obj_burnbox.rel
|
||||
837df0b6716f7339a0c08e8e00cb9d31ac44dc22 build/DZDE01/d_a_obj_carry/d_a_obj_carry.rel
|
||||
4259a6aeecbdccbafeee1c54d01ce8158835fc38 build/DZDE01/d_a_obj_ito/d_a_obj_ito.rel
|
||||
99c6e31e5e4ddfea1aeec9d47063febaa438e9e6 build/DZDE01/d_a_obj_movebox/d_a_obj_movebox.rel
|
||||
c05d132bf1cbe8b2da36ff26ac3ef78b7a07f1bc build/DZDE01/d_a_obj_swpush/d_a_obj_swpush.rel
|
||||
9d06d095bb15435191bd753dc9cd382e18362c26 build/DZDE01/d_a_obj_timer/d_a_obj_timer.rel
|
||||
4bd9d0fed3589cb35adab7e9b81cde674246ae1e build/DZDE01/d_a_path_line/d_a_path_line.rel
|
||||
e7bff801420586671e4a48cecd25c26bdf9a6159 build/DZDE01/d_a_scene_exit/d_a_scene_exit.rel
|
||||
7f672bb4b0cc1763a80b688b9a7e8a74de8fcac7 build/DZDE01/d_a_set_bgobj/d_a_set_bgobj.rel
|
||||
2141e575c6edc64fbcf4d6697ed6612645d03362 build/DZDE01/d_a_swhit0/d_a_swhit0.rel
|
||||
19cfabbdff13b0307736ffa572032f26dc367f17 build/DZDE01/d_a_tag_allmato/d_a_tag_allmato.rel
|
||||
f4d4fc75f561a906c1edcf35577bcd8a94c3c8b3 build/DZDE01/d_a_tag_camera/d_a_tag_camera.rel
|
||||
4f8076c44daabd414692f708c9b2e690378933a1 build/DZDE01/d_a_tag_chkpoint/d_a_tag_chkpoint.rel
|
||||
664f921c23b6f5aa6be4115bc50d6f5c9793bbfb build/DZDE01/d_a_tag_event/d_a_tag_event.rel
|
||||
c1d32fd1afe6489f9eb4aa069ded6b9395d75192 build/DZDE01/d_a_tag_evt/d_a_tag_evt.rel
|
||||
6e62ac17cb0ff5810d67d3de3d5c512a805f8d32 build/DZDE01/d_a_tag_evtarea/d_a_tag_evtarea.rel
|
||||
86f9fdc6b1d9cc9a3fc4650d0b03a7ef1cc8c6bf build/DZDE01/d_a_tag_evtmsg/d_a_tag_evtmsg.rel
|
||||
3a2786136db3fd8d0b5119614d83ab28dd6b9cf3 build/DZDE01/d_a_tag_howl/d_a_tag_howl.rel
|
||||
7f1ec2a2253262a566a7137fbd21526736fbb59f build/DZDE01/d_a_tag_kmsg/d_a_tag_kmsg.rel
|
||||
c028fe08dfec858735e08e649d2cdc22710ed9c5 build/DZDE01/d_a_tag_lantern/d_a_tag_lantern.rel
|
||||
ca5191f5b6a6e6e6ff07dd0f4df93504e4bc4e83 build/DZDE01/d_a_tag_mist/d_a_tag_mist.rel
|
||||
6c4405634fc8c41a89a6ed0cca62530c6888c886 build/DZDE01/d_a_tag_msg/d_a_tag_msg.rel
|
||||
c0aefa3aa3d757161d65937a5d3697bb3cb12079 build/DZDE01/d_a_tag_push/d_a_tag_push.rel
|
||||
0c68bab3fa33c5c36732134740113fa05bc7bd33 build/DZDE01/d_a_tag_telop/d_a_tag_telop.rel
|
||||
04afe6cbbdd4cedba249c4b767d8300e5cf45d9a build/DZDE01/d_a_tbox/d_a_tbox.rel
|
||||
981918555d9a26e03bb272e86e48b56b2d359273 build/DZDE01/d_a_tbox2/d_a_tbox2.rel
|
||||
bf45f4912f17ea5c05b7a1085eb08c0602581d54 build/DZDE01/d_a_vrbox/d_a_vrbox.rel
|
||||
5e030fd281dbb0e8188d083055daa9e58026ae7a build/DZDE01/d_a_vrbox2/d_a_vrbox2.rel
|
||||
f9785c98bb6b66fd52d320ab3024b9c36798b7ac build/DZDE01/d_a_arrow/d_a_arrow.rel
|
||||
47584e0cfbc979426b395a9ebdeb966794a64b24 build/DZDE01/d_a_boomerang/d_a_boomerang.rel
|
||||
47649e21c87e63d286ee2e6b62418020ebaa3736 build/DZDE01/d_a_crod/d_a_crod.rel
|
||||
34eec00c2bcf2b9d1c4eceabc8233c5642400859 build/DZDE01/d_a_demo00/d_a_demo00.rel
|
||||
75a184bce7d77b8b127b94ab02d4137f1d12db23 build/DZDE01/d_a_disappear/d_a_disappear.rel
|
||||
9cc5d4095c092fc2233ac630e9247a8593d130d0 build/DZDE01/d_a_mg_rod/d_a_mg_rod.rel
|
||||
12e3406417c06eda85f06e2523c82f4f2abf6498 build/DZDE01/d_a_midna/d_a_midna.rel
|
||||
36d2c64c3abf64441e6649351ce7988ccbbf074d build/DZDE01/d_a_nbomb/d_a_nbomb.rel
|
||||
f34a63b5f70e0dff11c362d61f577fe87282604b build/DZDE01/d_a_obj_life_container/d_a_obj_life_container.rel
|
||||
9ac618bbc33aeab23e41abcfcb86e406b6523846 build/DZDE01/d_a_obj_yousei/d_a_obj_yousei.rel
|
||||
212973eda13ea413e52eac83461b763810956326 build/DZDE01/d_a_spinner/d_a_spinner.rel
|
||||
af272d1abb85fecc33bb088048711f9960dfa33b build/DZDE01/d_a_suspend/d_a_suspend.rel
|
||||
715dc80e02445d267f32556c92ecfd2d199693cb build/DZDE01/d_a_tag_attention/d_a_tag_attention.rel
|
||||
d1b859a2546fba21e56038826c341e0f9f4e90a4 build/DZDE01/d_a_alldie/d_a_alldie.rel
|
||||
8c4dadc0820be2241e99a5199ea29e1e3d412b30 build/DZDE01/d_a_andsw2/d_a_andsw2.rel
|
||||
b75ff46bfb7f076c6469a9747c843c9244fecb49 build/DZDE01/d_a_bd/d_a_bd.rel
|
||||
357f1290dc4679c8cae47033590a1a1ba7f6d04f build/DZDE01/d_a_canoe/d_a_canoe.rel
|
||||
292255341067346c24526ae8c3761a75c8dc2743 build/DZDE01/d_a_cstaF/d_a_cstaF.rel
|
||||
9334d3ab807c93f8a4f5a8c66850be19b34b2e81 build/DZDE01/d_a_demo_item/d_a_demo_item.rel
|
||||
620759c9418f8e3af3059d7d50a51b407ee65473 build/DZDE01/d_a_door_bossL1/d_a_door_bossL1.rel
|
||||
c003b3b22a321deeb823b7f4eeb71f60954d1a3f build/DZDE01/d_a_e_dn/d_a_e_dn.rel
|
||||
6197151727f2c190fd977198daf1867abebadb7b build/DZDE01/d_a_e_fm/d_a_e_fm.rel
|
||||
c5caef197baf302782d7d351f5bd60340b3dc978 build/DZDE01/d_a_e_ga/d_a_e_ga.rel
|
||||
47812d8f1eddd9bfa5abc8a97a66081a3b600037 build/DZDE01/d_a_e_hb/d_a_e_hb.rel
|
||||
2fc7bcbda116658bb31762b2b5320271c0752b6b build/DZDE01/d_a_e_nest/d_a_e_nest.rel
|
||||
f9338d505a0d4c636ade50c37d2e8712f33362cd build/DZDE01/d_a_e_rd/d_a_e_rd.rel
|
||||
9a0e0a37aa4d7bb81b5c72503f208a62e36d9c98 build/DZDE01/d_a_econt/d_a_econt.rel
|
||||
97d8b702e285e1a3f57611013ccf854d6c8403da build/DZDE01/d_a_fr/d_a_fr.rel
|
||||
267c7e9014cf3de6df1b2cbabcb01c6c76052122 build/DZDE01/d_a_grass/d_a_grass.rel
|
||||
3aca0e6af5d8dace2de5f4bd3c2753399b10f159 build/DZDE01/d_a_kytag05/d_a_kytag05.rel
|
||||
652fe4243036f6b88c1a9b428f0d79af8a6af857 build/DZDE01/d_a_kytag10/d_a_kytag10.rel
|
||||
10dd16637fedf8c3f2700684844063a3c9989ef4 build/DZDE01/d_a_kytag11/d_a_kytag11.rel
|
||||
c8d46eb8e88cd11c29ec998353a0e9596a842188 build/DZDE01/d_a_kytag14/d_a_kytag14.rel
|
||||
d90c4e9a96ccd160992726d6617a0fd3c73ed890 build/DZDE01/d_a_mg_fish/d_a_mg_fish.rel
|
||||
84a3e7a46e26106b60aa9cf72ced3216008677f0 build/DZDE01/d_a_npc_besu/d_a_npc_besu.rel
|
||||
9533aad4ea7160a8ead1849cf776d47124ef70df build/DZDE01/d_a_npc_fairy_seirei/d_a_npc_fairy_seirei.rel
|
||||
fe4ad4050d0fa8fe93d62227a168ef91b6ca7410 build/DZDE01/d_a_npc_fish/d_a_npc_fish.rel
|
||||
09bb283513fb4e0076850371a4b70634ed062ef6 build/DZDE01/d_a_npc_henna/d_a_npc_henna.rel
|
||||
8a55141645b7b0ecb09fb8ba153b9d227a8574dc build/DZDE01/d_a_npc_kakashi/d_a_npc_kakashi.rel
|
||||
2f7de6d9062d900a8d541438c300e67a90e0d1cc build/DZDE01/d_a_npc_kkri/d_a_npc_kkri.rel
|
||||
241a445cb7a18041c87033ac82a5ceedb7574283 build/DZDE01/d_a_npc_kolin/d_a_npc_kolin.rel
|
||||
cfd4b61e3e18000be0a1f326e5a50b808e10ff52 build/DZDE01/d_a_npc_maro/d_a_npc_maro.rel
|
||||
0f7c0f595fd0928e8160c4ca9c0f0c621ceaac6d build/DZDE01/d_a_npc_taro/d_a_npc_taro.rel
|
||||
0a8087a34b5601d531a137b2026681df9eab794d build/DZDE01/d_a_npc_tkj/d_a_npc_tkj.rel
|
||||
4f34e01e31126ec5a406e8f16b9aaed4579a1157 build/DZDE01/d_a_obj_bhashi/d_a_obj_bhashi.rel
|
||||
42004635a781fe29b447f282b424040c116162c6 build/DZDE01/d_a_obj_bkdoor/d_a_obj_bkdoor.rel
|
||||
03eeb68f7bad1d3e45d7aeef30aeac08ee6def8e build/DZDE01/d_a_obj_bosswarp/d_a_obj_bosswarp.rel
|
||||
4bb530efa9ebd2de4fe196e8cbe7cbbe886e32a9 build/DZDE01/d_a_obj_cboard/d_a_obj_cboard.rel
|
||||
b9156603f35b29de501fe1d6ef19105bc8ba7b41 build/DZDE01/d_a_obj_digplace/d_a_obj_digplace.rel
|
||||
4264f385c4a3f7f1fdc25c39e0585ca82f865005 build/DZDE01/d_a_obj_eff/d_a_obj_eff.rel
|
||||
5a22759041dd7d5497921cdfece83df3c4432475 build/DZDE01/d_a_obj_fmobj/d_a_obj_fmobj.rel
|
||||
ef4ede82ea1fc2655aad7225ed7bc3558cf62b61 build/DZDE01/d_a_obj_gpTaru/d_a_obj_gpTaru.rel
|
||||
2ef2bc4d3674f9583a6a13e31921f10f2f951391 build/DZDE01/d_a_obj_hhashi/d_a_obj_hhashi.rel
|
||||
9aa88ec4fce3999565cf2ef2b266aa405860ba4b build/DZDE01/d_a_obj_kanban2/d_a_obj_kanban2.rel
|
||||
8065097ee0a6c932a90e87274fe2b7cb31cbbcbd build/DZDE01/d_a_obj_kgate/d_a_obj_kgate.rel
|
||||
7ea468743dd1206e9aa65160f10d0281e1f021d2 build/DZDE01/d_a_obj_klift00/d_a_obj_klift00.rel
|
||||
72f9e54cc3a11e13a190bb770ae03c274e0d929c build/DZDE01/d_a_obj_ktOnFire/d_a_obj_ktOnFire.rel
|
||||
f7debbc490a009a6c2376c0cf901c299b80f23fc build/DZDE01/d_a_obj_ladder/d_a_obj_ladder.rel
|
||||
00774006f92f6413488617a395e133360d9dbf2d build/DZDE01/d_a_obj_lv2Candle/d_a_obj_lv2Candle.rel
|
||||
2326a5bee1fdc5a05b0ddf244ea50e9b7e63c8af build/DZDE01/d_a_obj_magne_arm/d_a_obj_magne_arm.rel
|
||||
cfe7c2439f8495de10c45d697ba348c561fd82c2 build/DZDE01/d_a_obj_metalbox/d_a_obj_metalbox.rel
|
||||
21308d9d0d19f620e24b030d24d0d45ab14352e9 build/DZDE01/d_a_obj_mgate/d_a_obj_mgate.rel
|
||||
4ce255e4554cf6888737d1b963c42876b89e8fc2 build/DZDE01/d_a_obj_nameplate/d_a_obj_nameplate.rel
|
||||
7b949375227ffa8eb69f74020df7de37c1d6271b build/DZDE01/d_a_obj_ornament_cloth/d_a_obj_ornament_cloth.rel
|
||||
4954717aeb55a803790417f19e7efeda2f4b54b7 build/DZDE01/d_a_obj_rope_bridge/d_a_obj_rope_bridge.rel
|
||||
31625c984e3a139b4ccd09ee1ed6f853843574de build/DZDE01/d_a_obj_sWallShutter/d_a_obj_sWallShutter.rel
|
||||
2975f1e4d9421a92af6e81957104ddc16ed28e45 build/DZDE01/d_a_obj_stick/d_a_obj_stick.rel
|
||||
5bd1ae3fd1f2ac24dc1b09f1ad41b887012045c5 build/DZDE01/d_a_obj_stoneMark/d_a_obj_stoneMark.rel
|
||||
1903502f78495a19a7bfbdce9fb4880daa8ad383 build/DZDE01/d_a_obj_swpropeller/d_a_obj_swpropeller.rel
|
||||
63ae7fc199fd7f5a1098e77eda094a607256fe13 build/DZDE01/d_a_obj_swpush5/d_a_obj_swpush5.rel
|
||||
175345cc0148857cfe1e24620887084fd73f1baa build/DZDE01/d_a_obj_yobikusa/d_a_obj_yobikusa.rel
|
||||
ce62f285681325ad06940505a9a429837ff23e7b build/DZDE01/d_a_scene_exit2/d_a_scene_exit2.rel
|
||||
b2c79ab34f48292ab6103ef23166e9a821b39ba9 build/DZDE01/d_a_shop_item/d_a_shop_item.rel
|
||||
f4827b1c47e2a43816523f6d45ca297482649eb5 build/DZDE01/d_a_sq/d_a_sq.rel
|
||||
5f3aa9a2b38d5683afde34ccb9298bd04cd47a0c build/DZDE01/d_a_swc00/d_a_swc00.rel
|
||||
40ec08722fc0ae98807320023138c4c2869c8eb5 build/DZDE01/d_a_tag_CstaSw/d_a_tag_CstaSw.rel
|
||||
ede6a4ef65c0b048a7315b09b4185a2934714d07 build/DZDE01/d_a_tag_ajnot/d_a_tag_ajnot.rel
|
||||
a7784330b95d00c753f1699c406479edc09adfae build/DZDE01/d_a_tag_attack_item/d_a_tag_attack_item.rel
|
||||
5464c3d6db8088adc70c84b04f6cd059a50c17ec build/DZDE01/d_a_tag_gstart/d_a_tag_gstart.rel
|
||||
21afb869c1aef8c147b276e4d5b99ab69f8da98b build/DZDE01/d_a_tag_hinit/d_a_tag_hinit.rel
|
||||
8a57629c82f1d590808171f08df2702f7becc7a0 build/DZDE01/d_a_tag_hjump/d_a_tag_hjump.rel
|
||||
86032e899937ed18013e5d4254ea55b3f692b3de build/DZDE01/d_a_tag_hstop/d_a_tag_hstop.rel
|
||||
c6da500dcd5dcb418a558661e26981999b72df1e build/DZDE01/d_a_tag_lv2prchk/d_a_tag_lv2prchk.rel
|
||||
3109df215bbb5a5063e140846486949e183cb85b build/DZDE01/d_a_tag_magne/d_a_tag_magne.rel
|
||||
16908882329a0a9d352f9595ef3397981e2e99eb build/DZDE01/d_a_tag_mhint/d_a_tag_mhint.rel
|
||||
9290a199166f26f8249686614a264e01e51e5385 build/DZDE01/d_a_tag_mstop/d_a_tag_mstop.rel
|
||||
fb1bc5d8494374e4e1e46aba88d8e86ad70d35c0 build/DZDE01/d_a_tag_spring/d_a_tag_spring.rel
|
||||
34e6ba833254a6b71508a1fb0eb86e599bfa94cb build/DZDE01/d_a_tag_statue_evt/d_a_tag_statue_evt.rel
|
||||
400da4cc3474092830e90aa8fafc844d8891f74d build/DZDE01/d_a_ykgr/d_a_ykgr.rel
|
||||
313959c13a4954513dbcdcf4fb53414aa08edf9a build/DZDE01/d_a_L7demo_dr/d_a_L7demo_dr.rel
|
||||
fe02307a56edb39dbdf7d0c32e0cc1d8b37e9801 build/DZDE01/d_a_L7low_dr/d_a_L7low_dr.rel
|
||||
60774a7f6a393006214f32e2f7da8bc7bcc18331 build/DZDE01/d_a_L7op_demo_dr/d_a_L7op_demo_dr.rel
|
||||
9815c6ff2765520d642dd789afc199e484f6ded4 build/DZDE01/d_a_b_bh/d_a_b_bh.rel
|
||||
ea7baad25e03e2b43ec306c90eb28c18f7f2d055 build/DZDE01/d_a_b_bq/d_a_b_bq.rel
|
||||
ca690a24becff39bc0e51d7cd31eb1bcc253c9e9 build/DZDE01/d_a_b_dr/d_a_b_dr.rel
|
||||
0d1960c88eebfe4ff6f529e2944a20dfc9cc721d build/DZDE01/d_a_b_dre/d_a_b_dre.rel
|
||||
54d809c8efebb53bef47cfa0abe614dd47e10088 build/DZDE01/d_a_b_ds/d_a_b_ds.rel
|
||||
4200c7f3627e63b74ece50bdca7281dd2023e4dd build/DZDE01/d_a_b_gg/d_a_b_gg.rel
|
||||
268cd59f35bb1d462e2041cfb0610c667162e92c build/DZDE01/d_a_b_gm/d_a_b_gm.rel
|
||||
b2ddd56e392c58abf10042df407b57a8ba48a821 build/DZDE01/d_a_b_gnd/d_a_b_gnd.rel
|
||||
19c8309566cc8e3713cfee0c7f810a966fe8fee5 build/DZDE01/d_a_b_go/d_a_b_go.rel
|
||||
68a801f32299677a6ed8c1c8f03437e313d35616 build/DZDE01/d_a_b_gos/d_a_b_gos.rel
|
||||
5c2aa6c89694fb9db39987d6446aa653e9e41a5d build/DZDE01/d_a_b_mgn/d_a_b_mgn.rel
|
||||
e1407a89ec5cdbddab0e125457d3011937c8e288 build/DZDE01/d_a_b_ob/d_a_b_ob.rel
|
||||
8786cf56ff0957389019e4352b3653cff0cbabc4 build/DZDE01/d_a_b_oh/d_a_b_oh.rel
|
||||
f10c95a71a9b17027ad5d8c293c0ea6c6d233c12 build/DZDE01/d_a_b_oh2/d_a_b_oh2.rel
|
||||
ead7aaee7247ac79e8fb8f5098fc0fda90b5144a build/DZDE01/d_a_b_tn/d_a_b_tn.rel
|
||||
ef1373e0a21fc653b0d9b972a95bee184c259fdc build/DZDE01/d_a_b_yo/d_a_b_yo.rel
|
||||
0f75174851ff21a858767bfae588dea794c6f119 build/DZDE01/d_a_b_yo_ice/d_a_b_yo_ice.rel
|
||||
e972818d00829b89957f6cdc301592e966fa3ac4 build/DZDE01/d_a_b_zant/d_a_b_zant.rel
|
||||
5ffc7ee302ed43282520526c02fd297fc9a4bd0d build/DZDE01/d_a_b_zant_magic/d_a_b_zant_magic.rel
|
||||
28e9db21debdc6e887815c89cb4d5b499e911ccd build/DZDE01/d_a_b_zant_mobile/d_a_b_zant_mobile.rel
|
||||
2c172bb955cffe101251ee45be711b07e248ac70 build/DZDE01/d_a_b_zant_sima/d_a_b_zant_sima.rel
|
||||
6c0fab234eb125d0761cc5ee2b419d19f1a80237 build/DZDE01/d_a_balloon_2D/d_a_balloon_2D.rel
|
||||
0830ff85247ea67de847f02e536b784f4c070389 build/DZDE01/d_a_bullet/d_a_bullet.rel
|
||||
972bc90c9ddc404e214a9d9bfdfc765f19aec4ae build/DZDE01/d_a_coach_2D/d_a_coach_2D.rel
|
||||
65d9ac43deecd3f26f2a620853629be73c537510 build/DZDE01/d_a_coach_fire/d_a_coach_fire.rel
|
||||
3e77c7baec297106a964c336a0e847e79d00a982 build/DZDE01/d_a_cow/d_a_cow.rel
|
||||
efd74577ce816d2a0c0a638103304a54b70d2b7d build/DZDE01/d_a_cstatue/d_a_cstatue.rel
|
||||
468f63a57476d175c54da0d9d69dfcbfe3d311b4 build/DZDE01/d_a_do/d_a_do.rel
|
||||
103d7414ea413f0c5a87f008541b04143a0f5353 build/DZDE01/d_a_door_boss/d_a_door_boss.rel
|
||||
d52f388b9b00f5e2c8975b8bc60df0fc13b7d1e4 build/DZDE01/d_a_door_bossL5/d_a_door_bossL5.rel
|
||||
6f65ca361ac79275ecaaabed2da1c47fa442006c build/DZDE01/d_a_door_mbossL1/d_a_door_mbossL1.rel
|
||||
c90037dc48d9daf26396f293679c8f048b585958 build/DZDE01/d_a_door_push/d_a_door_push.rel
|
||||
50003a07ab27a458a70ae38e7ce6ccec869a6770 build/DZDE01/d_a_e_ai/d_a_e_ai.rel
|
||||
f8f68bdeffc61a3f308bc5bf8a67255f5c2cd8c9 build/DZDE01/d_a_e_arrow/d_a_e_arrow.rel
|
||||
1376493d8b8a621ca4a1561d4d40001e7c5e6a47 build/DZDE01/d_a_e_ba/d_a_e_ba.rel
|
||||
123d2b6ebc3bcecefa5149563b55b546de16dec3 build/DZDE01/d_a_e_bee/d_a_e_bee.rel
|
||||
9be97fa65ab8eda3048fd9e80af6572f5bb5505c build/DZDE01/d_a_e_bg/d_a_e_bg.rel
|
||||
86e07f697b3ec49fcb737ae1baddda0f6d717fe5 build/DZDE01/d_a_e_bi/d_a_e_bi.rel
|
||||
9de4e9caf880e3db58e058f675d6699dfb70728e build/DZDE01/d_a_e_bi_leaf/d_a_e_bi_leaf.rel
|
||||
da6780e4171dcfb5f5addf87ac4dbdd38c7aed8d build/DZDE01/d_a_e_bs/d_a_e_bs.rel
|
||||
c1a869400fd983ad75bb63e8d438de60e9f3df29 build/DZDE01/d_a_e_bu/d_a_e_bu.rel
|
||||
4469533c04d367e4242538331f65af1c89bd39be build/DZDE01/d_a_e_bug/d_a_e_bug.rel
|
||||
ee530f195bb1a6460ba6a93301341d97167db833 build/DZDE01/d_a_e_cr/d_a_e_cr.rel
|
||||
ddc4d69f3916aef2023e9478af2600dcfdf9afef build/DZDE01/d_a_e_cr_egg/d_a_e_cr_egg.rel
|
||||
a92c3403d561b51679512029d6904f687ebfb5fc build/DZDE01/d_a_e_db/d_a_e_db.rel
|
||||
b7bfa8934e9dc0e661b7b9767cb21f8a8311ad52 build/DZDE01/d_a_e_db_leaf/d_a_e_db_leaf.rel
|
||||
f030f691a7df3f6265be808e9a7109efb6ad38e0 build/DZDE01/d_a_e_dd/d_a_e_dd.rel
|
||||
0c9a03e2ad204644522f286b1251e21bf913d6a6 build/DZDE01/d_a_e_df/d_a_e_df.rel
|
||||
68f7606975f71bbb20722dd8a5e41a8252548f40 build/DZDE01/d_a_e_dk/d_a_e_dk.rel
|
||||
510091e234ead64912a8b6a3cbd183523b6dc044 build/DZDE01/d_a_e_dt/d_a_e_dt.rel
|
||||
2424173acf68bce4aba9199a14141b53e42db673 build/DZDE01/d_a_e_fb/d_a_e_fb.rel
|
||||
fffad65601276fa4158b5f89e36969022ae51b19 build/DZDE01/d_a_e_fk/d_a_e_fk.rel
|
||||
a92dad3799a5acd75dae31530627d89def3c9a84 build/DZDE01/d_a_e_fs/d_a_e_fs.rel
|
||||
5e701c8de479b173de03c1f8b0f9e7d18b094394 build/DZDE01/d_a_e_fz/d_a_e_fz.rel
|
||||
80b5249062f8056e4abe682ae442a511403983a1 build/DZDE01/d_a_e_gb/d_a_e_gb.rel
|
||||
ccb2651d424c16bf3451c911242beee45e2710a2 build/DZDE01/d_a_e_ge/d_a_e_ge.rel
|
||||
7e97696176088b8463700038a670e2286219b411 build/DZDE01/d_a_e_gi/d_a_e_gi.rel
|
||||
572851f518ad12876f0dae7bcd60e7d1dea343da build/DZDE01/d_a_e_gm/d_a_e_gm.rel
|
||||
d91ef961282ed3cd8fe8caf4b9ad46c7c6e54356 build/DZDE01/d_a_e_gob/d_a_e_gob.rel
|
||||
f819b2c04f1e98d5cba93b4dfa6978f2533db1f2 build/DZDE01/d_a_e_gs/d_a_e_gs.rel
|
||||
8ed728a562176d25339ae9941d3ae21f122a5fbe build/DZDE01/d_a_e_hb_leaf/d_a_e_hb_leaf.rel
|
||||
0eaba3c17fb54987c811135060a94c3e03e2f192 build/DZDE01/d_a_e_hm/d_a_e_hm.rel
|
||||
263a740a068d227c2d79f8e44b382a7644714c62 build/DZDE01/d_a_e_hp/d_a_e_hp.rel
|
||||
a49bb87673173430b9556e4cc6c9bbde92ff4dcb build/DZDE01/d_a_e_hz/d_a_e_hz.rel
|
||||
17384b3e48a1290ddb0dd88322b73f761cd8c6de build/DZDE01/d_a_e_hzelda/d_a_e_hzelda.rel
|
||||
438f637a9a353ace1b8dd292f6361e8dace34bbd build/DZDE01/d_a_e_is/d_a_e_is.rel
|
||||
2bd6dcb3517c73becd3ef04d869d70afca91afd6 build/DZDE01/d_a_e_kg/d_a_e_kg.rel
|
||||
854ded6f51838b4189f5f8cf366e6361b2fd4b10 build/DZDE01/d_a_e_kk/d_a_e_kk.rel
|
||||
f4ca705e10c4a646a2fa61804186a62f982ec257 build/DZDE01/d_a_e_kr/d_a_e_kr.rel
|
||||
5d63fe25ae73d2d5615f8e25e27c15e409f5f241 build/DZDE01/d_a_e_mb/d_a_e_mb.rel
|
||||
1e332dbe91ecf939f525ad960a8298a1b5978100 build/DZDE01/d_a_e_md/d_a_e_md.rel
|
||||
e72439d1acbfe46c18aa8e503e88931d244572f4 build/DZDE01/d_a_e_mf/d_a_e_mf.rel
|
||||
55e568e193e85536451ed8d20721a867f4e2ec5c build/DZDE01/d_a_e_mk/d_a_e_mk.rel
|
||||
ad261df321e7a0cd59e2dd0782d40b3fd9d42ff2 build/DZDE01/d_a_e_mk_bo/d_a_e_mk_bo.rel
|
||||
826af32189fc905743ed31023c8f96bc17dc2abc build/DZDE01/d_a_e_mm/d_a_e_mm.rel
|
||||
4da4dcbfb8f1b3be004540ee8099a779d7b0e45b build/DZDE01/d_a_e_mm_mt/d_a_e_mm_mt.rel
|
||||
5da2afaef2d988a1624da5230cff2768f4c3350a build/DZDE01/d_a_e_ms/d_a_e_ms.rel
|
||||
bb31a78c586b1c6cc2fac20231c06b92b124fd0e build/DZDE01/d_a_e_nz/d_a_e_nz.rel
|
||||
444988129b08a1abf1fd63d7d88337d91b4733ef build/DZDE01/d_a_e_oc/d_a_e_oc.rel
|
||||
a64f5a12d1cb8bb317ab77a874526cb50b2fafd3 build/DZDE01/d_a_e_oct_bg/d_a_e_oct_bg.rel
|
||||
4a751aaf339aa9069945a0bdc69f8b03386e021d build/DZDE01/d_a_e_ot/d_a_e_ot.rel
|
||||
6b6e9f60a0011da87817d549bee113300a53333b build/DZDE01/d_a_e_ph/d_a_e_ph.rel
|
||||
4673db4d9391ab041052d0b2aceecf89257320dc build/DZDE01/d_a_e_pm/d_a_e_pm.rel
|
||||
7d31cd8b3bd5aec8ed10bf338642da5bcead67ce build/DZDE01/d_a_e_po/d_a_e_po.rel
|
||||
adbbfd63005da0dce418bd66a048df659eca760e build/DZDE01/d_a_e_pz/d_a_e_pz.rel
|
||||
98ed3da3b85d7be9dfa5db8927977efc206fee1b build/DZDE01/d_a_e_rb/d_a_e_rb.rel
|
||||
81f364404a6c8df3bbab122bdc9c7895738bcbae build/DZDE01/d_a_e_rdb/d_a_e_rdb.rel
|
||||
3514fc3c327151a762963a71cf938bae9974a5d3 build/DZDE01/d_a_e_rdy/d_a_e_rdy.rel
|
||||
e684851ba63ded44296d84929a65ed949c52be68 build/DZDE01/d_a_e_s1/d_a_e_s1.rel
|
||||
9efb91998cb8634b3eb090543c42100565aaece1 build/DZDE01/d_a_e_sb/d_a_e_sb.rel
|
||||
2c5fc1598a4bd9e7c195790dbb40f6bfcffb6007 build/DZDE01/d_a_e_sf/d_a_e_sf.rel
|
||||
6ce58527e8e3e8f565eff4b4383b1f3958847588 build/DZDE01/d_a_e_sg/d_a_e_sg.rel
|
||||
a021acb3b455cc530a5b98e8e942d0366b3112b6 build/DZDE01/d_a_e_sh/d_a_e_sh.rel
|
||||
5fe09dddda0ec93e0af9d227de1dff26a561d814 build/DZDE01/d_a_e_sm/d_a_e_sm.rel
|
||||
33f32a879c837fa316cf0697819800cc8dc92901 build/DZDE01/d_a_e_sm2/d_a_e_sm2.rel
|
||||
a9a994b11d0a45e907029eaf95bfffff973e6442 build/DZDE01/d_a_e_st/d_a_e_st.rel
|
||||
7760ef7e8285576b4f786e0e4d8513f26478f186 build/DZDE01/d_a_e_st_line/d_a_e_st_line.rel
|
||||
8b6bf1e4cb20aa80f4fd34dbee3e6673d53b8416 build/DZDE01/d_a_e_sw/d_a_e_sw.rel
|
||||
d912a2682d5b8c66b8996cf178cafd132461a042 build/DZDE01/d_a_e_th/d_a_e_th.rel
|
||||
dca1a5cfc0566367b320ff0c32fb3b4c5577a55e build/DZDE01/d_a_e_th_ball/d_a_e_th_ball.rel
|
||||
08ac821f5674dc282f8fb696e7a2f84daae9e82f build/DZDE01/d_a_e_tk/d_a_e_tk.rel
|
||||
a9db8b1d478b188752ebe60715142905fb25e539 build/DZDE01/d_a_e_tk2/d_a_e_tk2.rel
|
||||
aeae0d8d208382f7e69c58bc190354936d8b1d17 build/DZDE01/d_a_e_tk_ball/d_a_e_tk_ball.rel
|
||||
f85f1cb6334e35b4c3e71ca0c450c882e97adfe0 build/DZDE01/d_a_e_tt/d_a_e_tt.rel
|
||||
784ba8064340b1d2b32e8cd21274729e60ad2e82 build/DZDE01/d_a_e_vt/d_a_e_vt.rel
|
||||
c71894e77454eda098ad3bae88f8e357f0f9da38 build/DZDE01/d_a_e_warpappear/d_a_e_warpappear.rel
|
||||
97702c6541db91a65b9f93c13d7750cffeba8720 build/DZDE01/d_a_e_wb/d_a_e_wb.rel
|
||||
49eca22f2302e06d3014878e72af7f8921badf32 build/DZDE01/d_a_e_ws/d_a_e_ws.rel
|
||||
222525259b7b1e7ce8a0cecfd86aa849de10c563 build/DZDE01/d_a_e_ww/d_a_e_ww.rel
|
||||
6a0c82f81a90cb7913234dcde8af48be136b52ba build/DZDE01/d_a_e_yc/d_a_e_yc.rel
|
||||
0b75435bc25289b4aa8da9078e5b8f16591f4284 build/DZDE01/d_a_e_yd/d_a_e_yd.rel
|
||||
9ae042d03614d7cbc78cd449a94adb5248e3e972 build/DZDE01/d_a_e_yd_leaf/d_a_e_yd_leaf.rel
|
||||
435964ea581b560bc7d16322ef9da4e7eec441e8 build/DZDE01/d_a_e_yg/d_a_e_yg.rel
|
||||
edf8e4850ef95dd7bf9119bb70dc27801b09b278 build/DZDE01/d_a_e_yh/d_a_e_yh.rel
|
||||
50c85ff476e58445da38cc249b28a6b4ae9f3578 build/DZDE01/d_a_e_yk/d_a_e_yk.rel
|
||||
114ded122d32ceea77e420401a9b0a8dc892dc0e build/DZDE01/d_a_e_ym/d_a_e_ym.rel
|
||||
d87f2904e6517280558f0e27e73bf817054774a6 build/DZDE01/d_a_e_ym_tag/d_a_e_ym_tag.rel
|
||||
ff42cf1b10ff8c88637e59a14d5f393d06aa44ce build/DZDE01/d_a_e_ymb/d_a_e_ymb.rel
|
||||
aadec2f1c33f9329bfeda92d4364af63acf23504 build/DZDE01/d_a_e_yr/d_a_e_yr.rel
|
||||
4ae0914a396e84ce3279417e45b22f113afec3cb build/DZDE01/d_a_e_zh/d_a_e_zh.rel
|
||||
5ee66261ecffc0fa2a845d6f1a775ad5ae275ab1 build/DZDE01/d_a_e_zm/d_a_e_zm.rel
|
||||
ffc05312c4f2e327ea59536009d47103858f1a08 build/DZDE01/d_a_e_zs/d_a_e_zs.rel
|
||||
c86a7039a9b90d71b411a68dc9884b687ee3edc5 build/DZDE01/d_a_formation_mng/d_a_formation_mng.rel
|
||||
0e631343d0cccccc2aefdc8d51a69a3da020da87 build/DZDE01/d_a_guard_mng/d_a_guard_mng.rel
|
||||
7863dc6f59e7f33f18bcf89c73a98fe65716bb09 build/DZDE01/d_a_horse/d_a_horse.rel
|
||||
8c06e777340d384ff550037cbf1957189d15746e build/DZDE01/d_a_hozelda/d_a_hozelda.rel
|
||||
10a3f52a48e259e84c3d2d9a824ea7b50b3ba402 build/DZDE01/d_a_izumi_gate/d_a_izumi_gate.rel
|
||||
c8831955c251f86ea2dfebf5a76bd66808cd2038 build/DZDE01/d_a_kago/d_a_kago.rel
|
||||
f26b4e7b8f41c0fdbae5de1cec00dd9ee098f5d0 build/DZDE01/d_a_kytag01/d_a_kytag01.rel
|
||||
aabd8be3a8fe4920bb4233b71af7dde5bb619a7b build/DZDE01/d_a_kytag02/d_a_kytag02.rel
|
||||
a66d3b035756e65e5b7247bc8fbb5789260debec build/DZDE01/d_a_kytag03/d_a_kytag03.rel
|
||||
b24e1d56648a0765da58d4183df11e33db69a7d0 build/DZDE01/d_a_kytag06/d_a_kytag06.rel
|
||||
a78af4793bd8231ce308cc3a39a00e004013d111 build/DZDE01/d_a_kytag07/d_a_kytag07.rel
|
||||
9c293f497004dd0a8c6297b699212e8f73a3ae68 build/DZDE01/d_a_kytag08/d_a_kytag08.rel
|
||||
558210c92503d62ab4ac712065ea11a1af976b66 build/DZDE01/d_a_kytag09/d_a_kytag09.rel
|
||||
4758146217d5994ab9f0467c1eff6c21e4532522 build/DZDE01/d_a_kytag12/d_a_kytag12.rel
|
||||
a15c31c9159517ad88a6594bb1973264790b5407 build/DZDE01/d_a_kytag13/d_a_kytag13.rel
|
||||
33ad8e6cee5023509bf88f625a57cb4bcf8cc60b build/DZDE01/d_a_kytag15/d_a_kytag15.rel
|
||||
d68c62008116089057ef892fae7c624a23a48553 build/DZDE01/d_a_kytag16/d_a_kytag16.rel
|
||||
7684a03c364868060105048245292fd4c9ef6cf5 build/DZDE01/d_a_mant/d_a_mant.rel
|
||||
561635f1b2fd447e136cb4a38d94069216cca6e0 build/DZDE01/d_a_mg_fshop/d_a_mg_fshop.rel
|
||||
00f57e55e737401df2688f58e8c8679cebdb25fe build/DZDE01/d_a_mirror/d_a_mirror.rel
|
||||
6cfe7ae057c90fab095fca4fa8a7a07345f5cc21 build/DZDE01/d_a_movie_player/d_a_movie_player.rel
|
||||
60b993ce50ae035613510d4d238de385742ffde4 build/DZDE01/d_a_myna/d_a_myna.rel
|
||||
d16f89d42939397f4bb1927a0e18f81a9eab861f build/DZDE01/d_a_ni/d_a_ni.rel
|
||||
7672d9df2da5fedeba541dca86e98ca53e14d904 build/DZDE01/d_a_npc_aru/d_a_npc_aru.rel
|
||||
f9e206b9b68f8332cd7b118e11e7abc042b858ff build/DZDE01/d_a_npc_ash/d_a_npc_ash.rel
|
||||
971d46e1658baaea91ed63b11b41d7da84e91cb1 build/DZDE01/d_a_npc_ashB/d_a_npc_ashB.rel
|
||||
8f708b71e80972708284da7e4130f0adf35ca801 build/DZDE01/d_a_npc_bans/d_a_npc_bans.rel
|
||||
c0a98d301433faca4fad3090e26d3cf3cdf37c74 build/DZDE01/d_a_npc_blue_ns/d_a_npc_blue_ns.rel
|
||||
48236cb87f58221665e8395c03a6c70c74300a84 build/DZDE01/d_a_npc_bou/d_a_npc_bou.rel
|
||||
0f4904d3b86ed7ff9c328d5cb43292fe3ae614c3 build/DZDE01/d_a_npc_bouS/d_a_npc_bouS.rel
|
||||
7798ae5765e184b4beefa0bd8d5b8296f00b47af build/DZDE01/d_a_npc_cdn3/d_a_npc_cdn3.rel
|
||||
0b59a799025e45f00c55645f8508270a6aff43d7 build/DZDE01/d_a_npc_chat/d_a_npc_chat.rel
|
||||
12d101524cfc70ebec0fe6de78824ad5d587f05b build/DZDE01/d_a_npc_chin/d_a_npc_chin.rel
|
||||
05217cd4e9ba164edcb077f94ee9c730032495b4 build/DZDE01/d_a_npc_clerka/d_a_npc_clerka.rel
|
||||
5d745b9ff93eda6d0a6444d7b543fde95bf4d795 build/DZDE01/d_a_npc_clerkb/d_a_npc_clerkb.rel
|
||||
03e5bfff427697030ece4281b0bd4557a30adf11 build/DZDE01/d_a_npc_clerkt/d_a_npc_clerkt.rel
|
||||
7aab47d27870c1a407ea02b373924bd6ad4939cf build/DZDE01/d_a_npc_coach/d_a_npc_coach.rel
|
||||
714f916d2449a3064130280552fc3eaceac33716 build/DZDE01/d_a_npc_df/d_a_npc_df.rel
|
||||
4d58c6d5f4fe1f2d2cf23c44ab8a444bab791c56 build/DZDE01/d_a_npc_doc/d_a_npc_doc.rel
|
||||
3668aa969caa67b403b8af7c337f358608a241b1 build/DZDE01/d_a_npc_doorboy/d_a_npc_doorboy.rel
|
||||
b3380a6b117e84b3d2b870aa5904837eec7c2444 build/DZDE01/d_a_npc_drainSol/d_a_npc_drainSol.rel
|
||||
1bb6eb189c158fb633176e7b8b73947c0a2e053e build/DZDE01/d_a_npc_du/d_a_npc_du.rel
|
||||
8fa26986d66d79565e046b0b530775ec6025df1b build/DZDE01/d_a_npc_fairy/d_a_npc_fairy.rel
|
||||
a5bb12676eb3e1ee9781ee2270a7629873ec7e5f build/DZDE01/d_a_npc_fguard/d_a_npc_fguard.rel
|
||||
116ed6ca7d90f1673fab39d2e4d9d310f00f176a build/DZDE01/d_a_npc_gnd/d_a_npc_gnd.rel
|
||||
e863a9e18936cdf30ff607243855513096c86dc6 build/DZDE01/d_a_npc_gra/d_a_npc_gra.rel
|
||||
46d3dbb7cb634d120929cf48e2404baa27e159b6 build/DZDE01/d_a_npc_grc/d_a_npc_grc.rel
|
||||
2174dba8f7a725142b42dd061bee807e513cc49b build/DZDE01/d_a_npc_grd/d_a_npc_grd.rel
|
||||
20d2353e6c665a4d06b26a6b25d16ecf726177e0 build/DZDE01/d_a_npc_grm/d_a_npc_grm.rel
|
||||
2d6d09807b2b16f561e776c54ff78c70e2c93151 build/DZDE01/d_a_npc_grmc/d_a_npc_grmc.rel
|
||||
1c5e6e702ab2d8581d00b9cc5c78cd64def3e3da build/DZDE01/d_a_npc_gro/d_a_npc_gro.rel
|
||||
0b6f8b2b6e6d5fa81206ac5e4fc64956e7326930 build/DZDE01/d_a_npc_grr/d_a_npc_grr.rel
|
||||
92205a9bf3b46d08f3a778b04c253db5a3059d4b build/DZDE01/d_a_npc_grs/d_a_npc_grs.rel
|
||||
530e7db91f9f2b693f8ca091973c321b9d14b768 build/DZDE01/d_a_npc_grz/d_a_npc_grz.rel
|
||||
9322d2b4526a5b6c2c2a49846b79f0b32c9d6eaa build/DZDE01/d_a_npc_guard/d_a_npc_guard.rel
|
||||
43e9fb5d00190fb1af5ed6115ca7dae4e16e7d23 build/DZDE01/d_a_npc_gwolf/d_a_npc_gwolf.rel
|
||||
96d5daa2a69e536a3b6b76d549a75f79d51508a2 build/DZDE01/d_a_npc_hanjo/d_a_npc_hanjo.rel
|
||||
7a2c67bc1bda4d4ff1d50f18cb175e91f1b8d3e5 build/DZDE01/d_a_npc_henna0/d_a_npc_henna0.rel
|
||||
fa23e05613c7ef27583e37c2953c83dc7b6845b7 build/DZDE01/d_a_npc_hoz/d_a_npc_hoz.rel
|
||||
844e9d546abf02bf2f362e565f9ffb6ce67b2950 build/DZDE01/d_a_npc_impal/d_a_npc_impal.rel
|
||||
a75e33834e5ccdf3de2595bbb4443feb5169c6e6 build/DZDE01/d_a_npc_inko/d_a_npc_inko.rel
|
||||
f9240a9cad76db393f49646723bfe61851aae188 build/DZDE01/d_a_npc_ins/d_a_npc_ins.rel
|
||||
51e8be54a8cb7482e71c8ffcce996c2d4a4e810a build/DZDE01/d_a_npc_jagar/d_a_npc_jagar.rel
|
||||
a090761975211a240dc709e928685c6a321c8995 build/DZDE01/d_a_npc_kasi_hana/d_a_npc_kasi_hana.rel
|
||||
955e703878cd87064cc821e56ec83b4b4c914968 build/DZDE01/d_a_npc_kasi_kyu/d_a_npc_kasi_kyu.rel
|
||||
1685b332e748d04a96f2443f57c91e3092702d7d build/DZDE01/d_a_npc_kasi_mich/d_a_npc_kasi_mich.rel
|
||||
bf2be3aaa3323cd8717c5e1a3be688d647ec6fa6 build/DZDE01/d_a_npc_kdk/d_a_npc_kdk.rel
|
||||
1078eed60ff2ceab9ff3ec4fe72dd4e7bed5b8c8 build/DZDE01/d_a_npc_kn/d_a_npc_kn.rel
|
||||
e7441faf63d885828527a1e1ff507602fc3dc3c0 build/DZDE01/d_a_npc_knj/d_a_npc_knj.rel
|
||||
2bc19a622a95997f4feb54c4e9ddf3d9aa3f913b build/DZDE01/d_a_npc_kolinb/d_a_npc_kolinb.rel
|
||||
f72c0418757ce0d8bab3e44d8e297aba1ec930bf build/DZDE01/d_a_npc_ks/d_a_npc_ks.rel
|
||||
5b0ed35d0156da4734a2e7c53b90aee64e97f1ce build/DZDE01/d_a_npc_kyury/d_a_npc_kyury.rel
|
||||
343da4f2156acbafe867e4038bd09fa2ad1212c3 build/DZDE01/d_a_npc_len/d_a_npc_len.rel
|
||||
520160df08c72d0cf1a25eeaa6534a030bce74bd build/DZDE01/d_a_npc_lf/d_a_npc_lf.rel
|
||||
5a0086f3b0bbbfb5dacb8b658e56a7915375a043 build/DZDE01/d_a_npc_lud/d_a_npc_lud.rel
|
||||
7d0a1af39e75e672d5c1133721cb33767db371f5 build/DZDE01/d_a_npc_midp/d_a_npc_midp.rel
|
||||
a61ce533d01d9de9b83b1dccdb260bdae817698a build/DZDE01/d_a_npc_mk/d_a_npc_mk.rel
|
||||
c0f505b08d795f88f9bf750ddb46556e6f5557c8 build/DZDE01/d_a_npc_moi/d_a_npc_moi.rel
|
||||
1b9249cefe202ef218348228d0da988c167877f3 build/DZDE01/d_a_npc_moir/d_a_npc_moir.rel
|
||||
9e0582fba474227e2359bfab79b6afa5d93953e4 build/DZDE01/d_a_npc_myna2/d_a_npc_myna2.rel
|
||||
e1ebc82ef34e6a61caaee57eac4b4b39dbbea00a build/DZDE01/d_a_npc_ne/d_a_npc_ne.rel
|
||||
ad8d9c9f2a0f77c5b891e7224696ca22b8452202 build/DZDE01/d_a_npc_p2/d_a_npc_p2.rel
|
||||
276f8af3b7c6ef6cdd76a37c736a89983c00e117 build/DZDE01/d_a_npc_pachi_besu/d_a_npc_pachi_besu.rel
|
||||
dd0373363f9930a7404506a047315f8f535258e1 build/DZDE01/d_a_npc_pachi_maro/d_a_npc_pachi_maro.rel
|
||||
82a32a4fa2567fcd53c04b57505f3ea4d01e25bc build/DZDE01/d_a_npc_pachi_taro/d_a_npc_pachi_taro.rel
|
||||
bd038a017b16295fb3cb956f0b9301396fad34eb build/DZDE01/d_a_npc_passer/d_a_npc_passer.rel
|
||||
d78d53b68c8299776c75fd097a06244651d00238 build/DZDE01/d_a_npc_passer2/d_a_npc_passer2.rel
|
||||
7a261ec7ec5a218da1e094d9b1d18bbfc6ac51e5 build/DZDE01/d_a_npc_post/d_a_npc_post.rel
|
||||
672cef7e244f45e39401491c1bee2c6327996ac1 build/DZDE01/d_a_npc_pouya/d_a_npc_pouya.rel
|
||||
6a0731b1819bf0d2cbaf3c726fa7cf40b48e87c8 build/DZDE01/d_a_npc_prayer/d_a_npc_prayer.rel
|
||||
cf89faf4398e00d6df355a45f8260f712a915026 build/DZDE01/d_a_npc_raca/d_a_npc_raca.rel
|
||||
1bb08465acfec707531817e9d8668586bc237139 build/DZDE01/d_a_npc_rafrel/d_a_npc_rafrel.rel
|
||||
9a1a84031930315c8d858c759559caf94496c4b1 build/DZDE01/d_a_npc_saru/d_a_npc_saru.rel
|
||||
2dd32af406f33be5ba5d68ffb67926585ebeb8e3 build/DZDE01/d_a_npc_seib/d_a_npc_seib.rel
|
||||
ef7beff437e0625fed040d863045f23f98c91e53 build/DZDE01/d_a_npc_seic/d_a_npc_seic.rel
|
||||
f623bf1c9bf5bbed3e120432be31812c98d157d6 build/DZDE01/d_a_npc_seid/d_a_npc_seid.rel
|
||||
ce5a9010bddfb3d4a445de27fce2bb52477ac8f1 build/DZDE01/d_a_npc_seira/d_a_npc_seira.rel
|
||||
2216809a3dfb16f574670b0e08d73a30257b7084 build/DZDE01/d_a_npc_seira2/d_a_npc_seira2.rel
|
||||
d3497889267cee810970b23958badc7d7e1f133b build/DZDE01/d_a_npc_seirei/d_a_npc_seirei.rel
|
||||
bfb6d14b7c62245f0fcee04c22c5a8e56ae49ac9 build/DZDE01/d_a_npc_shad/d_a_npc_shad.rel
|
||||
6337728ed702ee6d40bfe30578e16134e1b6a2be build/DZDE01/d_a_npc_shaman/d_a_npc_shaman.rel
|
||||
2ab638805498ac092812089ca492a597a8fb0a19 build/DZDE01/d_a_npc_shoe/d_a_npc_shoe.rel
|
||||
9741778fe4f4a08ab3460b8c76284432e495f47b build/DZDE01/d_a_npc_shop0/d_a_npc_shop0.rel
|
||||
9baf739a6bc79204e5b38655cfe70a17f2a15ea5 build/DZDE01/d_a_npc_shop_maro/d_a_npc_shop_maro.rel
|
||||
67526afd9f1d1c4d260f51166bb37d4250622e39 build/DZDE01/d_a_npc_sola/d_a_npc_sola.rel
|
||||
a4b9c6cb13578ad7843a25d669b31229feba57d5 build/DZDE01/d_a_npc_soldierA/d_a_npc_soldierA.rel
|
||||
cb522bddbe6161b402808d875a1a66ece8d60d4b build/DZDE01/d_a_npc_soldierB/d_a_npc_soldierB.rel
|
||||
748d9e587fc6c45540ea1ba7d769c42f276f3abc build/DZDE01/d_a_npc_sq/d_a_npc_sq.rel
|
||||
31d0ffa24d520a8c0441a2b62b91817c0232daef build/DZDE01/d_a_npc_the/d_a_npc_the.rel
|
||||
72bd880f0246ec5c9bd8204498921bc62edf935f build/DZDE01/d_a_npc_theB/d_a_npc_theB.rel
|
||||
40b215fe9a8a35eb5a9d3e05558c44301c4407ef build/DZDE01/d_a_npc_tk/d_a_npc_tk.rel
|
||||
539bbedc7e1cc7f01c396dfa4e6ebaa6d5306a66 build/DZDE01/d_a_npc_tkc/d_a_npc_tkc.rel
|
||||
e9b57d03130337f9e6f93acba521739072d62924 build/DZDE01/d_a_npc_tkj2/d_a_npc_tkj2.rel
|
||||
7a83400b8cd5fff9927583b13b5a84654dc79c1b build/DZDE01/d_a_npc_tks/d_a_npc_tks.rel
|
||||
6e189a6b0962af911f7b377cb880bf8328c7e804 build/DZDE01/d_a_npc_toby/d_a_npc_toby.rel
|
||||
38aafd2ab3ecc09edad7ce225f1a8d358d780efe build/DZDE01/d_a_npc_tr/d_a_npc_tr.rel
|
||||
3ea24f3799eb00d2895fc68ef59391c1c960e172 build/DZDE01/d_a_npc_uri/d_a_npc_uri.rel
|
||||
834f335b80502c364fe8099c291161a0df35fe3d build/DZDE01/d_a_npc_worm/d_a_npc_worm.rel
|
||||
88a6d0077228aac64bd138f5e61f2e13878ed68b build/DZDE01/d_a_npc_wrestler/d_a_npc_wrestler.rel
|
||||
c65fd6aa7189a9735eb7f1e7964ee0062259a4ce build/DZDE01/d_a_npc_yamid/d_a_npc_yamid.rel
|
||||
9c7fd3672eaaaf7b9f5948179e9cf2b6017577c8 build/DZDE01/d_a_npc_yamis/d_a_npc_yamis.rel
|
||||
7df20836fd72f042f84c4bb0c59531f3e1849ab0 build/DZDE01/d_a_npc_yamit/d_a_npc_yamit.rel
|
||||
283419a8d56590aeb5ceab2016a37bfe6e2426bf build/DZDE01/d_a_npc_yelia/d_a_npc_yelia.rel
|
||||
9d6db8f360939effe7bd40f10628fe61f47cfe5c build/DZDE01/d_a_npc_ykm/d_a_npc_ykm.rel
|
||||
34852fd7b3b1c661c09079a9e7551683bd987a90 build/DZDE01/d_a_npc_ykw/d_a_npc_ykw.rel
|
||||
d1af96cba92d3d941a42978b13376892019a8c3c build/DZDE01/d_a_npc_zanb/d_a_npc_zanb.rel
|
||||
9883754d344aaeca45143ca90d4c2e2b542dcaf8 build/DZDE01/d_a_npc_zant/d_a_npc_zant.rel
|
||||
359b28f72dd5f8ccd09b08dd6711c7134a77fe8c build/DZDE01/d_a_npc_zelR/d_a_npc_zelR.rel
|
||||
44468a0c4f1c02e06e0c6018a90f7f3e9f9eb5fb build/DZDE01/d_a_npc_zelRo/d_a_npc_zelRo.rel
|
||||
f889718b524360bb3a565dcac477b14772c4fcc1 build/DZDE01/d_a_npc_zelda/d_a_npc_zelda.rel
|
||||
6def6c193260be5768cda6e04549ee06ab7d3244 build/DZDE01/d_a_npc_zra/d_a_npc_zra.rel
|
||||
312d42ee38aef39a3fdf501abd2ea4636513e59a build/DZDE01/d_a_npc_zrc/d_a_npc_zrc.rel
|
||||
f70e5d3876695aabf0d23d2f3fd8db1e3f3f2667 build/DZDE01/d_a_npc_zrz/d_a_npc_zrz.rel
|
||||
56d4439f454570f870a6ba985d962305a3efef21 build/DZDE01/d_a_obj_Lv5Key/d_a_obj_Lv5Key.rel
|
||||
e7d4dfdf1889859c6a35476cc271c03772f640a4 build/DZDE01/d_a_obj_Turara/d_a_obj_Turara.rel
|
||||
d22f08eff4ee5503a3b971726ff054a89097325f build/DZDE01/d_a_obj_TvCdlst/d_a_obj_TvCdlst.rel
|
||||
278557951aa65a4af484d55a3da110fccf99b276 build/DZDE01/d_a_obj_Y_taihou/d_a_obj_Y_taihou.rel
|
||||
c8f3c7b3eeaed6b940f347e8d0bf7ea142749c12 build/DZDE01/d_a_obj_amiShutter/d_a_obj_amiShutter.rel
|
||||
68344159d6550c21c8577cefc132361d1980e58d build/DZDE01/d_a_obj_ari/d_a_obj_ari.rel
|
||||
8ed171d27e9eeb60529d5c16e05cad018d8f1a90 build/DZDE01/d_a_obj_automata/d_a_obj_automata.rel
|
||||
bff293e44a7e8221455b257c25661613b7b3d1cd build/DZDE01/d_a_obj_avalanche/d_a_obj_avalanche.rel
|
||||
1d67dae0fe15d249f2c6b721f83fbdfbbf2b3cf4 build/DZDE01/d_a_obj_balloon/d_a_obj_balloon.rel
|
||||
fa132bdd0cfcd1ffa86905a58c96fbeb29205513 build/DZDE01/d_a_obj_barDesk/d_a_obj_barDesk.rel
|
||||
cb7085094b14d911efe141e345abf97d5ad94031 build/DZDE01/d_a_obj_batta/d_a_obj_batta.rel
|
||||
f09d5c30211c5b94b0b8104bd2ff4929c326f8f8 build/DZDE01/d_a_obj_bbox/d_a_obj_bbox.rel
|
||||
7bdf6249450de99a8995cd179196f119adbc4714 build/DZDE01/d_a_obj_bed/d_a_obj_bed.rel
|
||||
26e559ca1e23da7ac523d25ac3bb18c2c754687b build/DZDE01/d_a_obj_bemos/d_a_obj_bemos.rel
|
||||
24ea85b304325e6300c6b6c9577a84790a9f99c1 build/DZDE01/d_a_obj_bhbridge/d_a_obj_bhbridge.rel
|
||||
ff9a496b2064f0f75a936fb13f207c2f11fa0876 build/DZDE01/d_a_obj_bk_leaf/d_a_obj_bk_leaf.rel
|
||||
4df4598cf3abcc26a0a3c18ab3a8b6edd52c3ab0 build/DZDE01/d_a_obj_bky_rock/d_a_obj_bky_rock.rel
|
||||
6cb9e42434fefdea54ef95088c6deebf1a96b9eb build/DZDE01/d_a_obj_bmWindow/d_a_obj_bmWindow.rel
|
||||
8e02d47b702c7976bb8959cfac6100cc66d1cb79 build/DZDE01/d_a_obj_bmshutter/d_a_obj_bmshutter.rel
|
||||
9c1539953d21d3b0cf724b6a8fae65498f387d1a build/DZDE01/d_a_obj_bombf/d_a_obj_bombf.rel
|
||||
9ee1bd94fb9a90eb5cd1a710f7fdc91bfc2db9b1 build/DZDE01/d_a_obj_boumato/d_a_obj_boumato.rel
|
||||
2723368acc003b727455c7b0276f3d5d770be6c0 build/DZDE01/d_a_obj_brg/d_a_obj_brg.rel
|
||||
2a343332e2636968b8e12d035a781de3bf35f231 build/DZDE01/d_a_obj_bsGate/d_a_obj_bsGate.rel
|
||||
14aa0ae0182904d7f31e61341eb97c809eb2b924 build/DZDE01/d_a_obj_bubblePilar/d_a_obj_bubblePilar.rel
|
||||
921513d2cba3a7c078e0e9f1cee72fea5906d882 build/DZDE01/d_a_obj_catdoor/d_a_obj_catdoor.rel
|
||||
e12e331d0772987ab0be0e04792096e1aedd62cc build/DZDE01/d_a_obj_cb/d_a_obj_cb.rel
|
||||
c33222e171e510d3a5715bc5c9dc643ffa3ed98a build/DZDE01/d_a_obj_cblock/d_a_obj_cblock.rel
|
||||
651d766d452dc6970f333b69d95e0ca6a8567f59 build/DZDE01/d_a_obj_cdoor/d_a_obj_cdoor.rel
|
||||
01405969fad06271bbb4446e7623aae2b2048915 build/DZDE01/d_a_obj_chandelier/d_a_obj_chandelier.rel
|
||||
af89970a0905e7235bc9519b086dc419dd62bc01 build/DZDE01/d_a_obj_chest/d_a_obj_chest.rel
|
||||
468be17e38a4355a89db26c3b5e926c6d9e066a7 build/DZDE01/d_a_obj_cho/d_a_obj_cho.rel
|
||||
a33b9a0f8c207f24b5e35203938cf86efe1f9b96 build/DZDE01/d_a_obj_cowdoor/d_a_obj_cowdoor.rel
|
||||
e76142423d532f9bc9601c6ad43f29ac2dccb9f0 build/DZDE01/d_a_obj_crope/d_a_obj_crope.rel
|
||||
a7b94f5ecb277b71f77c5daa2ea7df575d84e937 build/DZDE01/d_a_obj_crvfence/d_a_obj_crvfence.rel
|
||||
9031349b9c2ef920a219308727926df35d4a4ef9 build/DZDE01/d_a_obj_crvgate/d_a_obj_crvgate.rel
|
||||
65354e8f4a1fc239241104ef60e462688662a9be build/DZDE01/d_a_obj_crvhahen/d_a_obj_crvhahen.rel
|
||||
76f2f80598be7f18f22e80cbbb5a3c9b552bf3c4 build/DZDE01/d_a_obj_crvlh_down/d_a_obj_crvlh_down.rel
|
||||
cb7cc35694d4d6f440b1cd006d53f38613c9b37b build/DZDE01/d_a_obj_crvlh_up/d_a_obj_crvlh_up.rel
|
||||
c1aa09acfd0b24f1ab80c4a88425b71cfd61823a build/DZDE01/d_a_obj_crvsteel/d_a_obj_crvsteel.rel
|
||||
aebd10661febac5ea89f1571c4d3510f99d730e9 build/DZDE01/d_a_obj_crystal/d_a_obj_crystal.rel
|
||||
22bc62032fdbbf7d0d565d2e1bcb2d353074dfa0 build/DZDE01/d_a_obj_cwall/d_a_obj_cwall.rel
|
||||
4e98543d7c5e13e557008b6e6e6146d6ba7935c0 build/DZDE01/d_a_obj_damCps/d_a_obj_damCps.rel
|
||||
c46d7a14bfd4fe69e6ac5b1be1549570da462b16 build/DZDE01/d_a_obj_dan/d_a_obj_dan.rel
|
||||
66d65146f08060a2313f5078e40974d96b87f3c1 build/DZDE01/d_a_obj_digholl/d_a_obj_digholl.rel
|
||||
3a347b485d2f0b78cd69917159d48036bf861a06 build/DZDE01/d_a_obj_digsnow/d_a_obj_digsnow.rel
|
||||
040247688ccde71214ac2d55be71d8f250ddf6a2 build/DZDE01/d_a_obj_dmelevator/d_a_obj_dmelevator.rel
|
||||
e041f53b26358c0070473ebf823c540fb85ff621 build/DZDE01/d_a_obj_drop/d_a_obj_drop.rel
|
||||
ffb105142c6af5e087a3005a8bf5931e4044c761 build/DZDE01/d_a_obj_dust/d_a_obj_dust.rel
|
||||
d463c6a1a374ba1160e82d25168967692736c830 build/DZDE01/d_a_obj_enemy_create/d_a_obj_enemy_create.rel
|
||||
f94e97f4d39c4a80ebfafa5a51110cd2ca9d7c0c build/DZDE01/d_a_obj_fallobj/d_a_obj_fallobj.rel
|
||||
2f8721584099d0a18d24f2064c281b645f1a2a88 build/DZDE01/d_a_obj_fan/d_a_obj_fan.rel
|
||||
dda40900196053769f446e64bc1b9d8690cb44ea build/DZDE01/d_a_obj_fchain/d_a_obj_fchain.rel
|
||||
36133bfc92ae786ac4c8d2965932f68a901b64a9 build/DZDE01/d_a_obj_fireWood/d_a_obj_fireWood.rel
|
||||
a9dc9aec8f2415c5a66683cd4819e59b882ff13c build/DZDE01/d_a_obj_fireWood2/d_a_obj_fireWood2.rel
|
||||
561033710807acef1892407715a16bf6e73c1531 build/DZDE01/d_a_obj_firepillar/d_a_obj_firepillar.rel
|
||||
edf9b4c567550214ce15f6daea99aff76e68e67d build/DZDE01/d_a_obj_firepillar2/d_a_obj_firepillar2.rel
|
||||
d4d5f3c908beedf660ab502b1bbb328789af697c build/DZDE01/d_a_obj_flag/d_a_obj_flag.rel
|
||||
15f607fd949b64586ee11e3b8f0d3858ec516daf build/DZDE01/d_a_obj_flag2/d_a_obj_flag2.rel
|
||||
0875a93665e84067cde7c51a3ea13e08560eff4f build/DZDE01/d_a_obj_flag3/d_a_obj_flag3.rel
|
||||
febcf266a2dc9bda861cd1f492f47c3ac51d88fe build/DZDE01/d_a_obj_food/d_a_obj_food.rel
|
||||
d0281bd7e3373ca63df04df822982224fca8b16e build/DZDE01/d_a_obj_fw/d_a_obj_fw.rel
|
||||
3ae0ea3cd56c5f2aeba0439fecb424aa16fe1b27 build/DZDE01/d_a_obj_gadget/d_a_obj_gadget.rel
|
||||
d366bb64aa0b9cdeb384c7048762a920e9fdfdf6 build/DZDE01/d_a_obj_ganonwall/d_a_obj_ganonwall.rel
|
||||
7310c68d6e5905b4e74b69f219a830b118edd006 build/DZDE01/d_a_obj_ganonwall2/d_a_obj_ganonwall2.rel
|
||||
1995e6687147dde7a19d2505e6b5daa98a53fb9d build/DZDE01/d_a_obj_gb/d_a_obj_gb.rel
|
||||
d6fb4bddf9b70b4611e4279759ff8049d2b38290 build/DZDE01/d_a_obj_geyser/d_a_obj_geyser.rel
|
||||
a237e46c7b251fa1698c4f34fbd9097458e78737 build/DZDE01/d_a_obj_glowSphere/d_a_obj_glowSphere.rel
|
||||
6fcb899d6bc19dbe8fad72b24e91ca9807a6242e build/DZDE01/d_a_obj_gm/d_a_obj_gm.rel
|
||||
5f1e9195ab2605e1c3386b4aff6d6820678b9156 build/DZDE01/d_a_obj_goGate/d_a_obj_goGate.rel
|
||||
566ad0365e0e4a1cb4aa626302690bd97407fa20 build/DZDE01/d_a_obj_gomikabe/d_a_obj_gomikabe.rel
|
||||
9a5cd71e9fceadca3a89fe559c6408c2884f2ebc build/DZDE01/d_a_obj_gra2/d_a_obj_gra2.rel
|
||||
225c8805e236e10638a7ecbae6bc530114eeb088 build/DZDE01/d_a_obj_graWall/d_a_obj_graWall.rel
|
||||
47b2a29dca9e2dd869940172f48266ef3d704053 build/DZDE01/d_a_obj_gra_rock/d_a_obj_gra_rock.rel
|
||||
2a526711f5a1f5c340915d65e1ee32c404572bb2 build/DZDE01/d_a_obj_grave_stone/d_a_obj_grave_stone.rel
|
||||
545724d82c93f7842d175df1d48648e9be91861e build/DZDE01/d_a_obj_groundwater/d_a_obj_groundwater.rel
|
||||
4da97352015d456cc8ba586730393a40b96ebb43 build/DZDE01/d_a_obj_grz_rock/d_a_obj_grz_rock.rel
|
||||
bc899dd4dfb63cd8523e32070972bbbe39f09c03 build/DZDE01/d_a_obj_h_saku/d_a_obj_h_saku.rel
|
||||
c2bf31b2a5454c5c8576aca59b7e67f5f2658e41 build/DZDE01/d_a_obj_hakai_brl/d_a_obj_hakai_brl.rel
|
||||
7a2f2b63ff5b7dad9ca5c59b1b88e04d7db4115f build/DZDE01/d_a_obj_hakai_ftr/d_a_obj_hakai_ftr.rel
|
||||
82e79ed584d3a231d7a1b1ea63a5e51a2494a7dd build/DZDE01/d_a_obj_hasu2/d_a_obj_hasu2.rel
|
||||
3eb99f3266189d8a79f85e24a2e25e2c90ad0df1 build/DZDE01/d_a_obj_hata/d_a_obj_hata.rel
|
||||
a15cc62d4397f83c3dcb632fbcc42a6c4675ab9f build/DZDE01/d_a_obj_hb/d_a_obj_hb.rel
|
||||
d6469e24c51fbf9f938aad7eb9a4de94b28e2b7f build/DZDE01/d_a_obj_hbombkoya/d_a_obj_hbombkoya.rel
|
||||
8f75b588129bfd9e484fda01b7bb24fc1465afb2 build/DZDE01/d_a_obj_heavySw/d_a_obj_heavySw.rel
|
||||
22cea7285f19689008fa496e281eb7f1ee9b87db build/DZDE01/d_a_obj_hfuta/d_a_obj_hfuta.rel
|
||||
9678b37848eafe2c095377bfe45adaa9e338669b build/DZDE01/d_a_obj_hsTarget/d_a_obj_hsTarget.rel
|
||||
b9cba7dc3563ab2e4316734be693f67360f1c1ed build/DZDE01/d_a_obj_ice_l/d_a_obj_ice_l.rel
|
||||
d10c09873c1c7600f5f7977c1bb5080c6a0597a5 build/DZDE01/d_a_obj_ice_s/d_a_obj_ice_s.rel
|
||||
46f8ab61e937fd44cc427a6ba92ff5db55926f5b build/DZDE01/d_a_obj_iceblock/d_a_obj_iceblock.rel
|
||||
a32002bacedcfe54ef944624803e8321a90c1516 build/DZDE01/d_a_obj_iceleaf/d_a_obj_iceleaf.rel
|
||||
f2b1a9d2a01adac6e13773cf9f4dd06f7e807b9a build/DZDE01/d_a_obj_ihasi/d_a_obj_ihasi.rel
|
||||
ae13e9635e403a398aa081bd5eb05f75cd740b64 build/DZDE01/d_a_obj_ikada/d_a_obj_ikada.rel
|
||||
8097b37039e6abd4b045d61089725a21b0f52da9 build/DZDE01/d_a_obj_inobone/d_a_obj_inobone.rel
|
||||
56a0381d4fafda1b3b4f1b8465b0ff5fb587237b build/DZDE01/d_a_obj_ita/d_a_obj_ita.rel
|
||||
a9adb085bc2e83bbf3d86a02d992d0e84bed607a build/DZDE01/d_a_obj_itamato/d_a_obj_itamato.rel
|
||||
7d908844083766204757a4b79e4dcace8faaedd7 build/DZDE01/d_a_obj_kabuto/d_a_obj_kabuto.rel
|
||||
f2aa477fcd9f2b39f4c0e43fbb9a8ffd3f2ec0b2 build/DZDE01/d_a_obj_kag/d_a_obj_kag.rel
|
||||
49c6e26020b2be2263cec5da49a1e64f0c42364e build/DZDE01/d_a_obj_kage/d_a_obj_kage.rel
|
||||
d4e16cf4922d67ef909839a2ad8c9a5e29f4b8f8 build/DZDE01/d_a_obj_kago/d_a_obj_kago.rel
|
||||
cc782447643e80a2be36a39137517151a5013d5f build/DZDE01/d_a_obj_kaisou/d_a_obj_kaisou.rel
|
||||
c0a90db71721788c774a791e9322acfb2c837dce build/DZDE01/d_a_obj_kamakiri/d_a_obj_kamakiri.rel
|
||||
4bb554badb1665cbdb5797435c1a783292ac57f5 build/DZDE01/d_a_obj_kantera/d_a_obj_kantera.rel
|
||||
2006788399297c203152168aee35a168b8e6b99c build/DZDE01/d_a_obj_katatsumuri/d_a_obj_katatsumuri.rel
|
||||
293e024383e2ed56a6ecc86d3185fa51a17b6b32 build/DZDE01/d_a_obj_kazeneko/d_a_obj_kazeneko.rel
|
||||
976d92ff907ce4492f6ea0ec16098e9c2efd31cb build/DZDE01/d_a_obj_kbacket/d_a_obj_kbacket.rel
|
||||
c9fbacf7a40313536b8a1535b1f2649835787b5d build/DZDE01/d_a_obj_kbox/d_a_obj_kbox.rel
|
||||
6a1911ac01c1c2a7a1176b4cf0d23814c185d497 build/DZDE01/d_a_obj_key/d_a_obj_key.rel
|
||||
14cdf27d52a981c7aaf095c0388a813fd14792ac build/DZDE01/d_a_obj_keyhole/d_a_obj_keyhole.rel
|
||||
7112d93ec66d271632bad4cd12f55167d7945e68 build/DZDE01/d_a_obj_ki/d_a_obj_ki.rel
|
||||
27994b23f8eb4ff3db5d491c3676e97412561228 build/DZDE01/d_a_obj_kiPot/d_a_obj_kiPot.rel
|
||||
f1a1db78f36a2a3ceb5e2bd2a037252e8b5d8bf7 build/DZDE01/d_a_obj_kita/d_a_obj_kita.rel
|
||||
a6dcfc95b4494cd7a5421cbcfed6a56c49d44f78 build/DZDE01/d_a_obj_kjgjs/d_a_obj_kjgjs.rel
|
||||
0327924c207d93fcd5b04b6a60bebe40d177d052 build/DZDE01/d_a_obj_kkanban/d_a_obj_kkanban.rel
|
||||
d69b189b3c8e73425f8ed51009f52ed8551bad30 build/DZDE01/d_a_obj_knBullet/d_a_obj_knBullet.rel
|
||||
562cf714a30634b28cb4072af9ef95def89a7294 build/DZDE01/d_a_obj_kshutter/d_a_obj_kshutter.rel
|
||||
ec5eb7021e16b52b1966c80e042fc0007a321ca5 build/DZDE01/d_a_obj_kuwagata/d_a_obj_kuwagata.rel
|
||||
5d1529e9a0a9b860563c0cb2c96ab287c1157da6 build/DZDE01/d_a_obj_kwheel00/d_a_obj_kwheel00.rel
|
||||
f37abadbba252f25bc9f89ace901e2dd0cfe0650 build/DZDE01/d_a_obj_kwheel01/d_a_obj_kwheel01.rel
|
||||
b0b6d8f9395fce9fe1068a280340768d93c3ab63 build/DZDE01/d_a_obj_kznkarm/d_a_obj_kznkarm.rel
|
||||
8092dc2af076ab454a480d6e2825c6d88a06f821 build/DZDE01/d_a_obj_laundry/d_a_obj_laundry.rel
|
||||
cc737ad7cd9535d058122aa096cb76599e10c645 build/DZDE01/d_a_obj_laundry_rope/d_a_obj_laundry_rope.rel
|
||||
d4be0bc11332836cfcf0ca0f5c6c0f6e75e54ca4 build/DZDE01/d_a_obj_lbox/d_a_obj_lbox.rel
|
||||
2143b4d49162feb951a42e358004340df6567ea5 build/DZDE01/d_a_obj_lp/d_a_obj_lp.rel
|
||||
77909aaa65eb993a33a36b130ae27366ec1859b6 build/DZDE01/d_a_obj_lv1Candle00/d_a_obj_lv1Candle00.rel
|
||||
ca8b23dbca63b1b900a4cdb7d5680e21c32d57ac build/DZDE01/d_a_obj_lv1Candle01/d_a_obj_lv1Candle01.rel
|
||||
cbec65a714af09bfda87b0ff95ce7598272b6966 build/DZDE01/d_a_obj_lv3Candle/d_a_obj_lv3Candle.rel
|
||||
f84e4974c67c875e243268b4d3a632869b1d3c3c build/DZDE01/d_a_obj_lv3Water/d_a_obj_lv3Water.rel
|
||||
f3077933d2c06ffdff0862d9e97aafb9a8211e77 build/DZDE01/d_a_obj_lv3Water2/d_a_obj_lv3Water2.rel
|
||||
774ffc74d260f33c1bd23ac104508457773e86c6 build/DZDE01/d_a_obj_lv3WaterB/d_a_obj_lv3WaterB.rel
|
||||
183eaa174a6ba9f1c5560552bf026ee319c80a38 build/DZDE01/d_a_obj_lv3saka00/d_a_obj_lv3saka00.rel
|
||||
3df74f6ca8f4664297a1dfb4d56334521296b048 build/DZDE01/d_a_obj_lv3waterEff/d_a_obj_lv3waterEff.rel
|
||||
a9d974b887389c608e562d2b5eb66acaafb3d24f build/DZDE01/d_a_obj_lv4CandleDemoTag/d_a_obj_lv4CandleDemoTag.rel
|
||||
e1ac91df1b717629337fc9a1e9f83a8611a8daa9 build/DZDE01/d_a_obj_lv4CandleTag/d_a_obj_lv4CandleTag.rel
|
||||
fede11763d214fc9ba01e19392acf110b3dd214c build/DZDE01/d_a_obj_lv4EdShutter/d_a_obj_lv4EdShutter.rel
|
||||
f5d26eaea835e94912e54ca173cc7c15fc82476e build/DZDE01/d_a_obj_lv4Gate/d_a_obj_lv4Gate.rel
|
||||
0a9c8a99b230b9d42597d12a74f43f6d35add48a build/DZDE01/d_a_obj_lv4HsTarget/d_a_obj_lv4HsTarget.rel
|
||||
97a9264713efdd952601220f4ed88475fd2ec078 build/DZDE01/d_a_obj_lv4PoGate/d_a_obj_lv4PoGate.rel
|
||||
61fe30eaf44401bb39892fee185a52b05e474a28 build/DZDE01/d_a_obj_lv4RailWall/d_a_obj_lv4RailWall.rel
|
||||
30c7d968a5a3d9404d0f40f9b50d91feca05b0fe build/DZDE01/d_a_obj_lv4SlideWall/d_a_obj_lv4SlideWall.rel
|
||||
e452ac82a78d341916417add95df35ebd9655a20 build/DZDE01/d_a_obj_lv4bridge/d_a_obj_lv4bridge.rel
|
||||
2bd0bd695e1bc68b04f053cf4ea45dc955109d4f build/DZDE01/d_a_obj_lv4chandelier/d_a_obj_lv4chandelier.rel
|
||||
05c5ee7e6ce91ce43358cdb0db9fcc986b862240 build/DZDE01/d_a_obj_lv4digsand/d_a_obj_lv4digsand.rel
|
||||
8ee358dcb738b163aa231f73317bf93082261a58 build/DZDE01/d_a_obj_lv4floor/d_a_obj_lv4floor.rel
|
||||
1597ff35275cf0a7e4f3e5977d7fb7ae96473511 build/DZDE01/d_a_obj_lv4gear/d_a_obj_lv4gear.rel
|
||||
03eca7ba15c988c94186466e7a32c4532d607667 build/DZDE01/d_a_obj_lv4prelvtr/d_a_obj_lv4prelvtr.rel
|
||||
0a07fc7c08bcb34675abf5062382d6f0e75bfaa1 build/DZDE01/d_a_obj_lv4prwall/d_a_obj_lv4prwall.rel
|
||||
6bac8a3c4bd9d6da81b5a8cc69760d12402e333b build/DZDE01/d_a_obj_lv4sand/d_a_obj_lv4sand.rel
|
||||
c45250554e845b4c34bcad0bd1f2f55358eb32db build/DZDE01/d_a_obj_lv5FloorBoard/d_a_obj_lv5FloorBoard.rel
|
||||
42a8a37e6939b8938f7e4c126465c1cdeb5e22bc build/DZDE01/d_a_obj_lv5IceWall/d_a_obj_lv5IceWall.rel
|
||||
da6f946795bd68d63330cb0812b516160e3fcc71 build/DZDE01/d_a_obj_lv5SwIce/d_a_obj_lv5SwIce.rel
|
||||
a993e7d4ce67089d474b63966bd3828a7fdb5b25 build/DZDE01/d_a_obj_lv5ychndlr/d_a_obj_lv5ychndlr.rel
|
||||
9ace1060ddbb77a625707f1066e0783c01f9ca76 build/DZDE01/d_a_obj_lv5yiblltray/d_a_obj_lv5yiblltray.rel
|
||||
1e666f119aecbc98521c69de849a4628263c8dc4 build/DZDE01/d_a_obj_lv6ChangeGate/d_a_obj_lv6ChangeGate.rel
|
||||
814cdf350ee4267c7103f0c2a544a923448bb3af build/DZDE01/d_a_obj_lv6FurikoTrap/d_a_obj_lv6FurikoTrap.rel
|
||||
b90a61bcb6a8fca4d4b181ca314d78a7799917b5 build/DZDE01/d_a_obj_lv6Lblock/d_a_obj_lv6Lblock.rel
|
||||
9e239ff90213072fe8e97cbb52294371681ea37c build/DZDE01/d_a_obj_lv6SwGate/d_a_obj_lv6SwGate.rel
|
||||
7df5831547f79594b390a324b2f1ad0784ba63ef build/DZDE01/d_a_obj_lv6SzGate/d_a_obj_lv6SzGate.rel
|
||||
036ee1714e3311151112ba1fe6cc3cd6e1a762df build/DZDE01/d_a_obj_lv6Tenbin/d_a_obj_lv6Tenbin.rel
|
||||
f4afcc6ec9c9eae8e0c41bf52fc1000eed346faf build/DZDE01/d_a_obj_lv6TogeRoll/d_a_obj_lv6TogeRoll.rel
|
||||
acf8f85ca4ddbb23c1c3b220bdf68118652a1a9a build/DZDE01/d_a_obj_lv6TogeTrap/d_a_obj_lv6TogeTrap.rel
|
||||
6bf49edcc0b81155224a79b3a0bbe6bab5974f07 build/DZDE01/d_a_obj_lv6bemos/d_a_obj_lv6bemos.rel
|
||||
b85e922b4cab22dec4b199207bd2eb35e465746e build/DZDE01/d_a_obj_lv6bemos2/d_a_obj_lv6bemos2.rel
|
||||
b9f8d2b606f27f010e9ea3b5e5601c9dd597d320 build/DZDE01/d_a_obj_lv6egate/d_a_obj_lv6egate.rel
|
||||
8d8d088dbcc9f3303b2ae633b99cbedb61baf2fa build/DZDE01/d_a_obj_lv6elevta/d_a_obj_lv6elevta.rel
|
||||
a53159158c14482ae9b63d913f348be8e7a008fa build/DZDE01/d_a_obj_lv6swturn/d_a_obj_lv6swturn.rel
|
||||
5a00a5d4681d2bda613d539486244ff27c255839 build/DZDE01/d_a_obj_lv7BsGate/d_a_obj_lv7BsGate.rel
|
||||
0f08c93f16b57bf0a246a4264ad6b41e3e49128a build/DZDE01/d_a_obj_lv7PropellerY/d_a_obj_lv7PropellerY.rel
|
||||
c14afa3d5b08bc2139d766535563db46ed4afd25 build/DZDE01/d_a_obj_lv7bridge/d_a_obj_lv7bridge.rel
|
||||
d4e2ff6df2bdb3102fbe49ce14a30508f87c2ee9 build/DZDE01/d_a_obj_lv8KekkaiTrap/d_a_obj_lv8KekkaiTrap.rel
|
||||
91298ec13a064c078d37673c97d461ed60c951a8 build/DZDE01/d_a_obj_lv8Lift/d_a_obj_lv8Lift.rel
|
||||
1db96ce542e57d6894ac3de0b59a0f1c55f54a53 build/DZDE01/d_a_obj_lv8OptiLift/d_a_obj_lv8OptiLift.rel
|
||||
0d4d4b549b646f59d28400ea04ea72a4beab6c6e build/DZDE01/d_a_obj_lv8UdFloor/d_a_obj_lv8UdFloor.rel
|
||||
98948cc11112b6e65fd514c6eff6c932d1ddd340 build/DZDE01/d_a_obj_lv9SwShutter/d_a_obj_lv9SwShutter.rel
|
||||
f9a128579edb2764092d999199ec6ae15c0f028c build/DZDE01/d_a_obj_magLift/d_a_obj_magLift.rel
|
||||
d931d759b911e882fd9f6c5766a69c8e98694804 build/DZDE01/d_a_obj_magLiftRot/d_a_obj_magLiftRot.rel
|
||||
bfd5f3c78aa80417c73c28f457667d2a1287f5e9 build/DZDE01/d_a_obj_maki/d_a_obj_maki.rel
|
||||
8e09fba7a8a5d0be08637e9173ee007c6c91223d build/DZDE01/d_a_obj_master_sword/d_a_obj_master_sword.rel
|
||||
ba9aa9ee9ed03a74800d6216b60b971e2111b845 build/DZDE01/d_a_obj_mato/d_a_obj_mato.rel
|
||||
515ea6f70240e48e741a41333879d1c294964c38 build/DZDE01/d_a_obj_mhole/d_a_obj_mhole.rel
|
||||
308c45ff8af72001caac316559308b8e1000e582 build/DZDE01/d_a_obj_mie/d_a_obj_mie.rel
|
||||
af3ea7b677296ea6a059c65c74752d74cc330b41 build/DZDE01/d_a_obj_mirror_6pole/d_a_obj_mirror_6pole.rel
|
||||
4f04f7616097f5ea1102acbcc00c4c124788ab19 build/DZDE01/d_a_obj_mirror_chain/d_a_obj_mirror_chain.rel
|
||||
55f5cf3fa7d05fcd7fdbfa3c47f6655f2bdd5df0 build/DZDE01/d_a_obj_mirror_sand/d_a_obj_mirror_sand.rel
|
||||
5787162ff1e4ebaea9b02d95cbdaab7691fdabf5 build/DZDE01/d_a_obj_mirror_screw/d_a_obj_mirror_screw.rel
|
||||
c38f92e906270cc2b678155555621f9f674824f2 build/DZDE01/d_a_obj_mirror_table/d_a_obj_mirror_table.rel
|
||||
07b3731cf2659cc7081746ec3e321f7775784cbf build/DZDE01/d_a_obj_msima/d_a_obj_msima.rel
|
||||
2a5215dfc76bc95e0cf2199db0fce5373f28470a build/DZDE01/d_a_obj_mvstair/d_a_obj_mvstair.rel
|
||||
69aaae8063873e334730c97f01dd11bbb70f9e93 build/DZDE01/d_a_obj_myogan/d_a_obj_myogan.rel
|
||||
2176e9b51f1de6cc7e790301dc791425c1ba5546 build/DZDE01/d_a_obj_nagaisu/d_a_obj_nagaisu.rel
|
||||
edb90bf94bf81cac2bf4b6729c584a5d49934618 build/DZDE01/d_a_obj_nan/d_a_obj_nan.rel
|
||||
ac6b8d7bfa21f7cb534f918a102c564cb96145b3 build/DZDE01/d_a_obj_ndoor/d_a_obj_ndoor.rel
|
||||
b657a786caf0c5d06d3dad7e23a529a0e59b4821 build/DZDE01/d_a_obj_nougu/d_a_obj_nougu.rel
|
||||
f1d3487fc9968de1f3587499ca3a726e9517eae7 build/DZDE01/d_a_obj_octhashi/d_a_obj_octhashi.rel
|
||||
0a2c131f5dbd0cfabb2713930c7904edceb0ebae build/DZDE01/d_a_obj_oiltubo/d_a_obj_oiltubo.rel
|
||||
e9183adbbc1f59433474ca6e4eec7768c005fa5a build/DZDE01/d_a_obj_onsen/d_a_obj_onsen.rel
|
||||
9baaba4cf1b92f9b2bc7083e5f0ae4c044496115 build/DZDE01/d_a_obj_onsenFire/d_a_obj_onsenFire.rel
|
||||
5645143d4c572a794e45586ff601932a6fdbd1a5 build/DZDE01/d_a_obj_onsenTaru/d_a_obj_onsenTaru.rel
|
||||
6a5a2afe2e30b56319eaf70dd5d6f6643118828b build/DZDE01/d_a_obj_pdoor/d_a_obj_pdoor.rel
|
||||
fbe95763316ebda24d501617d8c8b80ea9f30b10 build/DZDE01/d_a_obj_pdtile/d_a_obj_pdtile.rel
|
||||
597139197be1c0c5d4f9eac95c83ed3255a1473d build/DZDE01/d_a_obj_pdwall/d_a_obj_pdwall.rel
|
||||
ad03b961ea01cabef6995f0469e849975d273216 build/DZDE01/d_a_obj_picture/d_a_obj_picture.rel
|
||||
361e7f2bb08afa729c382967fb2bce96141ca58d build/DZDE01/d_a_obj_pillar/d_a_obj_pillar.rel
|
||||
fe7b50367f79676f112d752f9a9a649c9e44427f build/DZDE01/d_a_obj_pleaf/d_a_obj_pleaf.rel
|
||||
16c4ac5ea032675cc73871302c65379695196ae7 build/DZDE01/d_a_obj_poCandle/d_a_obj_poCandle.rel
|
||||
cb42e6599459c6e135af8fb6000051c184975a83 build/DZDE01/d_a_obj_poFire/d_a_obj_poFire.rel
|
||||
9f37a9695bffe0c820277f5a98c97d48c1f3d6d4 build/DZDE01/d_a_obj_poTbox/d_a_obj_poTbox.rel
|
||||
e670f496c881e8378e17a3f753c28e15f4cb885c build/DZDE01/d_a_obj_prop/d_a_obj_prop.rel
|
||||
d55edd7551ee99812350b44ce46f80b03c9ea64c build/DZDE01/d_a_obj_pumpkin/d_a_obj_pumpkin.rel
|
||||
bcb35976709c8e70ffbb1aa105370484af4681b1 build/DZDE01/d_a_obj_rcircle/d_a_obj_rcircle.rel
|
||||
01d198cda9f13ef29987974180ed7aee8114b390 build/DZDE01/d_a_obj_rfHole/d_a_obj_rfHole.rel
|
||||
927c4c0f1bee873c477956cd4d824fd8c742f63d build/DZDE01/d_a_obj_rgate/d_a_obj_rgate.rel
|
||||
a4cbfde2da5f45958f73306072c6e9ed26b41f82 build/DZDE01/d_a_obj_riverrock/d_a_obj_riverrock.rel
|
||||
c2ee2d84edee717648b6c43a3cf43b4e77c9f2b8 build/DZDE01/d_a_obj_rock/d_a_obj_rock.rel
|
||||
fc89d36ab5c51d19edaa573e56c48fdee02a8c7e build/DZDE01/d_a_obj_rotBridge/d_a_obj_rotBridge.rel
|
||||
182399e308c26ecb6ed73ded06bbfd5f534b8acb build/DZDE01/d_a_obj_rotTrap/d_a_obj_rotTrap.rel
|
||||
493c32aa0c56bf529945dcb1949c4da18e780561 build/DZDE01/d_a_obj_roten/d_a_obj_roten.rel
|
||||
942c97a9d7032000c76d92fc01f44e081ca10850 build/DZDE01/d_a_obj_rstair/d_a_obj_rstair.rel
|
||||
a98b9d43746a0e1a2708b09bcfc01878a97e2b6c build/DZDE01/d_a_obj_rw/d_a_obj_rw.rel
|
||||
96dd064ec1737a8030e93d67cecb8aa11ef8e839 build/DZDE01/d_a_obj_saidan/d_a_obj_saidan.rel
|
||||
60fa04932e9a0721e7e0d806c52c8ca7f6992b79 build/DZDE01/d_a_obj_sakuita/d_a_obj_sakuita.rel
|
||||
64c5a773c077ce8a61b33e73885ddc135381463f build/DZDE01/d_a_obj_sakuita_rope/d_a_obj_sakuita_rope.rel
|
||||
18b044fd596374ec5610b724a62d90bf9bbc0778 build/DZDE01/d_a_obj_scannon/d_a_obj_scannon.rel
|
||||
308e3cb83cf6c8429cb3e2302f13ee6112482bae build/DZDE01/d_a_obj_scannon_crs/d_a_obj_scannon_crs.rel
|
||||
d0e44d459e08dcfda40cbf2bece3d46532434ec9 build/DZDE01/d_a_obj_scannon_ten/d_a_obj_scannon_ten.rel
|
||||
a775ea83063d6e990c6187b98614675dda698eae build/DZDE01/d_a_obj_sekidoor/d_a_obj_sekidoor.rel
|
||||
f9c671ffae450246d4fbb1187512449768c2082b build/DZDE01/d_a_obj_sekizo/d_a_obj_sekizo.rel
|
||||
d1f144d5ecd2f66f89d0663d470bd4642e226148 build/DZDE01/d_a_obj_sekizoa/d_a_obj_sekizoa.rel
|
||||
488fdf27ae4f76f8add1e9bdc3d78815fb0e6f2c build/DZDE01/d_a_obj_shield/d_a_obj_shield.rel
|
||||
03e0a330206b035b93bd30426340412bf90934ab build/DZDE01/d_a_obj_sm_door/d_a_obj_sm_door.rel
|
||||
7fcca49dd1c4d43af66f563a5fd7f838525fca61 build/DZDE01/d_a_obj_smallkey/d_a_obj_smallkey.rel
|
||||
0d586035ba30770377de2a0522421dc7daf1e4b5 build/DZDE01/d_a_obj_smgdoor/d_a_obj_smgdoor.rel
|
||||
268000fadc086dd6312c2a9378def1479aa566a6 build/DZDE01/d_a_obj_smoke/d_a_obj_smoke.rel
|
||||
ebdedc21c2f8e80b6f73441d632f3f1d085438f2 build/DZDE01/d_a_obj_smtile/d_a_obj_smtile.rel
|
||||
dde14cc2139016eae1c0f59bb9e41b55db7d25a4 build/DZDE01/d_a_obj_smw_stone/d_a_obj_smw_stone.rel
|
||||
4ca380e85805577c77d2618ac119f1a9b9d9d486 build/DZDE01/d_a_obj_snowEffTag/d_a_obj_snowEffTag.rel
|
||||
d6dfcc3f9178e4e784c58323db24d8dbcda68827 build/DZDE01/d_a_obj_snow_soup/d_a_obj_snow_soup.rel
|
||||
bff57c6137d74e2b4654bd442d80c8919223eb86 build/DZDE01/d_a_obj_so/d_a_obj_so.rel
|
||||
7fb12001d2510bece567fef6835271912932fa73 build/DZDE01/d_a_obj_spinLift/d_a_obj_spinLift.rel
|
||||
34eadafa839ee5aca4b2c6e71b2aa7f9a11cab8b build/DZDE01/d_a_obj_ss_drink/d_a_obj_ss_drink.rel
|
||||
529b049c49c6fd7961c64d545175839c7edf9d04 build/DZDE01/d_a_obj_ss_item/d_a_obj_ss_item.rel
|
||||
0462a7df7e23dee6cad1e428ab9c355cdec04fe3 build/DZDE01/d_a_obj_stairBlock/d_a_obj_stairBlock.rel
|
||||
9667cb2a1ca754d07484c6d8d42e822be2d3986b build/DZDE01/d_a_obj_stone/d_a_obj_stone.rel
|
||||
1925b6bf563f15a88af5743a501e3824c35322c8 build/DZDE01/d_a_obj_stopper/d_a_obj_stopper.rel
|
||||
5f085824425120f648a808876677475899ea9834 build/DZDE01/d_a_obj_stopper2/d_a_obj_stopper2.rel
|
||||
af31d08723894ec0b0d5ec9ec5fb7685c72f7ebc build/DZDE01/d_a_obj_suisya/d_a_obj_suisya.rel
|
||||
6c9a168beca69f7980f3b9510c92b9d91bbbdbba build/DZDE01/d_a_obj_sw/d_a_obj_sw.rel
|
||||
0009e942531acde7291d7fc57b788362ff46c58a build/DZDE01/d_a_obj_swBallA/d_a_obj_swBallA.rel
|
||||
6bb4ebc18e35d5c8355c14b84e18d5bf439aa57e build/DZDE01/d_a_obj_swBallB/d_a_obj_swBallB.rel
|
||||
f29768632be9b84ac2f2c9f0a0f50f5f910aa45d build/DZDE01/d_a_obj_swBallC/d_a_obj_swBallC.rel
|
||||
9158a305da626dd037b4a0c74d50b063b014b2bf build/DZDE01/d_a_obj_swLight/d_a_obj_swLight.rel
|
||||
9a6b90c2bb5915ad27151cfa92f2de869a068e6a build/DZDE01/d_a_obj_swchain/d_a_obj_swchain.rel
|
||||
b3a64b31e47bbfb508bb43c111b854c5766faad1 build/DZDE01/d_a_obj_swhang/d_a_obj_swhang.rel
|
||||
4ea914c15c9cffea0726586b381f1f2cdf46852a build/DZDE01/d_a_obj_sword/d_a_obj_sword.rel
|
||||
76b19336072b867b77d075646b088ddd7213e3f6 build/DZDE01/d_a_obj_swpush2/d_a_obj_swpush2.rel
|
||||
b3a4156d27a83c62a40480fa67555f20be90feb9 build/DZDE01/d_a_obj_swspinner/d_a_obj_swspinner.rel
|
||||
c749309266f7bc323fbd06fa559080b9d136b49f build/DZDE01/d_a_obj_swturn/d_a_obj_swturn.rel
|
||||
a1018f27b267df475442060e6f73c6e796f08f62 build/DZDE01/d_a_obj_syRock/d_a_obj_syRock.rel
|
||||
30dd4a9dab0652fd51c0ccec78c04a92f4ef55e2 build/DZDE01/d_a_obj_szbridge/d_a_obj_szbridge.rel
|
||||
3ea529493eae7de93130863c73777b5c37add0c7 build/DZDE01/d_a_obj_taFence/d_a_obj_taFence.rel
|
||||
97b359fb7ed663db78a7c1d9813b2c4ca69c5957 build/DZDE01/d_a_obj_table/d_a_obj_table.rel
|
||||
b8ab39f6fa99df53d690b79e6cde679b6659b962 build/DZDE01/d_a_obj_takaraDai/d_a_obj_takaraDai.rel
|
||||
aae3e29aa4fde95b366e69eea3622744653799b6 build/DZDE01/d_a_obj_tatigi/d_a_obj_tatigi.rel
|
||||
b638b2d324ff967c360907a50a777354c39f078a build/DZDE01/d_a_obj_ten/d_a_obj_ten.rel
|
||||
44331627f98ac12d079dbe78be6db5fc299e76cb build/DZDE01/d_a_obj_testcube/d_a_obj_testcube.rel
|
||||
b6bfa645da5a0bbc24d2c560d58e23587d42e889 build/DZDE01/d_a_obj_tgake/d_a_obj_tgake.rel
|
||||
ca2320476c0f669a2a609291edd972e8473c8e51 build/DZDE01/d_a_obj_thashi/d_a_obj_thashi.rel
|
||||
168ebcdcba67d015db8767a4023183cbc6febf7f build/DZDE01/d_a_obj_thdoor/d_a_obj_thdoor.rel
|
||||
a881b804c36e25afe6363ce92dad9a87adaeaacc build/DZDE01/d_a_obj_timeFire/d_a_obj_timeFire.rel
|
||||
238251018d5a518dab3666e8e0baf0a01aa753e4 build/DZDE01/d_a_obj_tks/d_a_obj_tks.rel
|
||||
99437dfb1d8d7f189f8dd0926c30c82e8d6d5841 build/DZDE01/d_a_obj_tmoon/d_a_obj_tmoon.rel
|
||||
289dfa7645d9e3d2dcf801f22598d438e97508ef build/DZDE01/d_a_obj_toaru_maki/d_a_obj_toaru_maki.rel
|
||||
fd3a92d250ad166926aedb6c80b2f147c745554c build/DZDE01/d_a_obj_toby/d_a_obj_toby.rel
|
||||
a38fe83c8660ac9ac3d119c830faa358e5a880d5 build/DZDE01/d_a_obj_tobyhouse/d_a_obj_tobyhouse.rel
|
||||
76917e1d7b695f6ce3508ea6ddd8a96e007a889a build/DZDE01/d_a_obj_togeTrap/d_a_obj_togeTrap.rel
|
||||
3076f74425ad7786a0e5a373404031913b970ea0 build/DZDE01/d_a_obj_tombo/d_a_obj_tombo.rel
|
||||
686acba4586854ed6296d2e8c2bbe4abc45d5c6a build/DZDE01/d_a_obj_tornado/d_a_obj_tornado.rel
|
||||
0be62c6b42b8df6bb772005ab3322286098d2abc build/DZDE01/d_a_obj_tornado2/d_a_obj_tornado2.rel
|
||||
91f5b8ddf07c2455be155640cc5af78f700acdae build/DZDE01/d_a_obj_tp/d_a_obj_tp.rel
|
||||
4066c16a8e9c70c8c8060549d2399f204f855ffa build/DZDE01/d_a_obj_treesh/d_a_obj_treesh.rel
|
||||
33539769a9b3b1d67562fb66ce6d07c96942c26d build/DZDE01/d_a_obj_twGate/d_a_obj_twGate.rel
|
||||
c1cd5e603424e8cc9bfe6f4ad7ec571929f11583 build/DZDE01/d_a_obj_udoor/d_a_obj_udoor.rel
|
||||
104e46a101b8b3bdd57bec0823644608ec05bcc8 build/DZDE01/d_a_obj_usaku/d_a_obj_usaku.rel
|
||||
79e80c2279e68dd886d76a624511c8c944c01a26 build/DZDE01/d_a_obj_vground/d_a_obj_vground.rel
|
||||
f2598fbe2e4f2daaa6e31b045ac130324cdfc81d build/DZDE01/d_a_obj_volcball/d_a_obj_volcball.rel
|
||||
a7ec240133050760f3fe9155aaabb18ab662508a build/DZDE01/d_a_obj_volcbom/d_a_obj_volcbom.rel
|
||||
2185db573dc93af5c85a0a69fe8725e1501a9cff build/DZDE01/d_a_obj_warp_kbrg/d_a_obj_warp_kbrg.rel
|
||||
55f6e7c73ca87b40939072a1b29e6b50d408915a build/DZDE01/d_a_obj_warp_obrg/d_a_obj_warp_obrg.rel
|
||||
9aa64183b488d053b1e62160f74b2ce9a159f207 build/DZDE01/d_a_obj_waterGate/d_a_obj_waterGate.rel
|
||||
3b29cd840e69b217fe4590f9dcf809a3f9b8dd6e build/DZDE01/d_a_obj_waterPillar/d_a_obj_waterPillar.rel
|
||||
5df26d66933dd47aa15006f1b161a67622156d1d build/DZDE01/d_a_obj_waterfall/d_a_obj_waterfall.rel
|
||||
32f6451654b19b6f40d178caeb68eb802e952dd6 build/DZDE01/d_a_obj_wchain/d_a_obj_wchain.rel
|
||||
55b6cb3025378bf52f3d0c037663a5a5b55aee55 build/DZDE01/d_a_obj_wdStick/d_a_obj_wdStick.rel
|
||||
3536087e4e48c4c280ae7155ed822e2597e9268b build/DZDE01/d_a_obj_web0/d_a_obj_web0.rel
|
||||
5d99401d1ce0d370ffed980c21a5293b6f52ea36 build/DZDE01/d_a_obj_web1/d_a_obj_web1.rel
|
||||
137bde9d86053af5316226706dd2cf2287e5d679 build/DZDE01/d_a_obj_well_cover/d_a_obj_well_cover.rel
|
||||
c0012747b7e137efcf40cbfa5a5241b54e24a019 build/DZDE01/d_a_obj_wflag/d_a_obj_wflag.rel
|
||||
5395850dc10ffa0a2667fe3b0f7e66459a388fea build/DZDE01/d_a_obj_wind_stone/d_a_obj_wind_stone.rel
|
||||
9265efc042d781132fb28139d887426bf46ad1ab build/DZDE01/d_a_obj_window/d_a_obj_window.rel
|
||||
874db418e4bdf11096ff0a32b9aabfead1361c44 build/DZDE01/d_a_obj_wood_pendulum/d_a_obj_wood_pendulum.rel
|
||||
e3c1f1733e184d4504734db1ffe636ca7cf3bca8 build/DZDE01/d_a_obj_wood_statue/d_a_obj_wood_statue.rel
|
||||
d52a4ab9efad87db107bc477eee478043b7db070 build/DZDE01/d_a_obj_wsword/d_a_obj_wsword.rel
|
||||
379ba314ea6f4f53cf75aca6504456b03c4aea84 build/DZDE01/d_a_obj_yel_bag/d_a_obj_yel_bag.rel
|
||||
c3fce5b07271266228e9b9caf7f94d905495be40 build/DZDE01/d_a_obj_ystone/d_a_obj_ystone.rel
|
||||
95a583a3ea19fb48cd0ad66b40c33caa53f78b30 build/DZDE01/d_a_obj_zcloth/d_a_obj_zcloth.rel
|
||||
1546ed02b24a076604b2aa5c6c2efe134f907381 build/DZDE01/d_a_obj_zdoor/d_a_obj_zdoor.rel
|
||||
7f9466ff81b24ce0377533fbb9a5d7106a15e05a build/DZDE01/d_a_obj_zrTurara/d_a_obj_zrTurara.rel
|
||||
11b62c1754ca67eeb412a8b0437fab6ced9aea4e build/DZDE01/d_a_obj_zrTuraraRock/d_a_obj_zrTuraraRock.rel
|
||||
41700f2618dbd75700aa6f213486fac3d6831fff build/DZDE01/d_a_obj_zraMark/d_a_obj_zraMark.rel
|
||||
066128b1a4a99c5f24a85597650586b7b0a7d9fb build/DZDE01/d_a_obj_zra_freeze/d_a_obj_zra_freeze.rel
|
||||
915e25f6db5efb55badca24881f276a468c68bcf build/DZDE01/d_a_obj_zra_rock/d_a_obj_zra_rock.rel
|
||||
da5cd49eb226995beadd13c4773629282127479f build/DZDE01/d_a_passer_mng/d_a_passer_mng.rel
|
||||
2e8ec687d0186892d8b15225722858edb89bc8de build/DZDE01/d_a_peru/d_a_peru.rel
|
||||
3e16837396879bb5df02fb61dd1a8d98dc14a5f7 build/DZDE01/d_a_ppolamp/d_a_ppolamp.rel
|
||||
694f7f546156fc3482ce6cdb4d0a227dce4fccbf build/DZDE01/d_a_skip_2D/d_a_skip_2D.rel
|
||||
a26eda2fc113d4711141a13cca4ebec2b6a5a6d2 build/DZDE01/d_a_startAndGoal/d_a_startAndGoal.rel
|
||||
3139c894c6d8839725f038ec86a06e1eda64ba91 build/DZDE01/d_a_swBall/d_a_swBall.rel
|
||||
ed0dbd23fdbb39d32a403c58baed6143b4b1294b build/DZDE01/d_a_swLBall/d_a_swLBall.rel
|
||||
59462f1623f4ded373b44e476299043a279afa41 build/DZDE01/d_a_swTime/d_a_swTime.rel
|
||||
139ba83d177e9bdf49d0822e02af177f82d3bdb0 build/DZDE01/d_a_tag_Lv6Gate/d_a_tag_Lv6Gate.rel
|
||||
3f35d668788faa028dfdb26f14561bd5c6ce883a build/DZDE01/d_a_tag_Lv7Gate/d_a_tag_Lv7Gate.rel
|
||||
516b4798a0732fc1e248e0928b865abafb4eb76f build/DZDE01/d_a_tag_Lv8Gate/d_a_tag_Lv8Gate.rel
|
||||
91ed604987e05d18114313c23646c2de6bc59ffc build/DZDE01/d_a_tag_TWgate/d_a_tag_TWgate.rel
|
||||
5862db4494da83b3bdb15e0fb88fcf851cfb4162 build/DZDE01/d_a_tag_arena/d_a_tag_arena.rel
|
||||
1af1fd12027adcdfc254642b57609b9d9c79b617 build/DZDE01/d_a_tag_assistance/d_a_tag_assistance.rel
|
||||
c10d0402048892c0c464cfa8dde5bc137e5a249f build/DZDE01/d_a_tag_bottle_item/d_a_tag_bottle_item.rel
|
||||
aff38be71d6c668c60408c18af95f03e9f31635d build/DZDE01/d_a_tag_chgrestart/d_a_tag_chgrestart.rel
|
||||
07a4dd9453ba56ea7e4cb685929e75b0bbecc649 build/DZDE01/d_a_tag_csw/d_a_tag_csw.rel
|
||||
baa768d1c78b18556e6c056860e3db8eca209e74 build/DZDE01/d_a_tag_escape/d_a_tag_escape.rel
|
||||
f922edda8520e3180a90c76690c7fb91f60d216f build/DZDE01/d_a_tag_firewall/d_a_tag_firewall.rel
|
||||
72605800f14e112546779a544b6daa60f9e26de7 build/DZDE01/d_a_tag_gra/d_a_tag_gra.rel
|
||||
300f02366352a8f2250014e1cfd18e2979251ff4 build/DZDE01/d_a_tag_guard/d_a_tag_guard.rel
|
||||
375dd708eccdc5e8357cb0946fdbceb043c48d98 build/DZDE01/d_a_tag_instruction/d_a_tag_instruction.rel
|
||||
046fd4e9fae34d520eded45a65fbb91f456e681b build/DZDE01/d_a_tag_kago_fall/d_a_tag_kago_fall.rel
|
||||
4ffbc6d9eeab0fac6bcdb0d0285bd464f3fd438f build/DZDE01/d_a_tag_lightball/d_a_tag_lightball.rel
|
||||
a1bcf6b4ff7836ae5a9fc706dedb533d8050cb30 build/DZDE01/d_a_tag_lv5soup/d_a_tag_lv5soup.rel
|
||||
1f79d468a9545422be14b69ad69e14e7aca74677 build/DZDE01/d_a_tag_lv6CstaSw/d_a_tag_lv6CstaSw.rel
|
||||
4b78527cd0661b824a0da116c1ab2fc01cdfbf48 build/DZDE01/d_a_tag_mmsg/d_a_tag_mmsg.rel
|
||||
f7413a6761b0c45262e9e09ea55989de2c9ffe5f build/DZDE01/d_a_tag_mwait/d_a_tag_mwait.rel
|
||||
552321cfed61ee2c278e35ad049719ffbb018ef6 build/DZDE01/d_a_tag_myna2/d_a_tag_myna2.rel
|
||||
38891570bc6f8ebf337f0a936bafb4b435dcb83a build/DZDE01/d_a_tag_myna_light/d_a_tag_myna_light.rel
|
||||
68a9ef0cf4c7cb15c4c93bc128107c90a6b28ea1 build/DZDE01/d_a_tag_pachi/d_a_tag_pachi.rel
|
||||
b43806825818f9bd0d5da0725097886a324806e5 build/DZDE01/d_a_tag_poFire/d_a_tag_poFire.rel
|
||||
9d4a49b44120509aa62443a67bb4dd355596a498 build/DZDE01/d_a_tag_qs/d_a_tag_qs.rel
|
||||
6f36abe802c24f2929ec1684d5463d7e5fb58b68 build/DZDE01/d_a_tag_ret_room/d_a_tag_ret_room.rel
|
||||
ae6006e83653d53b5ae3bbfd71bc04876366b683 build/DZDE01/d_a_tag_river_back/d_a_tag_river_back.rel
|
||||
83cc4fc12320655c8a3759ff7473fb2731e714dc build/DZDE01/d_a_tag_rmbit_sw/d_a_tag_rmbit_sw.rel
|
||||
57254c407e42750683f0c5e71e39a8aff5bb767d build/DZDE01/d_a_tag_schedule/d_a_tag_schedule.rel
|
||||
53957ec7a1f5b8a6d91685cf30976b3a51f145a4 build/DZDE01/d_a_tag_setBall/d_a_tag_setBall.rel
|
||||
c49d2378cf31c2ec26258c934e086ef5deae9cd8 build/DZDE01/d_a_tag_setrestart/d_a_tag_setrestart.rel
|
||||
bd15bb31835b074454713547f6f578134c9783d0 build/DZDE01/d_a_tag_shop_camera/d_a_tag_shop_camera.rel
|
||||
62334ba769661cf2ced380c98a3a6dbcfccb3782 build/DZDE01/d_a_tag_shop_item/d_a_tag_shop_item.rel
|
||||
a6f0186e32f4961474dc261ef6f1a44c924c6a58 build/DZDE01/d_a_tag_smk_emt/d_a_tag_smk_emt.rel
|
||||
fe64a95609b2806eb37e06f28ca169409f2e2d7f build/DZDE01/d_a_tag_spinner/d_a_tag_spinner.rel
|
||||
87db1970f7922a6f0f46bdf1b58942713a9fc8f8 build/DZDE01/d_a_tag_sppath/d_a_tag_sppath.rel
|
||||
ff8e4d6e6d7222279fc79c374a3e5fcbaad5fadf build/DZDE01/d_a_tag_ss_drink/d_a_tag_ss_drink.rel
|
||||
a0e3d35b4ae871ef784b38936c2d29fba9d458e8 build/DZDE01/d_a_tag_stream/d_a_tag_stream.rel
|
||||
94f3f67a3bba5c7af0f7e28bbea4216e3e2c28e7 build/DZDE01/d_a_tag_theB_hint/d_a_tag_theB_hint.rel
|
||||
7ea2df7e76622964e71c58c4d4ea9fa927ee4ae1 build/DZDE01/d_a_tag_wara_howl/d_a_tag_wara_howl.rel
|
||||
9e7ab8e87d2c29b8922140728ed59c8efe363845 build/DZDE01/d_a_tag_watchge/d_a_tag_watchge.rel
|
||||
4d72913ece384c7df7eb8057a5317104be52d564 build/DZDE01/d_a_tag_waterfall/d_a_tag_waterfall.rel
|
||||
e3a1109f8f0572961dff6ff256419b68bf5ee646 build/DZDE01/d_a_tag_wljump/d_a_tag_wljump.rel
|
||||
b17a3441a73ecd0ffd7bc8a6fb7f2a4cfae3ee61 build/DZDE01/d_a_tag_yami/d_a_tag_yami.rel
|
||||
dd65c0399ad161aee8eb13f768d4b49fc4c3f0f6 build/DZDE01/d_a_talk/d_a_talk.rel
|
||||
13a468f6084005d0dd2ff587ddd447678c8b7611 build/DZDE01/d_a_tboxSw/d_a_tboxSw.rel
|
||||
883790b755d8e3d198f01f8e0956267b41c20794 build/DZDE01/d_a_title/d_a_title.rel
|
||||
ea57cbb0105ad35cf42273bfea331e48e432457c build/DZDE01/d_a_warp_bug/d_a_warp_bug.rel
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_L7demo_dr.cpp:
|
||||
.text start:0x0000005C end:0x000010D8
|
||||
.rodata start:0x00000000 end:0x00000074
|
||||
.data start:0x00000000 end:0x000000B8
|
||||
@@ -1,66 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
setAction__6daDr_cFM6daDr_cFPCvPv_v = .text:0x0000005C; // type:function size:0xA4 scope:global align:4
|
||||
mtx_set__6daDr_cFv = .text:0x00000100; // type:function size:0xB0 scope:global align:4
|
||||
draw__6daDr_cFv = .text:0x000001B0; // type:function size:0x80 scope:global align:4
|
||||
daDr_Draw__FP6daDr_c = .text:0x00000230; // type:function size:0x4 scope:global align:4
|
||||
wait__6daDr_cFv = .text:0x00000234; // type:function size:0x19C scope:global align:4
|
||||
pl_walk__6daDr_cFv = .text:0x000003D0; // type:function size:0x290 scope:global align:4
|
||||
pl_turn__6daDr_cFv = .text:0x00000660; // type:function size:0x11C scope:global align:4
|
||||
bridge_destroy__6daDr_cFv = .text:0x0000077C; // type:function size:0x2A0 scope:global align:4
|
||||
bridge_destroy2__6daDr_cFv = .text:0x00000A1C; // type:function size:0x1BC scope:global align:4
|
||||
execute__6daDr_cFv = .text:0x00000BD8; // type:function size:0xFC scope:global align:4
|
||||
daDr_Execute__FP6daDr_c = .text:0x00000CD4; // type:function size:0x4 scope:global align:4
|
||||
daDr_IsDelete__FP6daDr_c = .text:0x00000CD8; // type:function size:0x8 scope:global align:4
|
||||
daDr_Delete__FP6daDr_c = .text:0x00000CE0; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__6daDr_cFv = .text:0x00000CE4; // type:function size:0xF4 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00000DD8; // type:function size:0x4 scope:global align:4
|
||||
check_start__6daDr_cFv = .text:0x00000DDC; // type:function size:0x9C scope:global align:4
|
||||
create__6daDr_cFv = .text:0x00000E78; // type:function size:0x1F4 scope:global align:4
|
||||
daDr_Create__FP6daDr_c = .text:0x0000106C; // type:function size:0x4 scope:global align:4
|
||||
_delete__6daDr_cFv = .text:0x00001070; // type:function size:0x68 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@94858 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@94859 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@94860 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@94895 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@94896 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@94897 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@94898 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@94899 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@94900 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float
|
||||
@94901 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@95014 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@95015 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@95016 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@95017 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@95018 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@95056 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@95057 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@95058 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@95059 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@95060 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@95087 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4 data:float
|
||||
@95088 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4 data:float
|
||||
@95139 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@95140 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@95141 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@95142 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@95189 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@95190 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@95191 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
@94831 = .data:0x00000000; // type:object size:0xC scope:local align:4
|
||||
@94832 = .data:0x0000000C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@94873 = .data:0x00000018; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@94921 = .data:0x00000024; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@94945 = .data:0x00000030; // type:object size:0xC scope:local align:4
|
||||
@94974 = .data:0x0000003C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
lbl_135_data_48 = .data:0x00000048; // type:object size:0x5 data:string
|
||||
@95152 = .data:0x00000050; // type:object size:0xC scope:local align:4
|
||||
@95153 = .data:0x0000005C; // type:object size:0xC scope:local align:4
|
||||
l_daDr_Method = .data:0x00000068; // type:object size:0x20 scope:global align:4
|
||||
g_profile_DR = .data:0x00000088; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_L7low_dr.cpp:
|
||||
.text start:0x0000005C end:0x000008E0
|
||||
.rodata start:0x00000000 end:0x0000003C
|
||||
.data start:0x00000000 end:0x00000064
|
||||
@@ -1,39 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
setAction__11daL7lowDr_cFM11daL7lowDr_cFPCvPv_v = .text:0x0000005C; // type:function size:0xA4 scope:global align:4
|
||||
action__11daL7lowDr_cFv = .text:0x00000100; // type:function size:0xA4 scope:global align:4
|
||||
daL7lowDr_Delete__FP11daL7lowDr_c = .text:0x000001A4; // type:function size:0x4 scope:global align:4
|
||||
mtx_set__11daL7lowDr_cFv = .text:0x000001A8; // type:function size:0x6C scope:global align:4
|
||||
fly__11daL7lowDr_cFv = .text:0x00000214; // type:function size:0x38C scope:global align:4
|
||||
daL7lowDr_Execute__FP11daL7lowDr_c = .text:0x000005A0; // type:function size:0x24 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x000005C4; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__11daL7lowDr_cFv = .text:0x000005C8; // type:function size:0xF8 scope:global align:4
|
||||
create__11daL7lowDr_cFv = .text:0x000006C0; // type:function size:0x128 scope:global align:4
|
||||
daL7lowDr_Create__FP11daL7lowDr_c = .text:0x000007E8; // type:function size:0x4 scope:global align:4
|
||||
draw__11daL7lowDr_cFv = .text:0x000007EC; // type:function size:0x98 scope:global align:4
|
||||
daL7lowDr_Draw__FP11daL7lowDr_c = .text:0x00000884; // type:function size:0x4 scope:global align:4
|
||||
daL7lowDr_IsDelete__FP11daL7lowDr_c = .text:0x00000888; // type:function size:0x8 scope:global align:4
|
||||
_delete__11daL7lowDr_cFv = .text:0x00000890; // type:function size:0x50 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@92665 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@92666 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@92667 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@92668 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@92669 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
|
||||
@92670 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@92671 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@92672 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@92673 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@92674 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@92675 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@92676 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@92677 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@92678 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@92679 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
lbl_136_data_0 = .data:0x00000000; // type:object size:0x8 data:string
|
||||
@92740 = .data:0x00000008; // type:object size:0xC scope:local align:4 data:4byte
|
||||
l_daL7lowDr_Method = .data:0x00000014; // type:object size:0x20 scope:global align:4
|
||||
g_profile_L7lowDr = .data:0x00000034; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_L7op_demo_dr.cpp:
|
||||
.text start:0x0000005C end:0x00002AA4
|
||||
.rodata start:0x00000000 end:0x00000144
|
||||
.data start:0x00000000 end:0x000001D8
|
||||
@@ -1,127 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
setAction__9daL7ODR_cFM9daL7ODR_cFPCvPv_v = .text:0x0000005C; // type:function size:0xA4 scope:global align:4
|
||||
setDrAction__9daL7ODR_cFM9daL7ODR_cFPCvPv_v = .text:0x00000100; // type:function size:0xA4 scope:global align:4
|
||||
mtx_set__9daL7ODR_cFv = .text:0x000001A4; // type:function size:0x90 scope:global align:4
|
||||
draw__9daL7ODR_cFv = .text:0x00000234; // type:function size:0xE4 scope:global align:4
|
||||
daL7ODR_Draw__FP9daL7ODR_c = .text:0x00000318; // type:function size:0x4 scope:global align:4
|
||||
wait__9daL7ODR_cFv = .text:0x0000031C; // type:function size:0x118 scope:global align:4
|
||||
pl_walk__9daL7ODR_cFv = .text:0x00000434; // type:function size:0x678 scope:global align:4
|
||||
setZoomOutCamPos__9daL7ODR_cFR4cXyzR4cXyzf = .text:0x00000AAC; // type:function size:0xB0 scope:global align:4
|
||||
dr_fly__9daL7ODR_cFv = .text:0x00000B5C; // type:function size:0x1950 scope:global align:4
|
||||
execute__9daL7ODR_cFv = .text:0x000024AC; // type:function size:0xB4 scope:global align:4
|
||||
daL7ODR_Execute__FP9daL7ODR_c = .text:0x00002560; // type:function size:0x4 scope:global align:4
|
||||
daL7ODR_IsDelete__FP9daL7ODR_c = .text:0x00002564; // type:function size:0x8 scope:global align:4
|
||||
_delete__9daL7ODR_cFv = .text:0x0000256C; // type:function size:0x6C scope:global align:4
|
||||
daL7ODR_Delete__FP9daL7ODR_c = .text:0x000025D8; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__9daL7ODR_cFv = .text:0x000025DC; // type:function size:0xFC scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x000026D8; // type:function size:0x4 scope:global align:4
|
||||
check_start__9daL7ODR_cFv = .text:0x000026DC; // type:function size:0xB4 scope:global align:4
|
||||
daL7ODR_Create__FP9daL7ODR_c = .text:0x00002790; // type:function size:0x4 scope:global align:4
|
||||
dr_wait__9daL7ODR_cFv = .text:0x00002794; // type:function size:0x114 scope:global align:4
|
||||
create__9daL7ODR_cFv = .text:0x000028A8; // type:function size:0x1FC scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@97237 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@97238 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@97239 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@97240 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@97346 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@97347 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:string
|
||||
@97348 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@97349 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@97350 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@97351 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@97352 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@97353 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@97354 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@97355 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@97356 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@97357 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@97358 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@97359 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@97360 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@97361 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@97390 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@97391 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@97393 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@97394 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@97395 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@97678 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@97679 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@97680 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@97681 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@97682 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@97683 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@97684 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@97685 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@97686 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@97687 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@97688 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@97689 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@97690 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4 data:string
|
||||
@97691 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@97692 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@97693 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@97694 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@97695 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@97696 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@97697 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@97698 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@97699 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@97700 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@97701 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@97702 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@97703 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@97704 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@97705 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@97706 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@97707 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@97708 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@97709 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@97710 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@97711 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@97712 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@97713 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@97714 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@97715 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@97716 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@97717 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@97718 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@97719 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@97720 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@97721 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@97722 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@97723 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@97724 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@97725 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@97726 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@97727 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@97728 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@97808 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@97809 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@97810 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@97849 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@97850 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
@97255 = .data:0x00000000; // type:object size:0xC scope:local align:4
|
||||
@97303 = .data:0x0000000C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@97304 = .data:0x00000018; // type:object size:0xC scope:local align:4 data:4byte
|
||||
lbl_137_data_24 = .data:0x00000024; // type:object size:0x5 data:string
|
||||
@97815 = .data:0x0000002C; // type:object size:0xC scope:local align:4
|
||||
@97816 = .data:0x00000038; // type:object size:0xC scope:local align:4
|
||||
lbl_137_data_44 = .data:0x00000044; // type:object size:0x5 data:string
|
||||
l_daL7ODR_Method = .data:0x0000004C; // type:object size:0x20 scope:global align:4
|
||||
g_profile_L7ODR = .data:0x0000006C; // type:object size:0x30 scope:global align:4
|
||||
lbl_137_data_9C = .data:0x0000009C; // type:object size:0x34
|
||||
@95335 = .data:0x000000D0; // type:object size:0x3C scope:local align:4
|
||||
lbl_137_data_10C = .data:0x0000010C; // type:object size:0x14
|
||||
@95337 = .data:0x00000120; // type:object size:0x34 scope:local align:4
|
||||
lbl_137_data_154 = .data:0x00000154; // type:object size:0x14
|
||||
@95395 = .data:0x00000168; // type:object size:0x24 scope:local align:4
|
||||
lbl_137_data_18C = .data:0x0000018C; // type:object size:0x18
|
||||
@95397 = .data:0x000001A4; // type:object size:0xC scope:local align:4
|
||||
lbl_137_data_1B0 = .data:0x000001B0; // type:object size:0x1C
|
||||
@95399 = .data:0x000001CC; // type:object size:0xC scope:local align:4
|
||||
@@ -1,12 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_alldie.cpp:
|
||||
.text start:0x0000005C end:0x00000508
|
||||
.data start:0x00000000 end:0x00000050
|
||||
@@ -1,18 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
actionCheck__10daAlldie_cFv = .text:0x0000005C; // type:function size:0x50 scope:global align:4
|
||||
actionTimer__10daAlldie_cFv = .text:0x000000AC; // type:function size:0xA0 scope:global align:4
|
||||
actionOrder__10daAlldie_cFv = .text:0x0000014C; // type:function size:0x5C scope:global align:4
|
||||
actionEvent__10daAlldie_cFv = .text:0x000001A8; // type:function size:0xA4 scope:global align:4
|
||||
actionNext__10daAlldie_cFv = .text:0x0000024C; // type:function size:0xCC scope:global align:4
|
||||
execute__10daAlldie_cFv = .text:0x00000318; // type:function size:0x74 scope:global align:4
|
||||
daAlldie_Draw__FP10daAlldie_c = .text:0x0000038C; // type:function size:0x8 scope:global align:4
|
||||
daAlldie_Execute__FP10daAlldie_c = .text:0x00000394; // type:function size:0x24 scope:global align:4
|
||||
daAlldie_IsDelete__FP10daAlldie_c = .text:0x000003B8; // type:function size:0x8 scope:global align:4
|
||||
daAlldie_Delete__FP10daAlldie_c = .text:0x000003C0; // type:function size:0x30 scope:global align:4
|
||||
daAlldie_Create__FP10fopAc_ac_c = .text:0x000003F0; // type:function size:0x118 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
l_daAlldie_Method = .data:0x00000000; // type:object size:0x20 scope:global align:4
|
||||
g_profile_ALLDIE = .data:0x00000020; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,12 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_andsw.cpp:
|
||||
.text start:0x0000005C end:0x000001A8
|
||||
.data start:0x00000000 end:0x00000050
|
||||
@@ -1,13 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
Create__9daAndsw_cFv = .text:0x0000005C; // type:function size:0x38 scope:global align:4
|
||||
create__9daAndsw_cFv = .text:0x00000094; // type:function size:0x68 scope:global align:4
|
||||
execute__9daAndsw_cFv = .text:0x000000FC; // type:function size:0x9C scope:global align:4
|
||||
daAndsw_Execute__FP9daAndsw_c = .text:0x00000198; // type:function size:0x4 scope:global align:4
|
||||
daAndsw_Delete__FP9daAndsw_c = .text:0x0000019C; // type:function size:0x8 scope:global align:4
|
||||
daAndsw_Create__FP10fopAc_ac_c = .text:0x000001A4; // type:function size:0x4 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
l_daAndsw_Method = .data:0x00000000; // type:object size:0x20 scope:global align:4
|
||||
g_profile_ANDSW = .data:0x00000020; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,12 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_andsw2.cpp:
|
||||
.text start:0x0000005C end:0x00000AC0
|
||||
.data start:0x00000000 end:0x00000084
|
||||
@@ -1,23 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
getTopSw__10daAndsw2_cFv = .text:0x0000005C; // type:function size:0x2C scope:global align:4
|
||||
chkAllSw2__10daAndsw2_cFv = .text:0x00000088; // type:function size:0xA0 scope:global align:4
|
||||
chkSwStatus__10daAndsw2_cFv = .text:0x00000128; // type:function size:0xB0 scope:global align:4
|
||||
chkSwStatus2__10daAndsw2_cFv = .text:0x000001D8; // type:function size:0xA0 scope:global align:4
|
||||
create__10daAndsw2_cFv = .text:0x00000278; // type:function size:0x268 scope:global align:4
|
||||
daAndsw2_actionOnAll__FP10daAndsw2_c = .text:0x000004E0; // type:function size:0x170 scope:global align:4
|
||||
daAndsw2_actionTimer__FP10daAndsw2_c = .text:0x00000650; // type:function size:0x13C scope:global align:4
|
||||
daAndsw2_actionOrder__FP10daAndsw2_c = .text:0x0000078C; // type:function size:0x178 scope:global align:4
|
||||
daAndsw2_actionEvent__FP10daAndsw2_c = .text:0x00000904; // type:function size:0x94 scope:global align:4
|
||||
daAndsw2_actionOff__FP10daAndsw2_c = .text:0x00000998; // type:function size:0xB0 scope:global align:4
|
||||
daAndsw2_actionWait__FP10daAndsw2_c = .text:0x00000A48; // type:function size:0x8 scope:global align:4
|
||||
daAndsw2_Execute__FP10daAndsw2_c = .text:0x00000A50; // type:function size:0x3C scope:global align:4
|
||||
daAndsw2_Delete__FP10daAndsw2_c = .text:0x00000A8C; // type:function size:0x30 scope:global align:4
|
||||
daAndsw2_Create__FP10fopAc_ac_c = .text:0x00000ABC; // type:function size:0x4 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
@90578 = .data:0x00000000; // type:object size:0x1C scope:local align:4
|
||||
l_action$localstatic$execute__10daAndsw2_cFv = .data:0x0000001C; // type:object size:0x18 scope:local align:4
|
||||
l_daAndsw2_Method = .data:0x00000034; // type:object size:0x20 scope:global align:4
|
||||
g_profile_ANDSW2 = .data:0x00000054; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,21 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_arrow.cpp:
|
||||
.text start:0x000000CC end:0x0000337C
|
||||
.rodata start:0x00000000 end:0x0000015C
|
||||
.data start:0x00000000 end:0x0000019C
|
||||
.bss start:0x00000008 end:0x00000024
|
||||
@@ -1,114 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
createHeap__9daArrow_cFv = .text:0x000000CC; // type:function size:0xF8 scope:global align:4
|
||||
daArrow_createHeap__FP10fopAc_ac_c = .text:0x000001C4; // type:function size:0x4 scope:global align:4
|
||||
atHitCallBack__9daArrow_cFP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x000001C8; // type:function size:0x11C scope:global align:4
|
||||
daArrow_atHitCallBack__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x000002E4; // type:function size:0x4 scope:global align:4
|
||||
decAlphaBlur__9daArrow_cFv = .text:0x000002E8; // type:function size:0x94 scope:global align:4
|
||||
setBlur__9daArrow_cFv = .text:0x0000037C; // type:function size:0xC0 scope:global align:4
|
||||
setLightArrowHitMark__9daArrow_cFPC4cXyz = .text:0x0000043C; // type:function size:0xDC scope:global align:4
|
||||
setLightChargeEffect__9daArrow_cFi = .text:0x00000518; // type:function size:0x134 scope:global align:4
|
||||
setArrowWaterNextPos__9daArrow_cFP4cXyzP4cXyz = .text:0x0000064C; // type:function size:0x1DC scope:global align:4
|
||||
setArrowAt__9daArrow_cFf = .text:0x00000828; // type:function size:0x238 scope:global align:4
|
||||
arrowShooting__9daArrow_cFv = .text:0x00000A60; // type:function size:0x2C4 scope:global align:4
|
||||
setRoomInfo__9daArrow_cFv = .text:0x00000D24; // type:function size:0x8C scope:global align:4
|
||||
clearNearActorData__9daArrow_cFv = .text:0x00000DB0; // type:function size:0x20 scope:global align:4
|
||||
getVibAngle__9daArrow_cFv = .text:0x00000DD0; // type:function size:0xDC scope:global align:4
|
||||
setNormalMatrix__9daArrow_cFv = .text:0x00000EAC; // type:function size:0xAC scope:global align:4
|
||||
setSmokePos__9daArrow_cFv = .text:0x00000F58; // type:function size:0xC4 scope:global align:4
|
||||
setKeepMatrix__9daArrow_cFv = .text:0x0000101C; // type:function size:0x128 scope:global align:4
|
||||
setStopActorMatrix__9daArrow_cFv = .text:0x00001144; // type:function size:0xEC scope:global align:4
|
||||
setBombMoveEffect__9daArrow_cFv = .text:0x00001230; // type:function size:0x14C scope:global align:4
|
||||
checkReget__9daArrow_cFv = .text:0x0000137C; // type:function size:0xE8 scope:global align:4
|
||||
procWait__9daArrow_cFv = .text:0x00001464; // type:function size:0x30C scope:global align:4
|
||||
procMove__9daArrow_cFv = .text:0x00001770; // type:function size:0xB44 scope:global align:4
|
||||
procReturnInit__9daArrow_cFi = .text:0x000022B4; // type:function size:0x174 scope:global align:4
|
||||
procReturn__9daArrow_cFv = .text:0x00002428; // type:function size:0x21C scope:global align:4
|
||||
procBGStop__9daArrow_cFv = .text:0x00002644; // type:function size:0xF4 scope:global align:4
|
||||
procActorStop__9daArrow_cFv = .text:0x00002738; // type:function size:0x6C scope:global align:4
|
||||
procActorControllStop__9daArrow_cFv = .text:0x000027A4; // type:function size:0x24 scope:global align:4
|
||||
procSlingHitInit__9daArrow_cFP4cXyzP12dCcD_GObjInf = .text:0x000027C8; // type:function size:0x160 scope:global align:4
|
||||
procSlingHit__9daArrow_cFv = .text:0x00002928; // type:function size:0x50 scope:global align:4
|
||||
execute__9daArrow_cFv = .text:0x00002978; // type:function size:0x208 scope:global align:4
|
||||
daArrow_execute__FP9daArrow_c = .text:0x00002B80; // type:function size:0x4 scope:global align:4
|
||||
draw__9daArrow_cFv = .text:0x00002B84; // type:function size:0x30C scope:global align:4
|
||||
daArrow_draw__FP9daArrow_c = .text:0x00002E90; // type:function size:0x4 scope:global align:4
|
||||
daAlink_searchHorseZelda__FP10fopAc_ac_cPv = .text:0x00002E94; // type:function size:0x14 scope:global align:4
|
||||
create__9daArrow_cFv = .text:0x00002EA8; // type:function size:0x38C scope:global align:4
|
||||
daArrow_create__FP9daArrow_c = .text:0x00003234; // type:function size:0x4 scope:global align:4
|
||||
__dt__9daArrow_cFv = .text:0x00003238; // type:function size:0xC4 scope:global align:4
|
||||
daArrow_delete__FP9daArrow_c = .text:0x000032FC; // type:function size:0x28 scope:global align:4
|
||||
__dt__15Z2SoundObjArrowFv = .text:0x00003324; // type:function size:0x58 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
l_atCpsSrc = .rodata:0x00000000; // type:object size:0x4C scope:global align:4
|
||||
l_coSphSrc = .rodata:0x0000004C; // type:object size:0x40 scope:global align:4
|
||||
@109561 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4 data:float
|
||||
effName$105039 = .rodata:0x00000090; // type:object size:0xC scope:local align:4
|
||||
effName$105059 = .rodata:0x0000009C; // type:object size:0x8 scope:local align:4
|
||||
localEffPos$105063 = .rodata:0x000000A4; // type:object size:0xC scope:local align:4
|
||||
@109657 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@109658 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@109690 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@109691 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@109692 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@109755 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109756 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109782 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109791 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@109792 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@109793 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@109794 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@109798 = .rodata:0x000000E0; // type:object size:0x8 scope:local align:4
|
||||
@109812 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109813 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@109825 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@109826 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@109827 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@109828 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4 data:string
|
||||
@109853 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@109854 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@109899 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109907 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@109980 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110207 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@110208 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@110209 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@110210 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@110239 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@110240 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@110241 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@110265 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@110266 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@110267 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
tmpColor$105953 = .rodata:0x0000013C; // type:object size:0x8 scope:local align:4
|
||||
@110423 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@110424 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@110515 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@110516 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@110517 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
effCnt$105038 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
@109924 = .data:0x00000008; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@110073 = .data:0x00000014; // type:object size:0xC scope:local align:4
|
||||
@110074 = .data:0x00000020; // type:object size:0xC scope:local align:4
|
||||
@110075 = .data:0x0000002C; // type:object size:0xC scope:local align:4
|
||||
@110227 = .data:0x00000038; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@110292 = .data:0x00000044; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@110456 = .data:0x00000050; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@110457 = .data:0x0000005C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
l_daArrowMethodTable = .data:0x00000068; // type:object size:0x20 scope:global align:4
|
||||
g_profile_ARROW = .data:0x00000088; // type:object size:0x30 scope:global align:4
|
||||
lbl_46_data_B8 = .data:0x000000B8; // type:object size:0x38
|
||||
@106225 = .data:0x000000F0; // type:object size:0xC scope:local align:4
|
||||
__vt__18JPAEmitterCallBack = .data:0x00000104; // type:object size:0x1C scope:global align:4
|
||||
lbl_46_data_120 = .data:0x00000120; // type:object size:0x7C
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@105328 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
localOffset$105325 = .bss:0x00000018; // type:object size:0xC scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_bh.cpp:
|
||||
.text start:0x000000CC end:0x0000416C
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000000D4
|
||||
.data start:0x00000000 end:0x0000033C
|
||||
.bss start:0x00000008 end:0x00000038
|
||||
@@ -1,114 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_BH_HIO_cFv = .text:0x000000CC; // type:function size:0x38 scope:global align:4
|
||||
anm_init__FP10b_bh_classifUcf = .text:0x00000104; // type:function size:0xAC scope:global align:4
|
||||
daB_BH_Draw__FP10b_bh_class = .text:0x000001B0; // type:function size:0xD4 scope:global align:4
|
||||
b_bh_wait__FP10b_bh_class = .text:0x00000284; // type:function size:0x600 scope:global align:4
|
||||
b_bh_attack_1__FP10b_bh_class = .text:0x00000884; // type:function size:0x3FC scope:global align:4
|
||||
b_bh_bombeat__FP10b_bh_class = .text:0x00000C80; // type:function size:0x238 scope:global align:4
|
||||
b_bh_down__FP10b_bh_class = .text:0x00000EB8; // type:function size:0x3D0 scope:global align:4
|
||||
b_bh_b_wait__FP10b_bh_class = .text:0x00001288; // type:function size:0x508 scope:global align:4
|
||||
b_bh_b_attack_1__FP10b_bh_class = .text:0x00001790; // type:function size:0x3D0 scope:global align:4
|
||||
b_bh_b_bombeat__FP10b_bh_class = .text:0x00001B60; // type:function size:0x18C scope:global align:4
|
||||
b_bh_b_down__FP10b_bh_class = .text:0x00001CEC; // type:function size:0x2A4 scope:global align:4
|
||||
b_bh_start__FP10b_bh_class = .text:0x00001F90; // type:function size:0x4DC scope:global align:4
|
||||
kuki_control1__FP10b_bh_class = .text:0x0000246C; // type:function size:0x234 scope:global align:4
|
||||
kuki_control2__FP10b_bh_class = .text:0x000026A0; // type:function size:0x148 scope:global align:4
|
||||
kuki_control3__FP10b_bh_class = .text:0x000027E8; // type:function size:0xE4 scope:global align:4
|
||||
s_b_sub__FPvPv = .text:0x000028CC; // type:function size:0xB0 scope:global align:4
|
||||
damage_check__FP10b_bh_class = .text:0x0000297C; // type:function size:0x314 scope:global align:4
|
||||
daB_BH_Execute__FP10b_bh_class = .text:0x00002C90; // type:function size:0xE1C scope:global align:4
|
||||
daB_BH_IsDelete__FP10b_bh_class = .text:0x00003AAC; // type:function size:0x8 scope:global align:4
|
||||
daB_BH_Delete__FP10b_bh_class = .text:0x00003AB4; // type:function size:0x68 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00003B1C; // type:function size:0x244 scope:global align:4
|
||||
daB_BH_Create__FP10fopAc_ac_c = .text:0x00003D60; // type:function size:0x384 scope:global align:4
|
||||
__dt__12daB_BH_HIO_cFv = .text:0x000040E4; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_bh_cpp = .text:0x00004124; // type:function size:0x48 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@98261 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@98270 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@98271 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@98362 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@98363 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@98364 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@98365 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@98366 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@98367 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@98368 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@98369 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@98370 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@98371 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@98372 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4 data:float
|
||||
@98373 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@98374 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@98375 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4 data:string
|
||||
@98376 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@98377 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@98378 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@98379 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@98380 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@98381 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@98386 = .rodata:0x00000060; // type:object size:0x8 scope:local align:4 data:double
|
||||
@98418 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@98419 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@98420 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@98421 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@98422 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@98423 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@98424 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@98471 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@98506 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@98507 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@98508 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@98509 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@98562 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@98629 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@98682 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@98683 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@98697 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@98718 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4 data:float
|
||||
@98958 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@98959 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@98960 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@98961 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@98962 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@98963 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@99031 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@99032 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@99087 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
pow_xa$93969 = .data:0x00000006; // type:object size:0x22 scope:local align:2
|
||||
eno$94187 = .data:0x00000028; // type:object size:0xA scope:local align:4
|
||||
eno$94198 = .data:0x00000032; // type:object size:0x8 scope:local align:2
|
||||
g_y_i$94263 = .data:0x0000003A; // type:object size:0xA scope:local align:2
|
||||
g_y_ji$94264 = .data:0x00000044; // type:object size:0x14 scope:local align:4
|
||||
cc_sph_src$94478 = .data:0x00000058; // type:object size:0x40 scope:local align:4
|
||||
tg_sph_src$94479 = .data:0x00000098; // type:object size:0x40 scope:local align:4
|
||||
l_daB_BH_Method = .data:0x000000D8; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_BH = .data:0x000000F8; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_BH_HIO_c = .data:0x00000128; // type:object size:0xC scope:global align:4
|
||||
lbl_138_data_134 = .data:0x00000134; // type:object size:0xD data:string
|
||||
@94524 = .data:0x00000144; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_BH_HIO_c = .data:0x00000150; // type:object size:0x8 scope:global align:4
|
||||
lbl_138_data_158 = .data:0x00000158; // type:object size:0x34
|
||||
@94587 = .data:0x0000018C; // type:object size:0x3C scope:local align:4
|
||||
lbl_138_data_1C8 = .data:0x000001C8; // type:object size:0x14
|
||||
@94589 = .data:0x000001DC; // type:object size:0x34 scope:local align:4
|
||||
lbl_138_data_210 = .data:0x00000210; // type:object size:0x14
|
||||
@94647 = .data:0x00000224; // type:object size:0x24 scope:local align:4
|
||||
lbl_138_data_248 = .data:0x00000248; // type:object size:0x18
|
||||
@94649 = .data:0x00000260; // type:object size:0xC scope:local align:4
|
||||
lbl_138_data_26C = .data:0x0000026C; // type:object size:0x1C
|
||||
@94651 = .data:0x00000288; // type:object size:0xC scope:local align:4
|
||||
lbl_138_data_294 = .data:0x00000294; // type:object size:0xA8
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@93399 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x18 scope:global align:4 data:byte
|
||||
bh = .bss:0x00000030; // type:object size:0x8 scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_bq.cpp:
|
||||
.text start:0x000000CC end:0x000063B8
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000002C8
|
||||
.data start:0x00000000 end:0x00000518
|
||||
.bss start:0x00000008 end:0x0000002C
|
||||
@@ -1,257 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_BQ_HIO_cFv = .text:0x000000CC; // type:function size:0x34 scope:global align:4
|
||||
anm_init__FP10b_bq_classifUcf = .text:0x00000100; // type:function size:0xAC scope:global align:4
|
||||
nodeCallBack__FP8J3DJointi = .text:0x000001AC; // type:function size:0x128 scope:global align:4
|
||||
daB_BQ_Draw__FP10b_bq_class = .text:0x000002D4; // type:function size:0x310 scope:global align:4
|
||||
s_fw_sub0__FPvPv = .text:0x000005E4; // type:function size:0x50 scope:global align:4
|
||||
s_fw_sub1__FPvPv = .text:0x00000634; // type:function size:0x114 scope:global align:4
|
||||
s_fw_sub2__FPvPv = .text:0x00000748; // type:function size:0xF8 scope:global align:4
|
||||
s_fw_del_sub__FPvPv = .text:0x00000840; // type:function size:0x4C scope:global align:4
|
||||
s_bi_del_sub__FPvPv = .text:0x0000088C; // type:function size:0x54 scope:global align:4
|
||||
action__FP10b_bq_class = .text:0x000008E0; // type:function size:0x1744 scope:global align:4
|
||||
anm_se_set__FP10b_bq_class = .text:0x00002024; // type:function size:0x9B8 scope:global align:4
|
||||
cam_3d_morf__FP10b_bq_classf = .text:0x000029DC; // type:function size:0xE4 scope:global align:4
|
||||
fish_set__FP10b_bq_class = .text:0x00002AC0; // type:function size:0xA4 scope:global align:4
|
||||
demo_camera__FP10b_bq_class = .text:0x00002B64; // type:function size:0x254C scope:global align:4
|
||||
daB_BQ_Execute__FP10b_bq_class = .text:0x000050B0; // type:function size:0x8C0 scope:global align:4
|
||||
daB_BQ_IsDelete__FP10b_bq_class = .text:0x00005970; // type:function size:0x8 scope:global align:4
|
||||
daB_BQ_Delete__FP10b_bq_class = .text:0x00005978; // type:function size:0x78 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x000059F0; // type:function size:0x2C8 scope:global align:4
|
||||
daB_BQ_Create__FP10fopAc_ac_c = .text:0x00005CB8; // type:function size:0x514 scope:global align:4
|
||||
__dt__12daB_BQ_HIO_cFv = .text:0x000061CC; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_bq_cpp = .text:0x0000620C; // type:function size:0x48 scope:global align:4
|
||||
setBaseTRMtx__8J3DModelFPA4_f = .text:0x00006254; // type:function size:0x10 scope:global align:4
|
||||
getModel__16mDoExt_McaMorfSOFv = .text:0x00006264; // type:function size:0x8 scope:global align:4
|
||||
getPlaySpeed__14mDoExt_baseAnmFv = .text:0x0000626C; // type:function size:0x8 scope:global align:4
|
||||
dComIfGp_getPlayer__Fi = .text:0x00006274; // type:function size:0x18 scope:global align:4
|
||||
dComIfGp_particle_set__FUlUsPC4cXyzPC5csXyzPC4cXyz = .text:0x0000628C; // type:function size:0x78 scope:global align:4
|
||||
dComIfG_Ccsp__Fv = .text:0x00006304; // type:function size:0x10 scope:global align:4
|
||||
dComIfGp_checkPlayerStatus0__FiUl = .text:0x00006314; // type:function size:0x1C scope:global align:4
|
||||
getCutType__9daPy_py_cCFv = .text:0x00006330; // type:function size:0x8 scope:global align:4
|
||||
daPy_getPlayerActorClass__Fv = .text:0x00006338; // type:function size:0x10 scope:global align:4
|
||||
changeOriginalDemo__9daPy_py_cFv = .text:0x00006348; // type:function size:0x14 scope:global align:4
|
||||
fopAcM_GetRoomNo__FPC10fopAc_ac_c = .text:0x0000635C; // type:function size:0xC scope:global align:4
|
||||
fopAcM_GetID__FPCv = .text:0x00006368; // type:function size:0x18 scope:global align:4
|
||||
fopAcM_OffStatus__FP10fopAc_ac_cUl = .text:0x00006380; // type:function size:0x10 scope:global align:4
|
||||
get__14mDoMtx_stack_cFv = .text:0x00006390; // type:function size:0xC scope:global align:4
|
||||
YrotM__14mDoMtx_stack_cFs = .text:0x0000639C; // type:function size:0x10 scope:global align:4
|
||||
fpcM_Search__FPFPvPv_PvPv = .text:0x000063AC; // type:function size:0x4 scope:global align:4
|
||||
setCurrentPos__16obj_ystone_classF4cXyz = .text:0x000063B0; // type:function size:0x8 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@103853 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@103862 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@103863 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104005 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@104006 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@104007 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@104038 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@104039 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@104064 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104452 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@104453 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@104454 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@104455 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@104456 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@104457 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@104458 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@104459 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@104460 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@104461 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@104462 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@104463 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@104464 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@104465 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@104466 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@104467 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@104468 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@104469 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@104473 = .rodata:0x00000070; // type:object size:0x8 scope:local align:4
|
||||
@104791 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105397 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@105398 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@105399 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@105400 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@105401 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@105402 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@105403 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@105404 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@105405 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@105406 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@105407 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@105408 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@105409 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@105410 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@105411 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@105412 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@105413 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@105414 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@105415 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@105416 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@105417 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@105418 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@105419 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@105420 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@105421 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@105422 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@105423 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@105424 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@105425 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@105426 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@105427 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@105428 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@105429 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@105430 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@105431 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@105432 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@105433 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@105434 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@105435 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@105436 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@105437 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@105438 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@105439 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@105440 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@105441 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@105442 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@105443 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@105444 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@105445 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@105446 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@105447 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@105448 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@105449 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@105450 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@105451 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@105452 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@105453 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@105454 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@105455 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@105456 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@105457 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@105458 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@105459 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@105460 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@105461 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@105462 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@105463 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@105464 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@105465 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@105466 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105467 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@105468 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@105469 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@105470 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@105471 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105472 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@105473 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@105474 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@105475 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@105476 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@105477 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@105478 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@105479 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@105480 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@105481 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@105482 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@105483 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@105484 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@105485 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@105486 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@105487 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@105488 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@105489 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@105490 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105491 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@105492 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@105493 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
@105494 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4
|
||||
@105495 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4
|
||||
@105496 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4
|
||||
@105497 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4
|
||||
@105498 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4
|
||||
@105499 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4
|
||||
@105500 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4
|
||||
@105501 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4
|
||||
@105502 = .rodata:0x00000220; // type:object size:0x4 scope:local align:4
|
||||
@105503 = .rodata:0x00000224; // type:object size:0x4 scope:local align:4
|
||||
@105504 = .rodata:0x00000228; // type:object size:0x4 scope:local align:4
|
||||
@105505 = .rodata:0x0000022C; // type:object size:0x4 scope:local align:4
|
||||
@105506 = .rodata:0x00000230; // type:object size:0x4 scope:local align:4
|
||||
@105507 = .rodata:0x00000234; // type:object size:0x4 scope:local align:4
|
||||
@105508 = .rodata:0x00000238; // type:object size:0x4 scope:local align:4
|
||||
@105509 = .rodata:0x0000023C; // type:object size:0x4 scope:local align:4
|
||||
@105510 = .rodata:0x00000240; // type:object size:0x4 scope:local align:4
|
||||
@105511 = .rodata:0x00000244; // type:object size:0x4 scope:local align:4
|
||||
@105512 = .rodata:0x00000248; // type:object size:0x4 scope:local align:4
|
||||
@105513 = .rodata:0x0000024C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105514 = .rodata:0x00000250; // type:object size:0x4 scope:local align:4
|
||||
@105515 = .rodata:0x00000254; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105516 = .rodata:0x00000258; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105517 = .rodata:0x0000025C; // type:object size:0x4 scope:local align:4
|
||||
@105518 = .rodata:0x00000260; // type:object size:0x4 scope:local align:4
|
||||
@105519 = .rodata:0x00000264; // type:object size:0x4 scope:local align:4
|
||||
@105520 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@105521 = .rodata:0x0000026C; // type:object size:0x4 scope:local align:4
|
||||
@105522 = .rodata:0x00000270; // type:object size:0x4 scope:local align:4
|
||||
@105523 = .rodata:0x00000274; // type:object size:0x4 scope:local align:4
|
||||
@105524 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@105525 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@105526 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@105527 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
@105528 = .rodata:0x00000288; // type:object size:0x4 scope:local align:4
|
||||
@105529 = .rodata:0x0000028C; // type:object size:0x4 scope:local align:4
|
||||
@105530 = .rodata:0x00000290; // type:object size:0x4 scope:local align:4
|
||||
@105627 = .rodata:0x00000294; // type:object size:0x4 scope:local align:4
|
||||
@105628 = .rodata:0x00000298; // type:object size:0x4 scope:local align:4
|
||||
@105629 = .rodata:0x0000029C; // type:object size:0x4 scope:local align:4
|
||||
@105630 = .rodata:0x000002A0; // type:object size:0x4 scope:local align:4
|
||||
@105631 = .rodata:0x000002A4; // type:object size:0x4 scope:local align:4
|
||||
@105632 = .rodata:0x000002A8; // type:object size:0x4 scope:local align:4
|
||||
@105633 = .rodata:0x000002AC; // type:object size:0x4 scope:local align:4
|
||||
@105634 = .rodata:0x000002B0; // type:object size:0x4 scope:local align:4
|
||||
@105635 = .rodata:0x000002B4; // type:object size:0x4 scope:local align:4
|
||||
@105636 = .rodata:0x000002B8; // type:object size:0x4 scope:local align:4
|
||||
@105637 = .rodata:0x000002BC; // type:object size:0x4 scope:local align:4
|
||||
@105858 = .rodata:0x000002C0; // type:object size:0x4 scope:local align:4
|
||||
@105859 = .rodata:0x000002C4; // type:object size:0x4 scope:local align:4 data:string
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
fireno$95025 = .data:0x00000006; // type:object size:0x8 scope:local align:2
|
||||
fireno$95037 = .data:0x0000000E; // type:object size:0x4 scope:local align:2
|
||||
@104474 = .data:0x00000014; // type:object size:0xA8 scope:local align:4
|
||||
g_e_i$95250 = .data:0x000000BC; // type:object size:0x26 scope:local align:4
|
||||
g_d_i$95257 = .data:0x000000E2; // type:object size:0x18 scope:local align:2
|
||||
g_k_ji$95258 = .data:0x000000FC; // type:object size:0x30 scope:local align:4
|
||||
g_y_i$95271 = .data:0x0000012C; // type:object size:0xA scope:local align:4
|
||||
g_y_ji$95272 = .data:0x00000138; // type:object size:0x14 scope:local align:4
|
||||
g_c_i$95283 = .data:0x0000014C; // type:object size:0x26 scope:local align:4
|
||||
g_c_ji$95284 = .data:0x00000174; // type:object size:0x4C scope:local align:4
|
||||
lf_pos$95359 = .data:0x000001C0; // type:object size:0x18 scope:local align:4 data:byte
|
||||
g_b_i$95590 = .data:0x000001D8; // type:object size:0xE scope:local align:4
|
||||
g_e_i$95631 = .data:0x000001E6; // type:object size:0xA scope:local align:2
|
||||
@105532 = .data:0x000001F0; // type:object size:0xDC scope:local align:4
|
||||
takino$95946 = .data:0x000002CC; // type:object size:0x8 scope:local align:4
|
||||
takino2$95947 = .data:0x000002D4; // type:object size:0x8 scope:local align:4
|
||||
cc_sph_src$96114 = .data:0x000002DC; // type:object size:0x40 scope:local align:4
|
||||
core_sph_src$96115 = .data:0x0000031C; // type:object size:0x40 scope:local align:4
|
||||
core_co_sph_src$96116 = .data:0x0000035C; // type:object size:0x40 scope:local align:4
|
||||
body_co_sph_src$96117 = .data:0x0000039C; // type:object size:0x40 scope:local align:4
|
||||
mizu_sph_src$96118 = .data:0x000003DC; // type:object size:0x40 scope:local align:4
|
||||
l_daB_BQ_Method = .data:0x0000041C; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_BQ = .data:0x0000043C; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_BQ_HIO_c = .data:0x0000046C; // type:object size:0xC scope:global align:4
|
||||
lbl_139_data_478 = .data:0x00000478; // type:object size:0xD data:string
|
||||
@96197 = .data:0x00000488; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_BQ_HIO_c = .data:0x00000494; // type:object size:0x8 scope:global align:4
|
||||
lbl_139_data_49C = .data:0x0000049C; // type:object size:0x7C
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
lbl_139_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte
|
||||
@94580 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x10 scope:global align:4 data:byte
|
||||
lbl_139_bss_28 = .bss:0x00000028; // type:object size:0x1 data:byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_dr.cpp:
|
||||
.text start:0x000000CC end:0x00009EFC
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000005B0
|
||||
.data start:0x00000000 end:0x0000082C
|
||||
.bss start:0x00000008 end:0x000000E4
|
||||
@@ -1,255 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_DR_HIO_cFv = .text:0x000000CC; // type:function size:0x13C scope:global align:4
|
||||
ctrlJoint__8daB_DR_cFP8J3DJointP8J3DModel = .text:0x00000208; // type:function size:0x130 scope:global align:4
|
||||
JointCallBack__8daB_DR_cFP8J3DJointi = .text:0x00000338; // type:function size:0x48 scope:global align:4
|
||||
draw__8daB_DR_cFv = .text:0x00000380; // type:function size:0x25C scope:global align:4
|
||||
daB_DR_Draw__FP8daB_DR_c = .text:0x000005DC; // type:function size:0x4 scope:global align:4
|
||||
setBck__8daB_DR_cFiUcff = .text:0x000005E0; // type:function size:0xAC scope:global align:4
|
||||
setActionMode__8daB_DR_cFii = .text:0x0000068C; // type:function size:0x18 scope:global align:4
|
||||
mGlider_WindPosSet__8daB_DR_cFv = .text:0x000006A4; // type:function size:0x70 scope:global align:4
|
||||
mBoot_c_tranceSet__8daB_DR_cFb = .text:0x00000714; // type:function size:0x10C scope:global align:4 data:4byte
|
||||
mStatusONOFF__8daB_DR_cFi = .text:0x00000820; // type:function size:0x90 scope:global align:4
|
||||
setSe__8daB_DR_cFv = .text:0x000008B0; // type:function size:0x8CC scope:global align:4
|
||||
setDeathLightEffect__8daB_DR_cFv = .text:0x0000117C; // type:function size:0xF4 scope:global align:4
|
||||
chkPartCreate__8daB_DR_cFb = .text:0x00001270; // type:function size:0x170 scope:global align:4
|
||||
mHabatakiAnmSet__8daB_DR_cFi = .text:0x000013E0; // type:function size:0x2B4 scope:global align:4
|
||||
mGlider_AniSet__8daB_DR_cFb = .text:0x00001694; // type:function size:0x2E4 scope:global align:4
|
||||
mGliderAtAniSet__8daB_DR_cFv = .text:0x00001978; // type:function size:0x14C scope:global align:4
|
||||
tail_hit_check__8daB_DR_cFv = .text:0x00001AC4; // type:function size:0xC4 scope:global align:4
|
||||
week_hit_check__8daB_DR_cFv = .text:0x00001B88; // type:function size:0xF8 scope:global align:4
|
||||
mTimerClr__8daB_DR_cFv = .text:0x00001C80; // type:function size:0x24 scope:global align:4
|
||||
mCountClr__8daB_DR_cFv = .text:0x00001CA4; // type:function size:0x24 scope:global align:4
|
||||
mHeadAngleSet__8daB_DR_cFv = .text:0x00001CC8; // type:function size:0x124 scope:global align:4
|
||||
flapMove__8daB_DR_cFb = .text:0x00001DEC; // type:function size:0x128 scope:global align:4
|
||||
revolutionMove__8daB_DR_cFv = .text:0x00001F14; // type:function size:0x198 scope:global align:4
|
||||
mPlayerHighCheck__8daB_DR_cFv = .text:0x000020AC; // type:function size:0xF0 scope:global align:4
|
||||
mBgFallGroundCheck__8daB_DR_cFv = .text:0x0000219C; // type:function size:0x270 scope:global align:4
|
||||
normalHoverMove__8daB_DR_cFv = .text:0x0000240C; // type:function size:0x12C scope:global align:4
|
||||
executeWait__8daB_DR_cFv = .text:0x00002538; // type:function size:0x2A8 scope:global align:4
|
||||
executeFlyWait__8daB_DR_cFv = .text:0x000027E0; // type:function size:0x240 scope:global align:4
|
||||
executeTailHit__8daB_DR_cFv = .text:0x00002A20; // type:function size:0xD04 scope:global align:4
|
||||
executeWeekHit__8daB_DR_cFv = .text:0x00003724; // type:function size:0xA08 scope:global align:4
|
||||
mBreathSet__8daB_DR_cFv = .text:0x0000412C; // type:function size:0x290 scope:global align:4
|
||||
mBreathHighSet__8daB_DR_cFb = .text:0x000043BC; // type:function size:0x238 scope:global align:4
|
||||
mFeintBreath__8daB_DR_cFv = .text:0x000045F4; // type:function size:0x2F0 scope:global align:4
|
||||
executeBreathAttack__8daB_DR_cFv = .text:0x000048E4; // type:function size:0x850 scope:global align:4
|
||||
executeWindAttack__8daB_DR_cFv = .text:0x00005134; // type:function size:0x3E0 scope:global align:4
|
||||
mGliderMoveSub__8daB_DR_cFf = .text:0x00005514; // type:function size:0x160 scope:global align:4
|
||||
executeGliderAttack__8daB_DR_cFv = .text:0x00005674; // type:function size:0xAFC scope:global align:4
|
||||
executePillarSearch__8daB_DR_cFv = .text:0x00006170; // type:function size:0x448 scope:global align:4
|
||||
executePillarWait__8daB_DR_cFv = .text:0x000065B8; // type:function size:0x5CC scope:global align:4
|
||||
startDemoCheck__8daB_DR_cFv = .text:0x00006B84; // type:function size:0xCC scope:global align:4
|
||||
executeDamageDemo__8daB_DR_cFv = .text:0x00006C50; // type:function size:0x7A0 scope:global align:4
|
||||
executeMiddleDemo__8daB_DR_cFv = .text:0x000073F0; // type:function size:0x128 scope:global align:4
|
||||
executeDead__8daB_DR_cFv = .text:0x00007518; // type:function size:0x150 scope:global align:4
|
||||
executeBullet__8daB_DR_cFv = .text:0x00007668; // type:function size:0x1A4 scope:global align:4
|
||||
executeParts__8daB_DR_cFv = .text:0x0000780C; // type:function size:0x2BC scope:global align:4
|
||||
action__8daB_DR_cFv = .text:0x00007AC8; // type:function size:0x438 scope:global align:4
|
||||
action_parts__8daB_DR_cFv = .text:0x00007F00; // type:function size:0x78 scope:global align:4
|
||||
mtx_set__8daB_DR_cFv = .text:0x00007F78; // type:function size:0x390 scope:global align:4
|
||||
parts_mtx_set__8daB_DR_cFv = .text:0x00008308; // type:function size:0x5C scope:global align:4
|
||||
cc_set__8daB_DR_cFv = .text:0x00008364; // type:function size:0x63C scope:global align:4
|
||||
down_cc_set__8daB_DR_cFv = .text:0x000089A0; // type:function size:0x18C scope:global align:4
|
||||
demo_skip__8daB_DR_cFi = .text:0x00008B2C; // type:function size:0x100 scope:global align:4
|
||||
DemoSkipCallBack__8daB_DR_cFPvi = .text:0x00008C2C; // type:function size:0x34 scope:global align:4
|
||||
execute__8daB_DR_cFv = .text:0x00008C60; // type:function size:0x484 scope:global align:4
|
||||
daB_DR_Execute__FP8daB_DR_c = .text:0x000090E4; // type:function size:0x4 scope:global align:4
|
||||
daB_DR_IsDelete__FP8daB_DR_c = .text:0x000090E8; // type:function size:0x8 scope:global align:4
|
||||
_delete__8daB_DR_cFv = .text:0x000090F0; // type:function size:0xD4 scope:global align:4
|
||||
daB_DR_Delete__FP8daB_DR_c = .text:0x000091C4; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__8daB_DR_cFv = .text:0x000091C8; // type:function size:0x25C scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00009424; // type:function size:0x4 scope:global align:4
|
||||
create__8daB_DR_cFv = .text:0x00009428; // type:function size:0x9EC scope:global align:4
|
||||
daB_DR_Create__FP8daB_DR_c = .text:0x00009E14; // type:function size:0x4 scope:global align:4
|
||||
__dt__12daB_DR_HIO_cFv = .text:0x00009E18; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_dr_cpp = .text:0x00009E58; // type:function size:0x48 scope:global align:4
|
||||
getMaterialNodePointer__12J3DModelDataCFUs = .text:0x00009EA0; // type:function size:0x10 scope:global align:4
|
||||
setGlobalSRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x00009EB0; // type:function size:0x4C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@104919 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@104920 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@104921 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@104922 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@104923 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@104924 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@104925 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@104926 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@104927 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@104928 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@104929 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@104946 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105052 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@105053 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105070 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105078 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105087 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@105088 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@105089 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@105308 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@105309 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105310 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@105311 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@105312 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@105313 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@105314 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@105315 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@105316 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@105317 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@105318 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@105319 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@105320 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@105321 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@105322 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@105323 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@105324 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@105325 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@105326 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@105327 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@105328 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@105329 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@105330 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@105331 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@105332 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@105333 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@105334 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@105335 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@105336 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@105337 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@105338 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@105339 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
BREAK_PARTS_DT$95067 = .rodata:0x000000CC; // type:object size:0x288 scope:local align:4
|
||||
@105442 = .rodata:0x00000358; // type:object size:0x8 scope:local align:4 data:double
|
||||
@105522 = .rodata:0x00000360; // type:object size:0x4 scope:local align:4
|
||||
@105647 = .rodata:0x00000364; // type:object size:0x4 scope:local align:4
|
||||
@105648 = .rodata:0x00000368; // type:object size:0x4 scope:local align:4
|
||||
@105649 = .rodata:0x0000036C; // type:object size:0x4 scope:local align:4
|
||||
@105650 = .rodata:0x00000370; // type:object size:0x4 scope:local align:4
|
||||
@105651 = .rodata:0x00000374; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105664 = .rodata:0x00000378; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105665 = .rodata:0x0000037C; // type:object size:0x4 scope:local align:4
|
||||
@105717 = .rodata:0x00000380; // type:object size:0x4 scope:local align:4
|
||||
@105737 = .rodata:0x00000384; // type:object size:0x4 scope:local align:4
|
||||
@105738 = .rodata:0x00000388; // type:object size:0x4 scope:local align:4
|
||||
@105739 = .rodata:0x0000038C; // type:object size:0x4 scope:local align:4
|
||||
@105740 = .rodata:0x00000390; // type:object size:0x4 scope:local align:4
|
||||
@105741 = .rodata:0x00000394; // type:object size:0x4 scope:local align:4
|
||||
@105742 = .rodata:0x00000398; // type:object size:0x4 scope:local align:4
|
||||
@105982 = .rodata:0x0000039C; // type:object size:0x4 scope:local align:4
|
||||
@105983 = .rodata:0x000003A0; // type:object size:0x4 scope:local align:4
|
||||
@105984 = .rodata:0x000003A4; // type:object size:0x4 scope:local align:4
|
||||
@105985 = .rodata:0x000003A8; // type:object size:0x4 scope:local align:4
|
||||
@105986 = .rodata:0x000003AC; // type:object size:0x4 scope:local align:4
|
||||
@105987 = .rodata:0x000003B0; // type:object size:0x4 scope:local align:4
|
||||
@106151 = .rodata:0x000003B4; // type:object size:0x4 scope:local align:4
|
||||
@106152 = .rodata:0x000003B8; // type:object size:0x4 scope:local align:4
|
||||
@106208 = .rodata:0x000003BC; // type:object size:0x4 scope:local align:4
|
||||
@106360 = .rodata:0x000003C0; // type:object size:0x4 scope:local align:4
|
||||
@106413 = .rodata:0x000003C4; // type:object size:0x4 scope:local align:4
|
||||
@106414 = .rodata:0x000003C8; // type:object size:0x4 scope:local align:4
|
||||
@106415 = .rodata:0x000003CC; // type:object size:0x4 scope:local align:4
|
||||
@106441 = .rodata:0x000003D0; // type:object size:0x4 scope:local align:4
|
||||
@106580 = .rodata:0x000003D4; // type:object size:0x4 scope:local align:4
|
||||
@106581 = .rodata:0x000003D8; // type:object size:0x4 scope:local align:4
|
||||
@106582 = .rodata:0x000003DC; // type:object size:0x4 scope:local align:4
|
||||
@106583 = .rodata:0x000003E0; // type:object size:0x4 scope:local align:4
|
||||
@106584 = .rodata:0x000003E4; // type:object size:0x4 scope:local align:4
|
||||
@106585 = .rodata:0x000003E8; // type:object size:0x4 scope:local align:4
|
||||
@106586 = .rodata:0x000003EC; // type:object size:0x4 scope:local align:4
|
||||
@106587 = .rodata:0x000003F0; // type:object size:0x4 scope:local align:4
|
||||
@106588 = .rodata:0x000003F4; // type:object size:0x4 scope:local align:4
|
||||
@106636 = .rodata:0x000003F8; // type:object size:0x4 scope:local align:4
|
||||
@106637 = .rodata:0x000003FC; // type:object size:0x4 scope:local align:4
|
||||
@106638 = .rodata:0x00000400; // type:object size:0x4 scope:local align:4
|
||||
@106639 = .rodata:0x00000404; // type:object size:0x4 scope:local align:4
|
||||
@106698 = .rodata:0x00000408; // type:object size:0x4 scope:local align:4
|
||||
@106699 = .rodata:0x0000040C; // type:object size:0x4 scope:local align:4
|
||||
@106700 = .rodata:0x00000410; // type:object size:0x4 scope:local align:4
|
||||
@106824 = .rodata:0x00000414; // type:object size:0x4 scope:local align:4
|
||||
@106825 = .rodata:0x00000418; // type:object size:0x4 scope:local align:4
|
||||
@106826 = .rodata:0x0000041C; // type:object size:0x4 scope:local align:4
|
||||
@106827 = .rodata:0x00000420; // type:object size:0x4 scope:local align:4
|
||||
@106828 = .rodata:0x00000424; // type:object size:0x4 scope:local align:4
|
||||
@106880 = .rodata:0x00000428; // type:object size:0x4 scope:local align:4
|
||||
@106897 = .rodata:0x0000042C; // type:object size:0x4 scope:local align:4
|
||||
@106898 = .rodata:0x00000430; // type:object size:0x4 scope:local align:4
|
||||
@106899 = .rodata:0x00000434; // type:object size:0x4 scope:local align:4
|
||||
@106900 = .rodata:0x00000438; // type:object size:0x4 scope:local align:4
|
||||
@107088 = .rodata:0x0000043C; // type:object size:0x4 scope:local align:4
|
||||
@107089 = .rodata:0x00000440; // type:object size:0x4 scope:local align:4
|
||||
@107090 = .rodata:0x00000444; // type:object size:0x4 scope:local align:4
|
||||
@107198 = .rodata:0x00000448; // type:object size:0x4 scope:local align:4
|
||||
@107199 = .rodata:0x0000044C; // type:object size:0x4 scope:local align:4
|
||||
@107200 = .rodata:0x00000450; // type:object size:0x4 scope:local align:4
|
||||
@107201 = .rodata:0x00000454; // type:object size:0x4 scope:local align:4
|
||||
@107202 = .rodata:0x00000458; // type:object size:0x4 scope:local align:4
|
||||
@107203 = .rodata:0x0000045C; // type:object size:0x4 scope:local align:4
|
||||
@107204 = .rodata:0x00000460; // type:object size:0x4 scope:local align:4 data:string
|
||||
@107205 = .rodata:0x00000464; // type:object size:0x4 scope:local align:4
|
||||
DOWN_CYL_DT$97138 = .rodata:0x00000468; // type:object size:0x78 scope:local align:4 data:float
|
||||
DOWN_SPH_DT$97139 = .rodata:0x000004E0; // type:object size:0xB4 scope:local align:4 data:float
|
||||
@107335 = .rodata:0x00000594; // type:object size:0x4 scope:local align:4
|
||||
@107618 = .rodata:0x00000598; // type:object size:0x4 scope:local align:4
|
||||
@107619 = .rodata:0x0000059C; // type:object size:0x4 scope:local align:4
|
||||
@107620 = .rodata:0x000005A0; // type:object size:0x4 scope:local align:4
|
||||
@107621 = .rodata:0x000005A4; // type:object size:0x4 scope:local align:4
|
||||
@107622 = .rodata:0x000005A8; // type:object size:0x4 scope:local align:4
|
||||
@107623 = .rodata:0x000005AC; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_dr_week_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000000; // type:object size:0x44 scope:global align:4
|
||||
cc_dr_tail_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000044; // type:object size:0x40 scope:global align:4
|
||||
cc_dr_breath_at_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000084; // type:object size:0x40 scope:global align:4
|
||||
cc_dr_wind_at_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x000000C4; // type:object size:0x40 scope:global align:4
|
||||
cc_dr_foot_at_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000104; // type:object size:0x40 scope:global align:4
|
||||
cc_pillar_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000144; // type:object size:0x44 scope:global align:4
|
||||
cc_down_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x00000188; // type:object size:0x44 scope:global align:4
|
||||
cc_downSph_src__22@unnamed@d_a_b_dr_cpp@ = .data:0x000001CC; // type:object size:0x40 scope:global align:4
|
||||
lbl_140_data_20C = .data:0x0000020C; // type:object size:0x4
|
||||
lbl_140_data_210 = .data:0x00000210; // type:object size:0x5 data:string
|
||||
@105341 = .data:0x00000218; // type:object size:0xDC scope:local align:4
|
||||
w_eff_id$95053 = .data:0x000002F4; // type:object size:0x8 scope:local align:4
|
||||
@105440 = .data:0x000002FC; // type:object size:0x88 scope:local align:4
|
||||
@105526 = .data:0x00000384; // type:object size:0x64 scope:local align:4
|
||||
@105553 = .data:0x000003E8; // type:object size:0x58 scope:local align:4
|
||||
effId$95903 = .data:0x00000440; // type:object size:0x8 scope:local align:4
|
||||
@106590 = .data:0x00000448; // type:object size:0x5C scope:local align:4
|
||||
@106830 = .data:0x000004A4; // type:object size:0x38 scope:local align:4
|
||||
@106902 = .data:0x000004DC; // type:object size:0x30 scope:local align:4
|
||||
@106966 = .data:0x0000050C; // type:object size:0x38 scope:local align:4
|
||||
effLId$97033 = .data:0x00000544; // type:object size:0x8 scope:local align:4
|
||||
effRId$97034 = .data:0x0000054C; // type:object size:0x8 scope:local align:4
|
||||
mPartDt$97307 = .data:0x00000554; // type:object size:0x18 scope:local align:4
|
||||
mParts_EstimateSizeDt$97366 = .data:0x0000056C; // type:object size:0x18 scope:local align:4
|
||||
l_daB_DR_Method = .data:0x00000584; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_DR = .data:0x000005A4; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_DR_HIO_c = .data:0x000005D4; // type:object size:0xC scope:global align:4
|
||||
lbl_140_data_5E0 = .data:0x000005E0; // type:object size:0xD data:string
|
||||
@97521 = .data:0x000005F0; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_DR_HIO_c = .data:0x000005FC; // type:object size:0x8 scope:global align:4
|
||||
lbl_140_data_604 = .data:0x00000604; // type:object size:0x34
|
||||
@97589 = .data:0x00000638; // type:object size:0x3C scope:local align:4
|
||||
lbl_140_data_674 = .data:0x00000674; // type:object size:0x14
|
||||
@97591 = .data:0x00000688; // type:object size:0x34 scope:local align:4
|
||||
lbl_140_data_6BC = .data:0x000006BC; // type:object size:0x14
|
||||
@97649 = .data:0x000006D0; // type:object size:0x24 scope:local align:4
|
||||
lbl_140_data_6F4 = .data:0x000006F4; // type:object size:0x18
|
||||
@97651 = .data:0x0000070C; // type:object size:0xC scope:local align:4
|
||||
lbl_140_data_718 = .data:0x00000718; // type:object size:0x1C
|
||||
@97653 = .data:0x00000734; // type:object size:0xC scope:local align:4
|
||||
lbl_140_data_740 = .data:0x00000740; // type:object size:0xEC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@94592 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x68 scope:global align:4 data:byte
|
||||
lbl_140_bss_80 = .bss:0x00000080; // type:object size:0x1 data:byte
|
||||
@96495 = .bss:0x00000084; // type:object size:0xC scope:local align:4
|
||||
@96496 = .bss:0x00000090; // type:object size:0xC scope:local align:4
|
||||
@96497 = .bss:0x0000009C; // type:object size:0xC scope:local align:4
|
||||
@96498 = .bss:0x000000A8; // type:object size:0xC scope:local align:4
|
||||
mPillarTop_dt$96492 = .bss:0x000000B4; // type:object size:0x30 scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_dre.cpp:
|
||||
.text start:0x000000CC end:0x00002E08
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x0000015C
|
||||
.data start:0x00000000 end:0x0000015C
|
||||
.bss start:0x00000008 end:0x00000060
|
||||
@@ -1,147 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x000000CC; // type:function size:0x254 scope:global align:4
|
||||
daB_DRE_Create__FP10fopAc_ac_c = .text:0x00000320; // type:function size:0x2B4 scope:global align:4
|
||||
daB_DRE_Delete__FP9daB_DRE_c = .text:0x000005D4; // type:function size:0x50 scope:global align:4
|
||||
CameraSet__9daB_DRE_cFv = .text:0x00000624; // type:function size:0xF4 scope:global align:4
|
||||
SetStopingCam__9daB_DRE_cFv = .text:0x00000718; // type:function size:0x7C scope:global align:4
|
||||
SetStopCam__9daB_DRE_cF4cXyzffs = .text:0x00000794; // type:function size:0xFC scope:global align:4
|
||||
SetCMoveCam__9daB_DRE_cF4cXyzf = .text:0x00000890; // type:function size:0x54 scope:global align:4
|
||||
SetCMoveCam__9daB_DRE_cF4cXyzff = .text:0x000008E4; // type:function size:0x5C scope:global align:4
|
||||
SetEyeMoveCam__9daB_DRE_cF4cXyzffsf = .text:0x00000940; // type:function size:0xF0 scope:global align:4
|
||||
SetEyeMoveCam__9daB_DRE_cF4cXyzffsff = .text:0x00000A30; // type:function size:0xEC scope:global align:4
|
||||
SetMoveCam__9daB_DRE_cFff = .text:0x00000B1C; // type:function size:0xD0 scope:global align:4
|
||||
SetReleaseCam__9daB_DRE_cFv = .text:0x00000BEC; // type:function size:0x90 scope:global align:4
|
||||
CamAction2__9daB_DRE_cFv = .text:0x00000C7C; // type:function size:0x578 scope:global align:4
|
||||
DrAction2__9daB_DRE_cFv = .text:0x000011F4; // type:function size:0x2EC scope:global align:4
|
||||
CamAction__9daB_DRE_cFv = .text:0x000014E0; // type:function size:0x430 scope:global align:4
|
||||
Action__9daB_DRE_cFv = .text:0x00001910; // type:function size:0x60 scope:global align:4
|
||||
DrAction__9daB_DRE_cFv = .text:0x00001970; // type:function size:0x790 scope:global align:4
|
||||
SoundChk__9daB_DRE_cFv = .text:0x00002100; // type:function size:0x614 scope:global align:4
|
||||
Execute__9daB_DRE_cFv = .text:0x00002714; // type:function size:0x22C scope:global align:4
|
||||
SpeedSet__9daB_DRE_cFv = .text:0x00002940; // type:function size:0x60 scope:global align:4
|
||||
BreathSet__9daB_DRE_cFv = .text:0x000029A0; // type:function size:0x17C scope:global align:4
|
||||
setBaseMtx__9daB_DRE_cFv = .text:0x00002B1C; // type:function size:0xBC scope:global align:4
|
||||
daB_DRE_Draw__FP9daB_DRE_c = .text:0x00002BD8; // type:function size:0x19C scope:global align:4
|
||||
daB_DRE_Execute__FP9daB_DRE_c = .text:0x00002D74; // type:function size:0x4 scope:global align:4
|
||||
daB_DRE_IsDelete__FP9daB_DRE_c = .text:0x00002D78; // type:function size:0x8 scope:global align:4
|
||||
__sinit_\d_a_b_dre_cpp = .text:0x00002D80; // type:function size:0x80 scope:global align:4
|
||||
setCurrentPos__16obj_ystone_classF4cXyz = .text:0x00002E00; // type:function size:0x8 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@97078 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@97153 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@97154 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@97155 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@97156 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@97157 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float
|
||||
@97158 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@97159 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@97160 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@97168 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@97312 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@97313 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@97314 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@97315 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@97316 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@97317 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@97318 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@97319 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@97320 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@97321 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@97322 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@97323 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@97324 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@97325 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@97326 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@97327 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@97328 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4 data:float
|
||||
@97329 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@97330 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@97333 = .rodata:0x00000078; // type:object size:0x8 scope:local align:4
|
||||
@97377 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@97378 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@97379 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@97380 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@97381 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@97425 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@97426 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@97427 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@97428 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@97429 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@97430 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@97431 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@97503 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@97504 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@97505 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@97506 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@97507 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@97508 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@97509 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@97510 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@97511 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@97512 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@97513 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@97514 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@97515 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@97516 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@97517 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@97638 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@97639 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@97640 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@97641 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@97642 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@97643 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@97644 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@97645 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@97646 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@97647 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@97648 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@97649 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@97650 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@97651 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@97652 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@97653 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@97654 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@97655 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@97656 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@97657 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@97658 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@97659 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@97660 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@97661 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@97748 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@97749 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@97794 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4 data:float
|
||||
@97839 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
lbl_141_data_0 = .data:0x00000000; // type:object size:0x5 data:string
|
||||
@97433 = .data:0x00000008; // type:object size:0x28 scope:local align:4
|
||||
@97519 = .data:0x00000030; // type:object size:0x28 scope:local align:4
|
||||
@97663 = .data:0x00000058; // type:object size:0x88 scope:local align:4
|
||||
effId$94204 = .data:0x000000E0; // type:object size:0x8 scope:local align:4
|
||||
l_daB_DRE_Method = .data:0x000000E8; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_DRE = .data:0x00000108; // type:object size:0x30 scope:global align:4
|
||||
lbl_141_data_138 = .data:0x00000138; // type:object size:0x5 data:string
|
||||
lbl_141_data_13D = .data:0x0000013D; // type:object size:0x5 data:string
|
||||
lbl_141_data_142 = .data:0x00000142; // type:object size:0x5 data:string
|
||||
lbl_141_data_147 = .data:0x00000147; // type:object size:0x5 data:string
|
||||
lbl_141_data_14C = .data:0x0000014C; // type:object size:0x5 data:string
|
||||
lbl_141_data_151 = .data:0x00000151; // type:object size:0x5 data:string
|
||||
lbl_141_data_156 = .data:0x00000156; // type:object size:0x5 data:string
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4
|
||||
s_dis__23@unnamed@d_a_b_dre_cpp@ = .bss:0x00000008; // type:object size:0x4 scope:global align:4 data:float
|
||||
s_LinkPos__23@unnamed@d_a_b_dre_cpp@ = .bss:0x0000000C; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
s_TargetAngle__23@unnamed@d_a_b_dre_cpp@ = .bss:0x00000010; // type:object size:0x2 scope:global align:4
|
||||
@93439 = .bss:0x00000014; // type:object size:0xC scope:local align:4
|
||||
s_HeadPos__23@unnamed@d_a_b_dre_cpp@ = .bss:0x00000020; // type:object size:0xC scope:global align:4
|
||||
@93440 = .bss:0x0000002C; // type:object size:0xC scope:local align:4
|
||||
s_BodyPos__23@unnamed@d_a_b_dre_cpp@ = .bss:0x00000038; // type:object size:0xC scope:global align:4
|
||||
@93441 = .bss:0x00000044; // type:object size:0xC scope:local align:4
|
||||
s_TalePos__23@unnamed@d_a_b_dre_cpp@ = .bss:0x00000050; // type:object size:0xC scope:global align:4
|
||||
lbl_141_bss_5C = .bss:0x0000005C; // type:object size:0x1 data:byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_ds.cpp:
|
||||
.text start:0x000000CC end:0x0000F54C
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000007BC
|
||||
.data start:0x00000000 end:0x0000094C
|
||||
.bss start:0x00000008 end:0x0000084C
|
||||
@@ -1,577 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
changeOriginalDemo__9daPy_py_cFv = .text:0x000000CC; // type:function size:0x14 scope:global align:4
|
||||
__ct__12daB_DS_HIO_cFv = .text:0x000000E0; // type:function size:0x110 scope:global align:4
|
||||
ctrlJoint__8daB_DS_cFP8J3DJointP8J3DModel = .text:0x000001F0; // type:function size:0x174 scope:global align:4
|
||||
JointCallBack__8daB_DS_cFP8J3DJointi = .text:0x00000364; // type:function size:0x48 scope:global align:4
|
||||
draw__8daB_DS_cFv = .text:0x000003AC; // type:function size:0x56C scope:global align:4
|
||||
daB_DS_Draw__FP8daB_DS_c = .text:0x00000918; // type:function size:0x4 scope:global align:4
|
||||
setBck__8daB_DS_cFiUcff = .text:0x0000091C; // type:function size:0xAC scope:global align:4
|
||||
mSmokeSet__8daB_DS_cFv = .text:0x000009C8; // type:function size:0x184 scope:global align:4
|
||||
HandHitSoundSet__8daB_DS_cFb = .text:0x00000B4C; // type:function size:0x120 scope:global align:4
|
||||
handSPosSet__8daB_DS_cFi = .text:0x00000C6C; // type:function size:0x27C scope:global align:4
|
||||
mZsMoveChk__8daB_DS_cFv = .text:0x00000EE8; // type:function size:0x2DC scope:global align:4
|
||||
mZsMoveChk_Guard__8daB_DS_cFv = .text:0x000011C4; // type:function size:0x2A8 scope:global align:4
|
||||
mTrapScale__8daB_DS_cFv = .text:0x0000146C; // type:function size:0x128 scope:global align:4
|
||||
mClearTrap__8daB_DS_cFb = .text:0x00001594; // type:function size:0x98 scope:global align:4
|
||||
mCreateTrap__8daB_DS_cFb = .text:0x0000162C; // type:function size:0x530 scope:global align:4
|
||||
mChangeVer2__8daB_DS_cFv = .text:0x00001B5C; // type:function size:0x190 scope:global align:4
|
||||
damage_check__8daB_DS_cFv = .text:0x00001CEC; // type:function size:0x550 scope:global align:4
|
||||
neck_set__8daB_DS_cFv = .text:0x0000223C; // type:function size:0x254 scope:global align:4
|
||||
mCutTypeCheck__8daB_DS_cFv = .text:0x00002490; // type:function size:0x8C scope:global align:4
|
||||
startDemoCheck__8daB_DS_cFv = .text:0x0000251C; // type:function size:0x108 scope:global align:4
|
||||
doYoMessage__8daB_DS_cFv = .text:0x00002624; // type:function size:0x7C scope:global align:4
|
||||
executeOpeningDemo__8daB_DS_cFv = .text:0x000026A0; // type:function size:0x1E40 scope:global align:4
|
||||
mHandBreathChk__8daB_DS_cFv = .text:0x000044E0; // type:function size:0x1CC scope:global align:4
|
||||
executeWait__8daB_DS_cFv = .text:0x000046AC; // type:function size:0x19C scope:global align:4
|
||||
executeCircle__8daB_DS_cFv = .text:0x00004848; // type:function size:0x1DC scope:global align:4
|
||||
mBreakBoneSUB__8daB_DS_cFv = .text:0x00004A24; // type:function size:0x70 scope:global align:4
|
||||
damageSet__8daB_DS_cFv = .text:0x00004A94; // type:function size:0x78 scope:global align:4
|
||||
damageHitCamera__8daB_DS_cFv = .text:0x00004B0C; // type:function size:0x16C scope:global align:4
|
||||
damageDownCheck__8daB_DS_cFv = .text:0x00004C78; // type:function size:0x1D4 scope:global align:4
|
||||
executeDamage__8daB_DS_cFv = .text:0x00004E4C; // type:function size:0x1510 scope:global align:4
|
||||
executeEtcDamage__8daB_DS_cFv = .text:0x0000635C; // type:function size:0x264 scope:global align:4
|
||||
breath_smokeSet__8daB_DS_cFv = .text:0x000065C0; // type:function size:0x1EC scope:global align:4
|
||||
executeBreathAttack__8daB_DS_cFv = .text:0x000067AC; // type:function size:0x324 scope:global align:4
|
||||
executeHandAttack__8daB_DS_cFv = .text:0x00006AD0; // type:function size:0x220 scope:global align:4
|
||||
executeBreathSearch__8daB_DS_cFv = .text:0x00006CF0; // type:function size:0x1FC scope:global align:4
|
||||
executeBattle2OpeningDemo__8daB_DS_cFv = .text:0x00006EEC; // type:function size:0xD8C scope:global align:4
|
||||
mFlyBMove__8daB_DS_cFf = .text:0x00007C78; // type:function size:0x9C scope:global align:4
|
||||
mFuwafuwaSet__8daB_DS_cFb = .text:0x00007D14; // type:function size:0x344 scope:global align:4
|
||||
mBattle2BreathFireSet__8daB_DS_cFUl = .text:0x00008058; // type:function size:0x6C scope:global align:4
|
||||
mNeckAngleSet__8daB_DS_cFv = .text:0x000080C4; // type:function size:0x104 scope:global align:4
|
||||
mSetFirstPos__8daB_DS_cFv = .text:0x000081C8; // type:function size:0xE0 scope:global align:4
|
||||
mChkScreenIn__8daB_DS_cFv = .text:0x000082A8; // type:function size:0xA8 scope:global align:4
|
||||
mRailInOutCheck__8daB_DS_cFv = .text:0x00008350; // type:function size:0x84 scope:global align:4
|
||||
executeBattle2Wait__8daB_DS_cFv = .text:0x000083D4; // type:function size:0xC8 scope:global align:4
|
||||
mBattle2MoveFSet__8daB_DS_cFv = .text:0x0000849C; // type:function size:0x32C scope:global align:4
|
||||
executeBattle2FMove__8daB_DS_cFv = .text:0x000087C8; // type:function size:0x4D8 scope:global align:4
|
||||
executeBattle2Tired__8daB_DS_cFv = .text:0x00008CA0; // type:function size:0x25C scope:global align:4
|
||||
executeBattle2Damage__8daB_DS_cFv = .text:0x00008EFC; // type:function size:0xBE0 scope:global align:4
|
||||
mDeadMove__8daB_DS_cFv = .text:0x00009ADC; // type:function size:0x420 scope:global align:4
|
||||
executeBattle2Dead__8daB_DS_cFv = .text:0x00009EFC; // type:function size:0x14E8 scope:global align:4
|
||||
executeBullet__8daB_DS_cFv = .text:0x0000B3E4; // type:function size:0x418 scope:global align:4
|
||||
mBulletAction__8daB_DS_cFv = .text:0x0000B7FC; // type:function size:0x78 scope:global align:4
|
||||
mSoundSE_Set__8daB_DS_cFv = .text:0x0000B874; // type:function size:0xA94 scope:global align:4
|
||||
action__8daB_DS_cFv = .text:0x0000C308; // type:function size:0x48C scope:global align:4
|
||||
mtx_set__8daB_DS_cFv = .text:0x0000C794; // type:function size:0x304 scope:global align:4
|
||||
cc_set__8daB_DS_cFv = .text:0x0000CA98; // type:function size:0x444 scope:global align:4
|
||||
cc_etc_set__8daB_DS_cFv = .text:0x0000CEDC; // type:function size:0x130 scope:global align:4
|
||||
mBattle2Action__8daB_DS_cFv = .text:0x0000D00C; // type:function size:0x190 scope:global align:4
|
||||
mBattle2_spinner_damage_check__8daB_DS_cFv = .text:0x0000D19C; // type:function size:0x2D0 scope:global align:4
|
||||
mBattle2_damage_check__8daB_DS_cFv = .text:0x0000D46C; // type:function size:0x518 scope:global align:4
|
||||
mBattle2_mtx_set__8daB_DS_cFv = .text:0x0000D984; // type:function size:0x388 scope:global align:4
|
||||
mBattle2_cc_etc_set__8daB_DS_cFv = .text:0x0000DD0C; // type:function size:0xF0 scope:global align:4
|
||||
mBattle2_cc_set__8daB_DS_cFv = .text:0x0000DDFC; // type:function size:0x2AC scope:global align:4
|
||||
execute__8daB_DS_cFv = .text:0x0000E0A8; // type:function size:0x3A8 scope:global align:4
|
||||
daB_DS_Execute__FP8daB_DS_c = .text:0x0000E450; // type:function size:0x4 scope:global align:4
|
||||
daB_DS_IsDelete__FP8daB_DS_c = .text:0x0000E454; // type:function size:0x8 scope:global align:4
|
||||
_delete__8daB_DS_cFv = .text:0x0000E45C; // type:function size:0x98 scope:global align:4
|
||||
daB_DS_Delete__FP8daB_DS_c = .text:0x0000E4F4; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__8daB_DS_cFv = .text:0x0000E4F8; // type:function size:0x66C scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x0000EB64; // type:function size:0x4 scope:global align:4
|
||||
create__8daB_DS_cFv = .text:0x0000EB68; // type:function size:0x8F4 scope:global align:4
|
||||
daB_DS_Create__FP8daB_DS_c = .text:0x0000F45C; // type:function size:0x4 scope:global align:4
|
||||
__dt__12daB_DS_HIO_cFv = .text:0x0000F460; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_ds_cpp = .text:0x0000F4A0; // type:function size:0x48 scope:global align:4
|
||||
entry__13mDoExt_brkAnmFP12J3DModelData = .text:0x0000F4E8; // type:function size:0xC scope:global align:4
|
||||
entry__13mDoExt_btkAnmFP12J3DModelData = .text:0x0000F4F4; // type:function size:0xC scope:global align:4
|
||||
setGlobalSRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x0000F500; // type:function size:0x4C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@110097 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@110098 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@110099 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@110100 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@110101 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@110102 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@110103 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@110123 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110311 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@110312 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@110313 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@110314 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@110315 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@110347 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110369 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110402 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110436 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@110437 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110438 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@110510 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@110511 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@110512 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@110594 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110595 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@110596 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@110597 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@110598 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@110738 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@110739 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@110740 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@110882 = .rodata:0x00000078; // type:object size:0x8 scope:local align:4 data:double
|
||||
KIDOU_EFF_DT$95573 = .rodata:0x00000080; // type:object size:0x80 scope:local align:4
|
||||
@111306 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@111307 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@111308 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@111309 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@111310 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@111311 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@111312 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@111313 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@111314 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@111315 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@111316 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@111317 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@111318 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@111319 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@111320 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@111321 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@111322 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@111323 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@111324 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@111325 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@111326 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@111327 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@111328 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@111329 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@111330 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@111331 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@111332 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@111333 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@111334 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@111335 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@111336 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@111337 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@111338 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@111339 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@111340 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@111341 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@111342 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@111343 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@111344 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@111345 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@111346 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@111347 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4 data:string
|
||||
@111348 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@111349 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@111350 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@111351 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@111352 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@111353 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@111354 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@111355 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@111356 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@111357 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@111358 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@111359 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@111360 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@111361 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@111362 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@111363 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@111364 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@111365 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@111366 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@111367 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@111368 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@111369 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
@111370 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4
|
||||
@111371 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4
|
||||
@111372 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4
|
||||
@111373 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4
|
||||
@111374 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4
|
||||
@111375 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4
|
||||
@111376 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4
|
||||
@111377 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4
|
||||
@111378 = .rodata:0x00000220; // type:object size:0x4 scope:local align:4
|
||||
@111379 = .rodata:0x00000224; // type:object size:0x4 scope:local align:4
|
||||
@111380 = .rodata:0x00000228; // type:object size:0x4 scope:local align:4
|
||||
@111381 = .rodata:0x0000022C; // type:object size:0x4 scope:local align:4
|
||||
@111382 = .rodata:0x00000230; // type:object size:0x4 scope:local align:4
|
||||
@111383 = .rodata:0x00000234; // type:object size:0x4 scope:local align:4
|
||||
@111384 = .rodata:0x00000238; // type:object size:0x4 scope:local align:4
|
||||
@111385 = .rodata:0x0000023C; // type:object size:0x4 scope:local align:4
|
||||
@111386 = .rodata:0x00000240; // type:object size:0x4 scope:local align:4
|
||||
@111387 = .rodata:0x00000244; // type:object size:0x4 scope:local align:4
|
||||
@111388 = .rodata:0x00000248; // type:object size:0x4 scope:local align:4
|
||||
@111389 = .rodata:0x0000024C; // type:object size:0x4 scope:local align:4
|
||||
@111390 = .rodata:0x00000250; // type:object size:0x4 scope:local align:4
|
||||
@111391 = .rodata:0x00000254; // type:object size:0x4 scope:local align:4
|
||||
@111392 = .rodata:0x00000258; // type:object size:0x4 scope:local align:4
|
||||
@111393 = .rodata:0x0000025C; // type:object size:0x4 scope:local align:4
|
||||
@111394 = .rodata:0x00000260; // type:object size:0x4 scope:local align:4
|
||||
@111395 = .rodata:0x00000264; // type:object size:0x4 scope:local align:4
|
||||
@111397 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@111398 = .rodata:0x0000026C; // type:object size:0x4 scope:local align:4
|
||||
@111399 = .rodata:0x00000270; // type:object size:0x4 scope:local align:4
|
||||
@111400 = .rodata:0x00000274; // type:object size:0x4 scope:local align:4
|
||||
@111401 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@111402 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@111403 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@111404 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
@111405 = .rodata:0x00000288; // type:object size:0x4 scope:local align:4
|
||||
@111406 = .rodata:0x0000028C; // type:object size:0x4 scope:local align:4
|
||||
@111407 = .rodata:0x00000290; // type:object size:0x4 scope:local align:4
|
||||
@111408 = .rodata:0x00000294; // type:object size:0x4 scope:local align:4
|
||||
@111409 = .rodata:0x00000298; // type:object size:0x4 scope:local align:4
|
||||
@111410 = .rodata:0x0000029C; // type:object size:0x4 scope:local align:4
|
||||
@111411 = .rodata:0x000002A0; // type:object size:0x4 scope:local align:4
|
||||
@111412 = .rodata:0x000002A4; // type:object size:0x4 scope:local align:4
|
||||
@111413 = .rodata:0x000002A8; // type:object size:0x4 scope:local align:4
|
||||
@111414 = .rodata:0x000002AC; // type:object size:0x4 scope:local align:4
|
||||
@111415 = .rodata:0x000002B0; // type:object size:0x4 scope:local align:4
|
||||
@111416 = .rodata:0x000002B4; // type:object size:0x4 scope:local align:4
|
||||
@111417 = .rodata:0x000002B8; // type:object size:0x4 scope:local align:4
|
||||
@111418 = .rodata:0x000002BC; // type:object size:0x4 scope:local align:4
|
||||
@111419 = .rodata:0x000002C0; // type:object size:0x4 scope:local align:4
|
||||
@111420 = .rodata:0x000002C4; // type:object size:0x4 scope:local align:4
|
||||
@111422 = .rodata:0x000002C8; // type:object size:0x4 scope:local align:4
|
||||
@111532 = .rodata:0x000002CC; // type:object size:0x4 scope:local align:4
|
||||
@111591 = .rodata:0x000002D0; // type:object size:0x4 scope:local align:4
|
||||
@111629 = .rodata:0x000002D4; // type:object size:0x4 scope:local align:4
|
||||
@111630 = .rodata:0x000002D8; // type:object size:0x4 scope:local align:4
|
||||
@111631 = .rodata:0x000002DC; // type:object size:0x4 scope:local align:4
|
||||
BROKENBORN_EFF_DT$96144 = .rodata:0x000002E0; // type:object size:0x60 scope:local align:4
|
||||
@111935 = .rodata:0x00000340; // type:object size:0x4 scope:local align:4
|
||||
@111936 = .rodata:0x00000344; // type:object size:0x4 scope:local align:4
|
||||
@111937 = .rodata:0x00000348; // type:object size:0x4 scope:local align:4
|
||||
@111938 = .rodata:0x0000034C; // type:object size:0x4 scope:local align:4
|
||||
@111939 = .rodata:0x00000350; // type:object size:0x4 scope:local align:4
|
||||
@111940 = .rodata:0x00000354; // type:object size:0x4 scope:local align:4
|
||||
@111941 = .rodata:0x00000358; // type:object size:0x4 scope:local align:4
|
||||
@111942 = .rodata:0x0000035C; // type:object size:0x4 scope:local align:4
|
||||
@111943 = .rodata:0x00000360; // type:object size:0x4 scope:local align:4
|
||||
@111944 = .rodata:0x00000364; // type:object size:0x4 scope:local align:4
|
||||
@111945 = .rodata:0x00000368; // type:object size:0x4 scope:local align:4
|
||||
@111946 = .rodata:0x0000036C; // type:object size:0x4 scope:local align:4
|
||||
@111947 = .rodata:0x00000370; // type:object size:0x4 scope:local align:4
|
||||
@111948 = .rodata:0x00000374; // type:object size:0x4 scope:local align:4
|
||||
@111949 = .rodata:0x00000378; // type:object size:0x4 scope:local align:4
|
||||
@111950 = .rodata:0x0000037C; // type:object size:0x4 scope:local align:4
|
||||
@111951 = .rodata:0x00000380; // type:object size:0x4 scope:local align:4
|
||||
@111952 = .rodata:0x00000384; // type:object size:0x4 scope:local align:4
|
||||
@111953 = .rodata:0x00000388; // type:object size:0x4 scope:local align:4
|
||||
@111954 = .rodata:0x0000038C; // type:object size:0x4 scope:local align:4
|
||||
@111955 = .rodata:0x00000390; // type:object size:0x4 scope:local align:4
|
||||
@111956 = .rodata:0x00000394; // type:object size:0x4 scope:local align:4 data:string
|
||||
@111957 = .rodata:0x00000398; // type:object size:0x4 scope:local align:4
|
||||
@111958 = .rodata:0x0000039C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@111959 = .rodata:0x000003A0; // type:object size:0x4 scope:local align:4
|
||||
@111960 = .rodata:0x000003A4; // type:object size:0x4 scope:local align:4
|
||||
@111961 = .rodata:0x000003A8; // type:object size:0x4 scope:local align:4
|
||||
@111962 = .rodata:0x000003AC; // type:object size:0x4 scope:local align:4
|
||||
@111963 = .rodata:0x000003B0; // type:object size:0x4 scope:local align:4
|
||||
@111964 = .rodata:0x000003B4; // type:object size:0x4 scope:local align:4
|
||||
@111965 = .rodata:0x000003B8; // type:object size:0x4 scope:local align:4
|
||||
@111966 = .rodata:0x000003BC; // type:object size:0x4 scope:local align:4
|
||||
@111967 = .rodata:0x000003C0; // type:object size:0x4 scope:local align:4
|
||||
@111968 = .rodata:0x000003C4; // type:object size:0x4 scope:local align:4
|
||||
@111969 = .rodata:0x000003C8; // type:object size:0x4 scope:local align:4
|
||||
@111970 = .rodata:0x000003CC; // type:object size:0x4 scope:local align:4
|
||||
@111971 = .rodata:0x000003D0; // type:object size:0x4 scope:local align:4
|
||||
@111972 = .rodata:0x000003D4; // type:object size:0x4 scope:local align:4
|
||||
@111973 = .rodata:0x000003D8; // type:object size:0x4 scope:local align:4
|
||||
@111974 = .rodata:0x000003DC; // type:object size:0x4 scope:local align:4
|
||||
@111975 = .rodata:0x000003E0; // type:object size:0x4 scope:local align:4
|
||||
@111976 = .rodata:0x000003E4; // type:object size:0x4 scope:local align:4
|
||||
@111977 = .rodata:0x000003E8; // type:object size:0x4 scope:local align:4
|
||||
@112096 = .rodata:0x000003EC; // type:object size:0x4 scope:local align:4
|
||||
@112097 = .rodata:0x000003F0; // type:object size:0x4 scope:local align:4
|
||||
@112139 = .rodata:0x000003F4; // type:object size:0x4 scope:local align:4
|
||||
@112140 = .rodata:0x000003F8; // type:object size:0x4 scope:local align:4
|
||||
@112322 = .rodata:0x000003FC; // type:object size:0x4 scope:local align:4
|
||||
@112323 = .rodata:0x00000400; // type:object size:0x4 scope:local align:4
|
||||
@112324 = .rodata:0x00000404; // type:object size:0x4 scope:local align:4
|
||||
@112325 = .rodata:0x00000408; // type:object size:0x4 scope:local align:4
|
||||
@112326 = .rodata:0x0000040C; // type:object size:0x4 scope:local align:4
|
||||
@112327 = .rodata:0x00000410; // type:object size:0x4 scope:local align:4
|
||||
@112328 = .rodata:0x00000414; // type:object size:0x4 scope:local align:4
|
||||
@112329 = .rodata:0x00000418; // type:object size:0x4 scope:local align:4
|
||||
@112330 = .rodata:0x0000041C; // type:object size:0x4 scope:local align:4
|
||||
@112331 = .rodata:0x00000420; // type:object size:0x4 scope:local align:4
|
||||
@112332 = .rodata:0x00000424; // type:object size:0x4 scope:local align:4
|
||||
@112333 = .rodata:0x00000428; // type:object size:0x4 scope:local align:4
|
||||
@112334 = .rodata:0x0000042C; // type:object size:0x4 scope:local align:4
|
||||
@112335 = .rodata:0x00000430; // type:object size:0x4 scope:local align:4
|
||||
@112336 = .rodata:0x00000434; // type:object size:0x4 scope:local align:4
|
||||
@112337 = .rodata:0x00000438; // type:object size:0x4 scope:local align:4
|
||||
@112338 = .rodata:0x0000043C; // type:object size:0x4 scope:local align:4
|
||||
@112339 = .rodata:0x00000440; // type:object size:0x4 scope:local align:4
|
||||
@112340 = .rodata:0x00000444; // type:object size:0x4 scope:local align:4
|
||||
@112341 = .rodata:0x00000448; // type:object size:0x4 scope:local align:4
|
||||
@112342 = .rodata:0x0000044C; // type:object size:0x4 scope:local align:4
|
||||
@112343 = .rodata:0x00000450; // type:object size:0x4 scope:local align:4
|
||||
@112344 = .rodata:0x00000454; // type:object size:0x4 scope:local align:4
|
||||
@112345 = .rodata:0x00000458; // type:object size:0x4 scope:local align:4
|
||||
@112346 = .rodata:0x0000045C; // type:object size:0x4 scope:local align:4
|
||||
@112347 = .rodata:0x00000460; // type:object size:0x4 scope:local align:4
|
||||
@112348 = .rodata:0x00000464; // type:object size:0x4 scope:local align:4
|
||||
@112349 = .rodata:0x00000468; // type:object size:0x4 scope:local align:4
|
||||
@112350 = .rodata:0x0000046C; // type:object size:0x4 scope:local align:4
|
||||
@112351 = .rodata:0x00000470; // type:object size:0x4 scope:local align:4 data:string
|
||||
@112352 = .rodata:0x00000474; // type:object size:0x4 scope:local align:4
|
||||
@112353 = .rodata:0x00000478; // type:object size:0x4 scope:local align:4
|
||||
@112354 = .rodata:0x0000047C; // type:object size:0x4 scope:local align:4
|
||||
@112355 = .rodata:0x00000480; // type:object size:0x4 scope:local align:4
|
||||
@112356 = .rodata:0x00000484; // type:object size:0x4 scope:local align:4
|
||||
@112357 = .rodata:0x00000488; // type:object size:0x4 scope:local align:4
|
||||
@112358 = .rodata:0x0000048C; // type:object size:0x4 scope:local align:4
|
||||
@112359 = .rodata:0x00000490; // type:object size:0x4 scope:local align:4
|
||||
@112360 = .rodata:0x00000494; // type:object size:0x4 scope:local align:4
|
||||
@112361 = .rodata:0x00000498; // type:object size:0x4 scope:local align:4
|
||||
@112362 = .rodata:0x0000049C; // type:object size:0x4 scope:local align:4
|
||||
@112363 = .rodata:0x000004A0; // type:object size:0x4 scope:local align:4
|
||||
@112364 = .rodata:0x000004A4; // type:object size:0x4 scope:local align:4 data:string
|
||||
@112365 = .rodata:0x000004A8; // type:object size:0x4 scope:local align:4
|
||||
@112366 = .rodata:0x000004AC; // type:object size:0x4 scope:local align:4
|
||||
@112367 = .rodata:0x000004B0; // type:object size:0x4 scope:local align:4
|
||||
@112368 = .rodata:0x000004B4; // type:object size:0x4 scope:local align:4 data:string
|
||||
@112837 = .rodata:0x000004B8; // type:object size:0x4 scope:local align:4
|
||||
@112838 = .rodata:0x000004BC; // type:object size:0x4 scope:local align:4
|
||||
@112839 = .rodata:0x000004C0; // type:object size:0x4 scope:local align:4
|
||||
@112840 = .rodata:0x000004C4; // type:object size:0x4 scope:local align:4
|
||||
@112867 = .rodata:0x000004C8; // type:object size:0x4 scope:local align:4
|
||||
@112868 = .rodata:0x000004CC; // type:object size:0x4 scope:local align:4
|
||||
@112869 = .rodata:0x000004D0; // type:object size:0x4 scope:local align:4
|
||||
@112870 = .rodata:0x000004D4; // type:object size:0x4 scope:local align:4
|
||||
@113034 = .rodata:0x000004D8; // type:object size:0x4 scope:local align:4
|
||||
@113035 = .rodata:0x000004DC; // type:object size:0x4 scope:local align:4
|
||||
@113036 = .rodata:0x000004E0; // type:object size:0x4 scope:local align:4
|
||||
@113037 = .rodata:0x000004E4; // type:object size:0x4 scope:local align:4
|
||||
@113038 = .rodata:0x000004E8; // type:object size:0x4 scope:local align:4
|
||||
@113039 = .rodata:0x000004EC; // type:object size:0x4 scope:local align:4
|
||||
@113040 = .rodata:0x000004F0; // type:object size:0x4 scope:local align:4
|
||||
@113041 = .rodata:0x000004F4; // type:object size:0x4 scope:local align:4
|
||||
@113042 = .rodata:0x000004F8; // type:object size:0x4 scope:local align:4
|
||||
@113043 = .rodata:0x000004FC; // type:object size:0x4 scope:local align:4
|
||||
@113044 = .rodata:0x00000500; // type:object size:0x4 scope:local align:4
|
||||
@113045 = .rodata:0x00000504; // type:object size:0x4 scope:local align:4
|
||||
@113046 = .rodata:0x00000508; // type:object size:0x4 scope:local align:4
|
||||
@113047 = .rodata:0x0000050C; // type:object size:0x4 scope:local align:4
|
||||
@113048 = .rodata:0x00000510; // type:object size:0x4 scope:local align:4
|
||||
@113049 = .rodata:0x00000514; // type:object size:0x4 scope:local align:4
|
||||
@113050 = .rodata:0x00000518; // type:object size:0x4 scope:local align:4
|
||||
@113051 = .rodata:0x0000051C; // type:object size:0x4 scope:local align:4
|
||||
@113052 = .rodata:0x00000520; // type:object size:0x4 scope:local align:4
|
||||
@113053 = .rodata:0x00000524; // type:object size:0x4 scope:local align:4
|
||||
@113054 = .rodata:0x00000528; // type:object size:0x4 scope:local align:4
|
||||
@113055 = .rodata:0x0000052C; // type:object size:0x4 scope:local align:4
|
||||
@113056 = .rodata:0x00000530; // type:object size:0x4 scope:local align:4
|
||||
@113057 = .rodata:0x00000534; // type:object size:0x4 scope:local align:4
|
||||
@113058 = .rodata:0x00000538; // type:object size:0x4 scope:local align:4
|
||||
@113059 = .rodata:0x0000053C; // type:object size:0x4 scope:local align:4
|
||||
@113060 = .rodata:0x00000540; // type:object size:0x4 scope:local align:4
|
||||
@113061 = .rodata:0x00000544; // type:object size:0x4 scope:local align:4
|
||||
@113062 = .rodata:0x00000548; // type:object size:0x4 scope:local align:4
|
||||
@113063 = .rodata:0x0000054C; // type:object size:0x4 scope:local align:4
|
||||
@113064 = .rodata:0x00000550; // type:object size:0x4 scope:local align:4
|
||||
@113125 = .rodata:0x00000554; // type:object size:0x4 scope:local align:4
|
||||
@113320 = .rodata:0x00000558; // type:object size:0x4 scope:local align:4
|
||||
@113321 = .rodata:0x0000055C; // type:object size:0x4 scope:local align:4
|
||||
@113322 = .rodata:0x00000560; // type:object size:0x4 scope:local align:4
|
||||
@113323 = .rodata:0x00000564; // type:object size:0x4 scope:local align:4
|
||||
@113324 = .rodata:0x00000568; // type:object size:0x4 scope:local align:4
|
||||
@113325 = .rodata:0x0000056C; // type:object size:0x4 scope:local align:4
|
||||
@113326 = .rodata:0x00000570; // type:object size:0x4 scope:local align:4
|
||||
@113327 = .rodata:0x00000574; // type:object size:0x4 scope:local align:4
|
||||
@113328 = .rodata:0x00000578; // type:object size:0x4 scope:local align:4
|
||||
@113329 = .rodata:0x0000057C; // type:object size:0x4 scope:local align:4
|
||||
@113330 = .rodata:0x00000580; // type:object size:0x4 scope:local align:4
|
||||
@113331 = .rodata:0x00000584; // type:object size:0x4 scope:local align:4
|
||||
@113332 = .rodata:0x00000588; // type:object size:0x4 scope:local align:4
|
||||
@113333 = .rodata:0x0000058C; // type:object size:0x4 scope:local align:4
|
||||
@113334 = .rodata:0x00000590; // type:object size:0x4 scope:local align:4
|
||||
@113335 = .rodata:0x00000594; // type:object size:0x4 scope:local align:4
|
||||
@113336 = .rodata:0x00000598; // type:object size:0x4 scope:local align:4
|
||||
@113337 = .rodata:0x0000059C; // type:object size:0x4 scope:local align:4
|
||||
SEBONE_EFF_DT$98189 = .rodata:0x000005A0; // type:object size:0x30 scope:local align:4
|
||||
@113431 = .rodata:0x000005D0; // type:object size:0x4 scope:local align:4
|
||||
@113432 = .rodata:0x000005D4; // type:object size:0x4 scope:local align:4
|
||||
@113476 = .rodata:0x000005D8; // type:object size:0x4 scope:local align:4
|
||||
@113477 = .rodata:0x000005DC; // type:object size:0x4 scope:local align:4
|
||||
@113478 = .rodata:0x000005E0; // type:object size:0x4 scope:local align:4
|
||||
@113479 = .rodata:0x000005E4; // type:object size:0x4 scope:local align:4
|
||||
@113528 = .rodata:0x000005E8; // type:object size:0x4 scope:local align:4
|
||||
@113529 = .rodata:0x000005EC; // type:object size:0x4 scope:local align:4
|
||||
@113530 = .rodata:0x000005F0; // type:object size:0x4 scope:local align:4
|
||||
@113531 = .rodata:0x000005F4; // type:object size:0x4 scope:local align:4
|
||||
@113532 = .rodata:0x000005F8; // type:object size:0x4 scope:local align:4
|
||||
@113533 = .rodata:0x000005FC; // type:object size:0x4 scope:local align:4
|
||||
ETC_CC_DT$98343 = .rodata:0x00000600; // type:object size:0x168 scope:local align:4
|
||||
@113812 = .rodata:0x00000768; // type:object size:0x4 scope:local align:4
|
||||
@113813 = .rodata:0x0000076C; // type:object size:0x4 scope:local align:4
|
||||
B2_ETC_CC_DT$98586 = .rodata:0x00000770; // type:object size:0x28 scope:local align:4 data:float
|
||||
@113878 = .rodata:0x00000798; // type:object size:0x4 scope:local align:4
|
||||
@113879 = .rodata:0x0000079C; // type:object size:0x4 scope:local align:4
|
||||
@114363 = .rodata:0x000007A0; // type:object size:0x4 scope:local align:4
|
||||
@114364 = .rodata:0x000007A4; // type:object size:0x4 scope:local align:4
|
||||
@114365 = .rodata:0x000007A8; // type:object size:0x4 scope:local align:4
|
||||
@114366 = .rodata:0x000007AC; // type:object size:0x4 scope:local align:4
|
||||
@114367 = .rodata:0x000007B0; // type:object size:0x4 scope:local align:4
|
||||
@114368 = .rodata:0x000007B4; // type:object size:0x4 scope:local align:4
|
||||
@114369 = .rodata:0x000007B8; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_ds_week_src__22@unnamed@d_a_b_ds_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global align:4
|
||||
cc_ds_head_src__22@unnamed@d_a_b_ds_cpp@ = .data:0x00000040; // type:object size:0x40 scope:global align:4
|
||||
cc_ds_backbone_src__22@unnamed@d_a_b_ds_cpp@ = .data:0x00000080; // type:object size:0x44 scope:global align:4
|
||||
cc_ds_hand_at_cyl_src__22@unnamed@d_a_b_ds_cpp@ = .data:0x000000C4; // type:object size:0x44 scope:global align:4
|
||||
cc_ds_breath_at_src__22@unnamed@d_a_b_ds_cpp@ = .data:0x00000108; // type:object size:0x40 scope:global align:4
|
||||
@110127 = .data:0x00000148; // type:object size:0x68 scope:local align:4
|
||||
eff_smoke_id = .data:0x000001B0; // type:object size:0x4 scope:global align:4 data:2byte
|
||||
lbl_142_data_1B4 = .data:0x000001B4; // type:object size:0x5 data:string
|
||||
mGuardDt$95024 = .data:0x000001BA; // type:object size:0xA scope:local align:2
|
||||
mBirthAngle01_dt$95197 = .data:0x000001C4; // type:object size:0x8 scope:local align:4
|
||||
mBirthAngle02_dt$95198 = .data:0x000001CC; // type:object size:0x6 scope:local align:4
|
||||
mBirthYpos02_dt$95199 = .data:0x000001D4; // type:object size:0xC scope:local align:4
|
||||
HeadAngleDt$95396 = .data:0x000001E0; // type:object size:0xC scope:local align:4
|
||||
eff_znt_Disapp_id$95570 = .data:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
eff_znt_App_id$95571 = .data:0x000001F0; // type:object size:0x8 scope:local align:4
|
||||
eff_znt_SASI_id$95572 = .data:0x000001F8; // type:object size:0x6 scope:local align:4
|
||||
lbl_142_data_1FE = .data:0x000001FE; // type:object size:0x16
|
||||
@111424 = .data:0x00000214; // type:object size:0xB4 scope:local align:4
|
||||
Ds_wait_id$95991 = .data:0x000002C8; // type:object size:0xC scope:local align:4
|
||||
Ds_circle_id$96022 = .data:0x000002D4; // type:object size:0x18 scope:local align:4
|
||||
Ds_damage_wait_id$96124 = .data:0x000002EC; // type:object size:0xC scope:local align:4
|
||||
Ds_damage_id$96125 = .data:0x000002F8; // type:object size:0xC scope:local align:4
|
||||
eff_spHit_id$96142 = .data:0x00000304; // type:object size:0x4 scope:local align:4
|
||||
eff_LastSmoke_id$96143 = .data:0x00000308; // type:object size:0x8 scope:local align:4
|
||||
Ds_Etc_damage_id$96484 = .data:0x00000310; // type:object size:0x24 scope:local align:4
|
||||
smokeSet_dt$96485 = .data:0x00000334; // type:object size:0xC scope:local align:4
|
||||
effId$96516 = .data:0x00000340; // type:object size:0x6 scope:local align:4
|
||||
Ds_breath_id$96550 = .data:0x00000348; // type:object size:0x24 scope:local align:4
|
||||
Ds_HandAt_id$96582 = .data:0x0000036C; // type:object size:0x18 scope:local align:4
|
||||
Ds_BS_id$96611 = .data:0x00000384; // type:object size:0xC scope:local align:4
|
||||
eff_Sand_id$96665 = .data:0x00000390; // type:object size:0x4 scope:local align:4
|
||||
@112370 = .data:0x00000394; // type:object size:0x44 scope:local align:4
|
||||
eff_Demo_sasi_id$97486 = .data:0x000003D8; // type:object size:0x4 scope:local align:4
|
||||
@113066 = .data:0x000003DC; // type:object size:0x194 scope:local align:4
|
||||
effId$97837 = .data:0x00000570; // type:object size:0x8 scope:local align:4
|
||||
@113339 = .data:0x00000578; // type:object size:0xE4 scope:local align:4
|
||||
@113434 = .data:0x0000065C; // type:object size:0x20 scope:local align:4
|
||||
head_setRdt$98322 = .data:0x0000067C; // type:object size:0x14 scope:local align:4
|
||||
head2_setRdt$98612 = .data:0x00000690; // type:object size:0x14 scope:local align:4
|
||||
l_daB_DS_Method = .data:0x000006A4; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_DS = .data:0x000006C4; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_DS_HIO_c = .data:0x000006F4; // type:object size:0xC scope:global align:4
|
||||
lbl_142_data_700 = .data:0x00000700; // type:object size:0xD data:string
|
||||
@99059 = .data:0x00000710; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_DS_HIO_c = .data:0x0000071C; // type:object size:0x8 scope:global align:4
|
||||
lbl_142_data_724 = .data:0x00000724; // type:object size:0x34
|
||||
@99123 = .data:0x00000758; // type:object size:0x3C scope:local align:4
|
||||
lbl_142_data_794 = .data:0x00000794; // type:object size:0x14
|
||||
@99125 = .data:0x000007A8; // type:object size:0x34 scope:local align:4
|
||||
lbl_142_data_7DC = .data:0x000007DC; // type:object size:0x14
|
||||
@99183 = .data:0x000007F0; // type:object size:0x24 scope:local align:4
|
||||
lbl_142_data_814 = .data:0x00000814; // type:object size:0x18
|
||||
@99185 = .data:0x0000082C; // type:object size:0xC scope:local align:4
|
||||
lbl_142_data_838 = .data:0x00000838; // type:object size:0x1C
|
||||
@99187 = .data:0x00000854; // type:object size:0xC scope:local align:4
|
||||
lbl_142_data_860 = .data:0x00000860; // type:object size:0xEC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@94679 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x50 scope:global align:4 data:byte
|
||||
handL_ang = .bss:0x00000068; // type:object size:0x2 scope:global align:4
|
||||
handR_ang = .bss:0x0000006A; // type:object size:0x2 scope:global align:2
|
||||
handX_ang = .bss:0x0000006C; // type:object size:0x2 scope:global align:4
|
||||
lbl_142_bss_6E = .bss:0x0000006E; // type:object size:0x1 data:byte
|
||||
@95521 = .bss:0x00000070; // type:object size:0xC scope:local align:4
|
||||
@95522 = .bss:0x0000007C; // type:object size:0xC scope:local align:4
|
||||
@95523 = .bss:0x00000088; // type:object size:0xC scope:local align:4
|
||||
mOpPlayerDt$95518 = .bss:0x00000094; // type:object size:0x24 scope:local align:4
|
||||
@95527 = .bss:0x000000BC; // type:object size:0xC scope:local align:4
|
||||
@95528 = .bss:0x000000C8; // type:object size:0xC scope:local align:4
|
||||
@95529 = .bss:0x000000D4; // type:object size:0xC scope:local align:4
|
||||
@95530 = .bss:0x000000E0; // type:object size:0xC scope:local align:4
|
||||
@95531 = .bss:0x000000EC; // type:object size:0xC scope:local align:4
|
||||
@95532 = .bss:0x000000F8; // type:object size:0xC scope:local align:4
|
||||
@95533 = .bss:0x00000104; // type:object size:0xC scope:local align:4
|
||||
@95534 = .bss:0x00000110; // type:object size:0xC scope:local align:4
|
||||
@95535 = .bss:0x0000011C; // type:object size:0xC scope:local align:4
|
||||
@95536 = .bss:0x00000128; // type:object size:0xC scope:local align:4
|
||||
@95537 = .bss:0x00000134; // type:object size:0xC scope:local align:4
|
||||
@95538 = .bss:0x00000140; // type:object size:0xC scope:local align:4
|
||||
@95539 = .bss:0x0000014C; // type:object size:0xC scope:local align:4
|
||||
@95540 = .bss:0x00000158; // type:object size:0xC scope:local align:4
|
||||
@95541 = .bss:0x00000164; // type:object size:0xC scope:local align:4
|
||||
mOpCenterDt$95524 = .bss:0x00000170; // type:object size:0xB4 scope:local align:4
|
||||
@95545 = .bss:0x00000228; // type:object size:0xC scope:local align:4
|
||||
@95546 = .bss:0x00000234; // type:object size:0xC scope:local align:4
|
||||
mOpCenterBodyDt$95542 = .bss:0x00000240; // type:object size:0x18 scope:local align:4
|
||||
@95550 = .bss:0x0000025C; // type:object size:0xC scope:local align:4
|
||||
@95551 = .bss:0x00000268; // type:object size:0xC scope:local align:4
|
||||
@95552 = .bss:0x00000274; // type:object size:0xC scope:local align:4
|
||||
@95553 = .bss:0x00000280; // type:object size:0xC scope:local align:4
|
||||
@95554 = .bss:0x0000028C; // type:object size:0xC scope:local align:4
|
||||
@95555 = .bss:0x00000298; // type:object size:0xC scope:local align:4
|
||||
@95556 = .bss:0x000002A4; // type:object size:0xC scope:local align:4
|
||||
@95557 = .bss:0x000002B0; // type:object size:0xC scope:local align:4
|
||||
@95558 = .bss:0x000002BC; // type:object size:0xC scope:local align:4
|
||||
@95559 = .bss:0x000002C8; // type:object size:0xC scope:local align:4
|
||||
@95560 = .bss:0x000002D4; // type:object size:0xC scope:local align:4
|
||||
@95561 = .bss:0x000002E0; // type:object size:0xC scope:local align:4
|
||||
@95562 = .bss:0x000002EC; // type:object size:0xC scope:local align:4
|
||||
@95563 = .bss:0x000002F8; // type:object size:0xC scope:local align:4
|
||||
@95564 = .bss:0x00000304; // type:object size:0xC scope:local align:4
|
||||
mOpEyeDt$95547 = .bss:0x00000310; // type:object size:0xB4 scope:local align:4
|
||||
@95568 = .bss:0x000003C8; // type:object size:0xC scope:local align:4
|
||||
@95569 = .bss:0x000003D4; // type:object size:0xC scope:local align:4
|
||||
mOpEyeBodyDt$95565 = .bss:0x000003E0; // type:object size:0x18 scope:local align:4
|
||||
@96129 = .bss:0x000003FC; // type:object size:0xC scope:local align:4
|
||||
@96130 = .bss:0x00000408; // type:object size:0xC scope:local align:4
|
||||
@96131 = .bss:0x00000414; // type:object size:0xC scope:local align:4
|
||||
@96132 = .bss:0x00000420; // type:object size:0xC scope:local align:4
|
||||
@96133 = .bss:0x0000042C; // type:object size:0xC scope:local align:4
|
||||
down_center_dt$96126 = .bss:0x00000438; // type:object size:0x3C scope:local align:4
|
||||
@96137 = .bss:0x00000478; // type:object size:0xC scope:local align:4
|
||||
@96138 = .bss:0x00000484; // type:object size:0xC scope:local align:4
|
||||
@96139 = .bss:0x00000490; // type:object size:0xC scope:local align:4
|
||||
@96140 = .bss:0x0000049C; // type:object size:0xC scope:local align:4
|
||||
@96141 = .bss:0x000004A8; // type:object size:0xC scope:local align:4
|
||||
down_eye_dt$96134 = .bss:0x000004B4; // type:object size:0x3C scope:local align:4
|
||||
@96642 = .bss:0x000004F4; // type:object size:0xC scope:local align:4
|
||||
@96643 = .bss:0x00000500; // type:object size:0xC scope:local align:4
|
||||
@96644 = .bss:0x0000050C; // type:object size:0xC scope:local align:4
|
||||
mOp2PlayerDt$96639 = .bss:0x00000518; // type:object size:0x24 scope:local align:4
|
||||
@96648 = .bss:0x00000540; // type:object size:0xC scope:local align:4
|
||||
@96649 = .bss:0x0000054C; // type:object size:0xC scope:local align:4
|
||||
@96650 = .bss:0x00000558; // type:object size:0xC scope:local align:4
|
||||
@96651 = .bss:0x00000564; // type:object size:0xC scope:local align:4
|
||||
@96652 = .bss:0x00000570; // type:object size:0xC scope:local align:4
|
||||
@96653 = .bss:0x0000057C; // type:object size:0xC scope:local align:4
|
||||
@96654 = .bss:0x00000588; // type:object size:0xC scope:local align:4
|
||||
mOp2CenterDt$96645 = .bss:0x00000594; // type:object size:0x54 scope:local align:4
|
||||
@96658 = .bss:0x000005EC; // type:object size:0xC scope:local align:4
|
||||
@96659 = .bss:0x000005F8; // type:object size:0xC scope:local align:4
|
||||
@96660 = .bss:0x00000604; // type:object size:0xC scope:local align:4
|
||||
@96661 = .bss:0x00000610; // type:object size:0xC scope:local align:4
|
||||
@96662 = .bss:0x0000061C; // type:object size:0xC scope:local align:4
|
||||
@96663 = .bss:0x00000628; // type:object size:0xC scope:local align:4
|
||||
@96664 = .bss:0x00000634; // type:object size:0xC scope:local align:4
|
||||
mOp2EyeDt$96655 = .bss:0x00000640; // type:object size:0x54 scope:local align:4
|
||||
@97479 = .bss:0x00000698; // type:object size:0xC scope:local align:4
|
||||
@97480 = .bss:0x000006A4; // type:object size:0xC scope:local align:4
|
||||
mEd2CenterDt$97476 = .bss:0x000006B0; // type:object size:0x18 scope:local align:4
|
||||
@97484 = .bss:0x000006CC; // type:object size:0xC scope:local align:4
|
||||
@97485 = .bss:0x000006D8; // type:object size:0xC scope:local align:4
|
||||
mEd22EyeDt$97481 = .bss:0x000006E4; // type:object size:0x18 scope:local align:4
|
||||
lbl_142_bss_6FC = .bss:0x000006FC; // type:object size:0x1 data:byte
|
||||
mWaitDt$97893 = .bss:0x00000700; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@98317 = .bss:0x00000710; // type:object size:0xC scope:local align:4
|
||||
@98318 = .bss:0x0000071C; // type:object size:0xC scope:local align:4
|
||||
@98319 = .bss:0x00000728; // type:object size:0xC scope:local align:4
|
||||
@98320 = .bss:0x00000734; // type:object size:0xC scope:local align:4
|
||||
@98321 = .bss:0x00000740; // type:object size:0xC scope:local align:4
|
||||
head_cc_dt$98314 = .bss:0x0000074C; // type:object size:0x3C scope:local align:4
|
||||
etc_setRdt$98344 = .bss:0x00000788; // type:object size:0x48 scope:local align:4
|
||||
@98607 = .bss:0x000007D4; // type:object size:0xC scope:local align:4
|
||||
@98608 = .bss:0x000007E0; // type:object size:0xC scope:local align:4
|
||||
@98609 = .bss:0x000007EC; // type:object size:0xC scope:local align:4
|
||||
@98610 = .bss:0x000007F8; // type:object size:0xC scope:local align:4
|
||||
@98611 = .bss:0x00000804; // type:object size:0xC scope:local align:4
|
||||
head2_cc_dt$98604 = .bss:0x00000810; // type:object size:0x3C scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_gg.cpp:
|
||||
.text start:0x000000CC end:0x0000C308
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000358
|
||||
.data start:0x00000000 end:0x00000490
|
||||
.bss start:0x00000008 end:0x000000EC
|
||||
@@ -1,292 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
absXZ__4cXyzCFRC3Vec = .text:0x000000CC; // type:function size:0x74 scope:global align:4
|
||||
__ct__12daB_GG_HIO_cFv = .text:0x00000140; // type:function size:0x58 scope:global align:4
|
||||
CreateHeap__8daB_GG_cFv = .text:0x00000198; // type:function size:0x1D0 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00000368; // type:function size:0x4 scope:global align:4
|
||||
initCc__8daB_GG_cFv = .text:0x0000036C; // type:function size:0x140 scope:global align:4
|
||||
setCcCylinder__8daB_GG_cFv = .text:0x000004AC; // type:function size:0x220 scope:global align:4
|
||||
G_setCcCylinder__8daB_GG_cFv = .text:0x000006CC; // type:function size:0x110 scope:global align:4
|
||||
MoveCo__8daB_GG_cFv = .text:0x000007DC; // type:function size:0x6C scope:global align:4
|
||||
ctrlJoint__8daB_GG_cFP8J3DJointP8J3DModel = .text:0x00000848; // type:function size:0x1A8 scope:global align:4
|
||||
JointCallBack__FP8J3DJointi = .text:0x000009F0; // type:function size:0x48 scope:global align:4
|
||||
HeadctrlJoint__8daB_GG_cFP8J3DJointP8J3DModel = .text:0x00000A38; // type:function size:0x198 scope:global align:4
|
||||
HeadJointCallBack__FP8J3DJointi = .text:0x00000BD0; // type:function size:0x48 scope:global align:4
|
||||
SetAnm__8daB_GG_cFiiff = .text:0x00000C18; // type:function size:0xAC scope:global align:4
|
||||
way_bg_check2__FP8daB_GG_c4cXyz4cXyz = .text:0x00000CC4; // type:function size:0xA8 scope:global align:4
|
||||
other_bg_check__FP8daB_GG_cP10fopAc_ac_c = .text:0x00000D6C; // type:function size:0xCC scope:global align:4
|
||||
Hanekaeri__FP8daB_GG_c4cXyz4cXyzf = .text:0x00000E38; // type:function size:0x17C scope:global align:4
|
||||
Yazirushi__8daB_GG_cFv = .text:0x00000FB4; // type:function size:0x6C scope:global align:4
|
||||
SpeedClear__8daB_GG_cFv = .text:0x00001020; // type:function size:0x1C scope:global align:4
|
||||
SetAction__8daB_GG_cFUcUcUc = .text:0x0000103C; // type:function size:0x28 scope:global align:4
|
||||
GetAction__8daB_GG_cFUcUcUc = .text:0x00001064; // type:function size:0x34 scope:global align:4
|
||||
DemoSkip__8daB_GG_cFi = .text:0x00001098; // type:function size:0x144 scope:global align:4
|
||||
DemoSkipCallBack__8daB_GG_cFPvi = .text:0x000011DC; // type:function size:0x34 scope:global align:4
|
||||
CameraSet__8daB_GG_cFv = .text:0x00001210; // type:function size:0xF4 scope:global align:4
|
||||
SetStopingCam__8daB_GG_cFv = .text:0x00001304; // type:function size:0x7C scope:global align:4
|
||||
SetStopCam__8daB_GG_cF4cXyzffs = .text:0x00001380; // type:function size:0x10C scope:global align:4
|
||||
SetMoveCam__8daB_GG_cF4cXyzffsff = .text:0x0000148C; // type:function size:0x160 scope:global align:4
|
||||
SetMoveCam1__8daB_GG_cFff = .text:0x000015EC; // type:function size:0x100 scope:global align:4
|
||||
SetReleaseCam__8daB_GG_cFv = .text:0x000016EC; // type:function size:0x90 scope:global align:4
|
||||
St_CamAction__8daB_GG_cFv = .text:0x0000177C; // type:function size:0xB8C scope:global align:4
|
||||
St_DemoAction__8daB_GG_cFv = .text:0x00002308; // type:function size:0x6C8 scope:global align:4
|
||||
Md_CamAction__8daB_GG_cFv = .text:0x000029D0; // type:function size:0x304 scope:global align:4
|
||||
Md_DemoAction__8daB_GG_cFv = .text:0x00002CD4; // type:function size:0x618 scope:global align:4
|
||||
Gn_CamAction__8daB_GG_cFv = .text:0x000032EC; // type:function size:0x4DC scope:global align:4
|
||||
Gn_DemoAction__8daB_GG_cFv = .text:0x000037C8; // type:function size:0x52C scope:global align:4
|
||||
DemoAction__8daB_GG_cFv = .text:0x00003CF4; // type:function size:0xE0 scope:global align:4
|
||||
F_WaitAction__8daB_GG_cFv = .text:0x00003DD4; // type:function size:0x198 scope:global align:4
|
||||
F_FookChk__8daB_GG_cFv = .text:0x00003F6C; // type:function size:0x17C scope:global align:4
|
||||
F_MoveAction__8daB_GG_cFv = .text:0x000040E8; // type:function size:0x60C scope:global align:4
|
||||
F_LV7_W_MoveAction__8daB_GG_cFv = .text:0x000046F4; // type:function size:0x248 scope:global align:4
|
||||
F_AttackAction__8daB_GG_cFv = .text:0x0000493C; // type:function size:0x73C scope:global align:4
|
||||
F_DamageAction__8daB_GG_cFv = .text:0x00005078; // type:function size:0x7C8 scope:global align:4
|
||||
AttentionChk__8daB_GG_cFv = .text:0x00005840; // type:function size:0x90 scope:global align:4
|
||||
FlyAction__8daB_GG_cFv = .text:0x000058D0; // type:function size:0x238 scope:global align:4
|
||||
F_A_TargetMove__8daB_GG_cF4cXyzUc = .text:0x00005B08; // type:function size:0x124 scope:global align:4
|
||||
F_A_TargetMove__8daB_GG_cF4cXyz = .text:0x00005C2C; // type:function size:0xB4 scope:global align:4
|
||||
F_A_MoveAction__8daB_GG_cFv = .text:0x00005CE0; // type:function size:0x364 scope:global align:4
|
||||
F_A_Action__8daB_GG_cFv = .text:0x00006044; // type:function size:0x134 scope:global align:4
|
||||
FookChk__8daB_GG_cFv = .text:0x00006178; // type:function size:0x100 scope:global align:4
|
||||
CutChk__8daB_GG_cFv = .text:0x00006278; // type:function size:0xE8 scope:global align:4
|
||||
G_MoveAction__8daB_GG_cFv = .text:0x00006360; // type:function size:0x8C8 scope:global align:4
|
||||
FallChk__8daB_GG_cFv = .text:0x00006C28; // type:function size:0x388 scope:global align:4
|
||||
G_AttackAction__8daB_GG_cFv = .text:0x00006FB0; // type:function size:0x548 scope:global align:4
|
||||
G_DamageAction__8daB_GG_cFv = .text:0x000074F8; // type:function size:0x904 scope:global align:4
|
||||
G_DeathAction__8daB_GG_cFv = .text:0x00007DFC; // type:function size:0x1D0 scope:global align:4
|
||||
G_DeathAction1__8daB_GG_cFv = .text:0x00007FCC; // type:function size:0x2E4 scope:global align:4
|
||||
DeathCam__8daB_GG_cFv = .text:0x000082B0; // type:function size:0x97C scope:global align:4
|
||||
GroundAction__8daB_GG_cFv = .text:0x00008C2C; // type:function size:0x198 scope:global align:4
|
||||
StopAction__8daB_GG_cFv = .text:0x00008DC4; // type:function size:0x384 scope:global align:4
|
||||
HitChk__8daB_GG_cFv = .text:0x00009148; // type:function size:0x70 scope:global align:4
|
||||
Action__8daB_GG_cFv = .text:0x000091B8; // type:function size:0x108 scope:global align:4
|
||||
HeadAction__8daB_GG_cFv = .text:0x000092C0; // type:function size:0x398 scope:global align:4
|
||||
SetHeadAngle__8daB_GG_cFv = .text:0x00009658; // type:function size:0x100 scope:global align:4
|
||||
SoundChk__8daB_GG_cFv = .text:0x00009758; // type:function size:0x7F8 scope:global align:4
|
||||
Execute__8daB_GG_cFv = .text:0x00009F50; // type:function size:0x5C4 scope:global align:4
|
||||
At_Check__8daB_GG_cFv = .text:0x0000A514; // type:function size:0x1E4 scope:global align:4
|
||||
MoveAt__8daB_GG_cFv = .text:0x0000A6F8; // type:function size:0x74 scope:global align:4
|
||||
F_AtHit__8daB_GG_cFv = .text:0x0000A76C; // type:function size:0x148 scope:global align:4
|
||||
ChanceTime__8daB_GG_cFv = .text:0x0000A8B4; // type:function size:0x510 scope:global align:4
|
||||
ArmAngleSet__8daB_GG_cFv = .text:0x0000ADC4; // type:function size:0x68 scope:global align:4
|
||||
Guard__8daB_GG_cFv = .text:0x0000AE2C; // type:function size:0x54C scope:global align:4
|
||||
Draw__8daB_GG_cFv = .text:0x0000B378; // type:function size:0x2B4 scope:global align:4
|
||||
Delete__8daB_GG_cFv = .text:0x0000B62C; // type:function size:0x68 scope:global align:4
|
||||
setBaseMtx__8daB_GG_cFv = .text:0x0000B694; // type:function size:0x70 scope:global align:4
|
||||
setShieldMtx__8daB_GG_cFv = .text:0x0000B704; // type:function size:0x60 scope:global align:4
|
||||
setSwordMtx__8daB_GG_cFv = .text:0x0000B764; // type:function size:0x74 scope:global align:4
|
||||
setSwordMtx1__8daB_GG_cFv = .text:0x0000B7D8; // type:function size:0x68 scope:global align:4
|
||||
setHeadMtx__8daB_GG_cFv = .text:0x0000B840; // type:function size:0x7C scope:global align:4
|
||||
setHeadMtx1__8daB_GG_cFv = .text:0x0000B8BC; // type:function size:0x4C scope:global align:4
|
||||
daB_GG_Draw__FP8daB_GG_c = .text:0x0000B908; // type:function size:0x4 scope:global align:4
|
||||
daB_GG_Execute__FP8daB_GG_c = .text:0x0000B90C; // type:function size:0x4 scope:global align:4
|
||||
daB_GG_IsDelete__FP8daB_GG_c = .text:0x0000B910; // type:function size:0x8 scope:global align:4
|
||||
daB_GG_Delete__FP8daB_GG_c = .text:0x0000B918; // type:function size:0x4 scope:global align:4
|
||||
Create__8daB_GG_cFv = .text:0x0000B91C; // type:function size:0x848 scope:global align:4
|
||||
daB_GG_Create__FP10fopAc_ac_c = .text:0x0000C164; // type:function size:0x4 scope:global align:4
|
||||
__dt__12daB_GG_HIO_cFv = .text:0x0000C168; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_gg_cpp = .text:0x0000C1A8; // type:function size:0x160 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@104654 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@104657 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104658 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@104659 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104702 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
|
||||
ccCylSrc$94360 = .rodata:0x00000014; // type:object size:0x44 scope:local align:4
|
||||
ccHookSrc$94361 = .rodata:0x00000058; // type:object size:0x44 scope:local align:4
|
||||
ccShieldSphSrc$94362 = .rodata:0x0000009C; // type:object size:0x40 scope:local align:4
|
||||
ccSphSrc$94363 = .rodata:0x000000DC; // type:object size:0x40 scope:local align:4
|
||||
@104737 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104738 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@104741 = .rodata:0x00000128; // type:object size:0x8 scope:local align:4 data:double
|
||||
@104753 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104756 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104777 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104778 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104831 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104835 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104890 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4 data:float
|
||||
@104911 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@104912 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@104913 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@104914 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4 data:string
|
||||
@104915 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@105046 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@105047 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@105048 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@105049 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@105050 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@105051 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@105052 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@105053 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@105054 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@105055 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@105056 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@105057 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@105058 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105059 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@105060 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@105061 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@105062 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@105063 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@105064 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@105065 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@105066 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@105067 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@105068 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@105069 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@105070 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@105071 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@105072 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@105073 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@105074 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@105075 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@105076 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@105136 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@105137 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@105138 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@105139 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@105140 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@105141 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@105142 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@105143 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@105144 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
@105188 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4
|
||||
@105189 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4
|
||||
@105190 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4
|
||||
@105255 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4
|
||||
@105256 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105257 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4
|
||||
@105305 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4
|
||||
@105306 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4
|
||||
@105307 = .rodata:0x00000220; // type:object size:0x4 scope:local align:4
|
||||
@105308 = .rodata:0x00000224; // type:object size:0x4 scope:local align:4
|
||||
@105309 = .rodata:0x00000228; // type:object size:0x4 scope:local align:4
|
||||
@105310 = .rodata:0x0000022C; // type:object size:0x4 scope:local align:4
|
||||
@105311 = .rodata:0x00000230; // type:object size:0x4 scope:local align:4
|
||||
@105312 = .rodata:0x00000234; // type:object size:0x4 scope:local align:4
|
||||
@105313 = .rodata:0x00000238; // type:object size:0x4 scope:local align:4
|
||||
@105314 = .rodata:0x0000023C; // type:object size:0x4 scope:local align:4
|
||||
@105315 = .rodata:0x00000240; // type:object size:0x4 scope:local align:4
|
||||
@105316 = .rodata:0x00000244; // type:object size:0x4 scope:local align:4
|
||||
@105317 = .rodata:0x00000248; // type:object size:0x4 scope:local align:4
|
||||
@105318 = .rodata:0x0000024C; // type:object size:0x4 scope:local align:4
|
||||
@105379 = .rodata:0x00000250; // type:object size:0x4 scope:local align:4
|
||||
@105380 = .rodata:0x00000254; // type:object size:0x4 scope:local align:4
|
||||
@105381 = .rodata:0x00000258; // type:object size:0x4 scope:local align:4 data:string
|
||||
@105382 = .rodata:0x0000025C; // type:object size:0x4 scope:local align:4
|
||||
@105383 = .rodata:0x00000260; // type:object size:0x4 scope:local align:4
|
||||
@105384 = .rodata:0x00000264; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105385 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@105433 = .rodata:0x0000026C; // type:object size:0x4 scope:local align:4
|
||||
@105434 = .rodata:0x00000270; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105435 = .rodata:0x00000274; // type:object size:0x4 scope:local align:4
|
||||
@105436 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@105513 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105514 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@105515 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
@105517 = .rodata:0x00000288; // type:object size:0x4 scope:local align:4
|
||||
@105518 = .rodata:0x0000028C; // type:object size:0x4 scope:local align:4
|
||||
@105519 = .rodata:0x00000290; // type:object size:0x4 scope:local align:4
|
||||
@105520 = .rodata:0x00000294; // type:object size:0x4 scope:local align:4
|
||||
@105549 = .rodata:0x00000298; // type:object size:0x4 scope:local align:4
|
||||
@105649 = .rodata:0x0000029C; // type:object size:0x4 scope:local align:4
|
||||
@105744 = .rodata:0x000002A0; // type:object size:0x4 scope:local align:4
|
||||
@105745 = .rodata:0x000002A4; // type:object size:0x4 scope:local align:4
|
||||
@105746 = .rodata:0x000002A8; // type:object size:0x4 scope:local align:4
|
||||
@105767 = .rodata:0x000002AC; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105844 = .rodata:0x000002B0; // type:object size:0x4 scope:local align:4
|
||||
@105999 = .rodata:0x000002B4; // type:object size:0x4 scope:local align:4
|
||||
@106046 = .rodata:0x000002B8; // type:object size:0x4 scope:local align:4
|
||||
@106167 = .rodata:0x000002BC; // type:object size:0x4 scope:local align:4
|
||||
@106168 = .rodata:0x000002C0; // type:object size:0x4 scope:local align:4
|
||||
@106339 = .rodata:0x000002C4; // type:object size:0x4 scope:local align:4
|
||||
@106408 = .rodata:0x000002C8; // type:object size:0x4 scope:local align:4
|
||||
@106520 = .rodata:0x000002CC; // type:object size:0x4 scope:local align:4
|
||||
@106521 = .rodata:0x000002D0; // type:object size:0x4 scope:local align:4
|
||||
@106522 = .rodata:0x000002D4; // type:object size:0x4 scope:local align:4
|
||||
@106523 = .rodata:0x000002D8; // type:object size:0x4 scope:local align:4
|
||||
@106524 = .rodata:0x000002DC; // type:object size:0x4 scope:local align:4
|
||||
@106627 = .rodata:0x000002E0; // type:object size:0x4 scope:local align:4
|
||||
@106628 = .rodata:0x000002E4; // type:object size:0x4 scope:local align:4
|
||||
@106784 = .rodata:0x000002E8; // type:object size:0x4 scope:local align:4
|
||||
@106785 = .rodata:0x000002EC; // type:object size:0x4 scope:local align:4
|
||||
@106786 = .rodata:0x000002F0; // type:object size:0x4 scope:local align:4
|
||||
@106787 = .rodata:0x000002F4; // type:object size:0x4 scope:local align:4
|
||||
@106788 = .rodata:0x000002F8; // type:object size:0x4 scope:local align:4
|
||||
@106789 = .rodata:0x000002FC; // type:object size:0x4 scope:local align:4
|
||||
@106790 = .rodata:0x00000300; // type:object size:0x4 scope:local align:4
|
||||
@106791 = .rodata:0x00000304; // type:object size:0x4 scope:local align:4
|
||||
@106792 = .rodata:0x00000308; // type:object size:0x4 scope:local align:4
|
||||
@106793 = .rodata:0x0000030C; // type:object size:0x4 scope:local align:4
|
||||
@106794 = .rodata:0x00000310; // type:object size:0x4 scope:local align:4
|
||||
@107264 = .rodata:0x00000314; // type:object size:0x4 scope:local align:4
|
||||
@107265 = .rodata:0x00000318; // type:object size:0x4 scope:local align:4
|
||||
@107510 = .rodata:0x0000031C; // type:object size:0x4 scope:local align:4
|
||||
@107511 = .rodata:0x00000320; // type:object size:0x4 scope:local align:4
|
||||
@107512 = .rodata:0x00000324; // type:object size:0x4 scope:local align:4
|
||||
@107612 = .rodata:0x00000328; // type:object size:0x4 scope:local align:4
|
||||
@107613 = .rodata:0x0000032C; // type:object size:0x4 scope:local align:4
|
||||
@107614 = .rodata:0x00000330; // type:object size:0x4 scope:local align:4
|
||||
@107615 = .rodata:0x00000334; // type:object size:0x4 scope:local align:4
|
||||
@107616 = .rodata:0x00000338; // type:object size:0x4 scope:local align:4
|
||||
@107617 = .rodata:0x0000033C; // type:object size:0x4 scope:local align:4
|
||||
@107618 = .rodata:0x00000340; // type:object size:0x4 scope:local align:4
|
||||
@107619 = .rodata:0x00000344; // type:object size:0x4 scope:local align:4
|
||||
@107620 = .rodata:0x00000348; // type:object size:0x4 scope:local align:4
|
||||
@107621 = .rodata:0x0000034C; // type:object size:0x4 scope:local align:4
|
||||
@107622 = .rodata:0x00000350; // type:object size:0x4 scope:local align:4
|
||||
@107623 = .rodata:0x00000354; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
eff_id$94252 = .data:0x00000010; // type:object size:0x6 scope:local align:4
|
||||
lbl_143_data_16 = .data:0x00000016; // type:object size:0x5 data:string
|
||||
@105080 = .data:0x0000001C; // type:object size:0x54 scope:local align:4
|
||||
@105320 = .data:0x00000070; // type:object size:0x1C scope:local align:4
|
||||
lbl_143_data_8C = .data:0x0000008C; // type:object size:0x7 data:string
|
||||
@105750 = .data:0x00000094; // type:object size:0x38 scope:local align:4
|
||||
@106341 = .data:0x000000CC; // type:object size:0x2C scope:local align:4
|
||||
@106796 = .data:0x000000F8; // type:object size:0x70 scope:local align:4
|
||||
@107139 = .data:0x00000168; // type:object size:0x74 scope:local align:4
|
||||
lbl_143_data_1DC = .data:0x000001DC; // type:object size:0x10
|
||||
l_daB_GG_Method = .data:0x000001EC; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_GG = .data:0x0000020C; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_GG_HIO_c = .data:0x0000023C; // type:object size:0xC scope:global align:4
|
||||
lbl_143_data_248 = .data:0x00000248; // type:object size:0xD data:string
|
||||
@97690 = .data:0x00000258; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_GG_HIO_c = .data:0x00000264; // type:object size:0x8 scope:global align:4
|
||||
lbl_143_data_26C = .data:0x0000026C; // type:object size:0x34
|
||||
@97754 = .data:0x000002A0; // type:object size:0x3C scope:local align:4
|
||||
lbl_143_data_2DC = .data:0x000002DC; // type:object size:0x14
|
||||
@97756 = .data:0x000002F0; // type:object size:0x34 scope:local align:4
|
||||
lbl_143_data_324 = .data:0x00000324; // type:object size:0x14
|
||||
@97814 = .data:0x00000338; // type:object size:0x24 scope:local align:4
|
||||
lbl_143_data_35C = .data:0x0000035C; // type:object size:0x18
|
||||
@97816 = .data:0x00000374; // type:object size:0xC scope:local align:4
|
||||
lbl_143_data_380 = .data:0x00000380; // type:object size:0x1C
|
||||
@97818 = .data:0x0000039C; // type:object size:0xC scope:local align:4
|
||||
lbl_143_data_3A8 = .data:0x000003A8; // type:object size:0xE8
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@94295 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x1C scope:global align:4 data:byte
|
||||
s_dis__22@unnamed@d_a_b_gg_cpp@ = .bss:0x00000034; // type:object size:0x4 scope:global align:4 data:float
|
||||
s_LinkPos__22@unnamed@d_a_b_gg_cpp@ = .bss:0x00000038; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
s_TargetAngle__22@unnamed@d_a_b_gg_cpp@ = .bss:0x0000003C; // type:object size:0x2 scope:global align:4 data:2byte
|
||||
@94300 = .bss:0x00000040; // type:object size:0xC scope:local align:4
|
||||
s_centerpos__22@unnamed@d_a_b_gg_cpp@ = .bss:0x0000004C; // type:object size:0xC scope:global align:4
|
||||
s_M_Action__22@unnamed@d_a_b_gg_cpp@ = .bss:0x00000058; // type:object size:0x2 scope:global align:4
|
||||
s_W_Action__22@unnamed@d_a_b_gg_cpp@ = .bss:0x0000005A; // type:object size:0x2 scope:global align:2
|
||||
@94301 = .bss:0x0000005C; // type:object size:0xC scope:local align:4
|
||||
@94302 = .bss:0x00000068; // type:object size:0xC scope:local align:4
|
||||
@94303 = .bss:0x00000074; // type:object size:0xC scope:local align:4
|
||||
out_pos = .bss:0x00000080; // type:object size:0x24 scope:global align:4
|
||||
@94304 = .bss:0x000000A4; // type:object size:0xC scope:local align:4
|
||||
@94305 = .bss:0x000000B0; // type:object size:0xC scope:local align:4
|
||||
@94306 = .bss:0x000000BC; // type:object size:0xC scope:local align:4
|
||||
in_pos = .bss:0x000000C8; // type:object size:0x24 scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_gm.cpp:
|
||||
.text start:0x000000CC end:0x000056FC
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000001E4
|
||||
.data start:0x00000000 end:0x000005B0
|
||||
.bss start:0x00000008 end:0x00000128
|
||||
@@ -1,196 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_GM_HIO_cFv = .text:0x000000CC; // type:function size:0xB0 scope:global align:4
|
||||
anm_init__FP10b_gm_classifUcf = .text:0x0000017C; // type:function size:0xAC scope:global align:4
|
||||
nodeCallBack__FP8J3DJointi = .text:0x00000228; // type:function size:0x2D8 scope:global align:4
|
||||
daB_GM_Draw__FP10b_gm_class = .text:0x00000500; // type:function size:0x25C scope:global align:4
|
||||
s_ko_del__FPvPv = .text:0x0000075C; // type:function size:0x58 scope:global align:4
|
||||
s_ko_sub__FPvPv = .text:0x000007B4; // type:function size:0x54 scope:global align:4
|
||||
s_ko2_move__FPvPv = .text:0x00000808; // type:function size:0x68 scope:global align:4
|
||||
s_ko2_get__FPvPv = .text:0x00000870; // type:function size:0x58 scope:global align:4
|
||||
s_ko_move__FPvPv = .text:0x000008C8; // type:function size:0x78 scope:global align:4
|
||||
demo_camera__FP10b_gm_class = .text:0x00000940; // type:function size:0x189C scope:global align:4
|
||||
daB_GM_Execute__FP10b_gm_class = .text:0x000021DC; // type:function size:0x2A70 scope:global align:4
|
||||
daB_GM_IsDelete__FP10b_gm_class = .text:0x00004C4C; // type:function size:0x8 scope:global align:4
|
||||
daB_GM_Delete__FP10b_gm_class = .text:0x00004C54; // type:function size:0x70 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00004CC4; // type:function size:0x3F4 scope:global align:4
|
||||
daB_GM_Create__FP10fopAc_ac_c = .text:0x000050B8; // type:function size:0x428 scope:global align:4
|
||||
__dt__12daB_GM_HIO_cFv = .text:0x000054E0; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_gm_cpp = .text:0x00005520; // type:function size:0x184 scope:global align:4
|
||||
entry__13mDoExt_btkAnmFP12J3DModelData = .text:0x000056A4; // type:function size:0xC scope:global align:4
|
||||
setCurrentPos__16obj_ystone_classF4cXyz = .text:0x000056B0; // type:function size:0x8 scope:global align:4
|
||||
__ct__9b_gm_footFv = .text:0x000056B8; // type:function size:0x4 scope:global align:4
|
||||
__dt__9b_gm_footFv = .text:0x000056BC; // type:function size:0x40 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@100307 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@100308 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@100309 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@100310 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@100311 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@100312 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@100313 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float
|
||||
@100322 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@100424 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@100425 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@100426 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@100804 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@100805 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@100806 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@100807 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@100808 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@100809 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@100810 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@100811 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@100812 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@100813 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@100814 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@100815 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@100816 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@100817 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@100818 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@100819 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@100820 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@100821 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@100822 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@100823 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@100824 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@100825 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@100826 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@100827 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@100828 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@100829 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@100830 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@100831 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@100832 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@100833 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@100834 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@100835 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@100836 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@100837 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@100838 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@100839 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@100840 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@100841 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@100842 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@100843 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@100844 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@100845 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@100846 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@100847 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@100848 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@100849 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@100850 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@100851 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@100852 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@100853 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@100854 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@100855 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@100856 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@100857 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@100858 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@100859 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@100860 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@100861 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@100862 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@100863 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@100864 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@100865 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@100866 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4 data:string
|
||||
@100867 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@100868 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@100873 = .rodata:0x00000130; // type:object size:0x8 scope:local align:4
|
||||
@101379 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@101380 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@101381 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@101382 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@101383 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@101384 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@101385 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@101386 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@101387 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@101388 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@101389 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@101390 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@101391 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@101392 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@101393 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@101394 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@101395 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@101396 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@101397 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@101398 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@101399 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@101400 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@101401 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@101402 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@101403 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@101404 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@101405 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@101406 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@101407 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@101408 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@101409 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@101410 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@101411 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@101412 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@101413 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@101414 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@101576 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4 data:float
|
||||
@101667 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@101668 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@101751 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@101752 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@101753 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@101754 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
name$93475 = .data:0x00000006; // type:object size:0x6 scope:local align:2
|
||||
name$93500 = .data:0x0000000C; // type:object size:0x8 scope:local align:4
|
||||
top_j = .data:0x00000014; // type:object size:0x28 scope:global align:4
|
||||
@100870 = .data:0x0000003C; // type:object size:0xD0 scope:local align:4
|
||||
name$94559 = .data:0x0000010C; // type:object size:0x8 scope:local align:4
|
||||
@101419 = .data:0x00000114; // type:object size:0x58 scope:local align:4
|
||||
@101418 = .data:0x0000016C; // type:object size:0x2C scope:local align:4
|
||||
@101416 = .data:0x00000198; // type:object size:0x30 scope:local align:4
|
||||
body_sph_src$94831 = .data:0x000001C8; // type:object size:0x40 scope:local align:4
|
||||
core_sph_src$94832 = .data:0x00000208; // type:object size:0x40 scope:local align:4
|
||||
hand_sph_src$94833 = .data:0x00000248; // type:object size:0x40 scope:local align:4
|
||||
foot_sph_src$94834 = .data:0x00000288; // type:object size:0x40 scope:local align:4
|
||||
beam_sph_src$94835 = .data:0x000002C8; // type:object size:0x40 scope:local align:4
|
||||
l_daB_GM_Method = .data:0x00000308; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_GM = .data:0x00000328; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_GM_HIO_c = .data:0x00000358; // type:object size:0xC scope:global align:4
|
||||
lbl_144_data_364 = .data:0x00000364; // type:object size:0xD data:string
|
||||
@94897 = .data:0x00000374; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_GM_HIO_c = .data:0x00000380; // type:object size:0x8 scope:global align:4
|
||||
lbl_144_data_388 = .data:0x00000388; // type:object size:0x34
|
||||
@94960 = .data:0x000003BC; // type:object size:0x3C scope:local align:4
|
||||
lbl_144_data_3F8 = .data:0x000003F8; // type:object size:0x14
|
||||
@94962 = .data:0x0000040C; // type:object size:0x34 scope:local align:4
|
||||
lbl_144_data_440 = .data:0x00000440; // type:object size:0x14
|
||||
@95020 = .data:0x00000454; // type:object size:0x24 scope:local align:4
|
||||
lbl_144_data_478 = .data:0x00000478; // type:object size:0x18
|
||||
@95022 = .data:0x00000490; // type:object size:0xC scope:local align:4
|
||||
lbl_144_data_49C = .data:0x0000049C; // type:object size:0x1C
|
||||
@95024 = .data:0x000004B8; // type:object size:0xC scope:local align:4
|
||||
lbl_144_data_4C4 = .data:0x000004C4; // type:object size:0xEC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@93326 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x4C scope:global align:4 data:byte
|
||||
ko_ct = .bss:0x00000064; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
@93627 = .bss:0x00000068; // type:object size:0xC scope:local align:4
|
||||
@93628 = .bss:0x00000074; // type:object size:0xC scope:local align:4
|
||||
@93629 = .bss:0x00000080; // type:object size:0xC scope:local align:4
|
||||
@93630 = .bss:0x0000008C; // type:object size:0xC scope:local align:4
|
||||
target_pos = .bss:0x00000098; // type:object size:0x30 scope:global align:4
|
||||
@93907 = .bss:0x000000C8; // type:object size:0xC scope:local align:4
|
||||
@93908 = .bss:0x000000D4; // type:object size:0xC scope:local align:4
|
||||
@93909 = .bss:0x000000E0; // type:object size:0xC scope:local align:4
|
||||
@93910 = .bss:0x000000EC; // type:object size:0xC scope:local align:4
|
||||
top_pos_data = .bss:0x000000F8; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_gnd.cpp:
|
||||
.text start:0x000000CC end:0x0000CB08
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000330
|
||||
.data start:0x00000000 end:0x00000794
|
||||
.bss start:0x00000008 end:0x000000BC
|
||||
@@ -1,362 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__13daB_GND_HIO_cFv = .text:0x000000CC; // type:function size:0x48 scope:global align:4
|
||||
anm_init__FP11b_gnd_classifUcf = .text:0x00000114; // type:function size:0xB4 scope:global align:4
|
||||
h_anm_init__FP11b_gnd_classifUcf = .text:0x000001C8; // type:function size:0xB4 scope:global align:4
|
||||
nodeCallBack__FP8J3DJointi = .text:0x0000027C; // type:function size:0x188 scope:global align:4
|
||||
h_nodeCallBack__FP8J3DJointi = .text:0x00000404; // type:function size:0x12C scope:global align:4
|
||||
daB_GND_Draw__FP11b_gnd_class = .text:0x00000530; // type:function size:0x43C scope:global align:4
|
||||
shot_s_sub__FPvPv = .text:0x0000096C; // type:function size:0x98 scope:global align:4
|
||||
gake_check__FP11b_gnd_class = .text:0x00000A04; // type:function size:0x524 scope:global align:4
|
||||
saku_jump_check__FP11b_gnd_class = .text:0x00000F28; // type:function size:0x2B0 scope:global align:4
|
||||
b_gnd_h_wait__FP11b_gnd_class = .text:0x000011D8; // type:function size:0x128 scope:global align:4
|
||||
b_gnd_h_wait2__FP11b_gnd_class = .text:0x00001300; // type:function size:0x208 scope:global align:4
|
||||
b_gnd_h_run_a__FP11b_gnd_class = .text:0x00001508; // type:function size:0xA60 scope:global align:4
|
||||
b_gnd_h_run_p__FP11b_gnd_class = .text:0x00001F68; // type:function size:0x508 scope:global align:4
|
||||
b_gnd_h_jump__FP11b_gnd_class = .text:0x00002470; // type:function size:0x190 scope:global align:4
|
||||
b_gnd_h_end__FP11b_gnd_class = .text:0x00002600; // type:function size:0x348 scope:global align:4
|
||||
b_gnd_g_wait__FP11b_gnd_class = .text:0x00002948; // type:function size:0x45C scope:global align:4
|
||||
b_gnd_g_attack__FP11b_gnd_class = .text:0x00002DA4; // type:function size:0x7DC scope:global align:4
|
||||
b_gnd_g_defence__FP11b_gnd_class = .text:0x00003580; // type:function size:0x498 scope:global align:4
|
||||
b_gnd_g_jump__FP11b_gnd_class = .text:0x00003A18; // type:function size:0x328 scope:global align:4
|
||||
b_gnd_g_side__FP11b_gnd_class = .text:0x00003D40; // type:function size:0x270 scope:global align:4
|
||||
b_gnd_g_tuba__FP11b_gnd_class = .text:0x00003FB0; // type:function size:0xDC scope:global align:4
|
||||
b_gnd_g_damage__FP11b_gnd_class = .text:0x0000408C; // type:function size:0x1B0 scope:global align:4
|
||||
b_gnd_g_down__FP11b_gnd_class = .text:0x0000423C; // type:function size:0x39C scope:global align:4
|
||||
b_gnd_g_end__FP11b_gnd_class = .text:0x000045D8; // type:function size:0x44 scope:global align:4
|
||||
damage_check__FP11b_gnd_class = .text:0x0000461C; // type:function size:0x2F4 scope:global align:4
|
||||
eff_set_h__FP11b_gnd_class = .text:0x00004910; // type:function size:0x6F8 scope:global align:4
|
||||
eff_set__FP11b_gnd_class = .text:0x00005008; // type:function size:0xE4 scope:global align:4
|
||||
s_fkdel_sub__FPvPv = .text:0x000050EC; // type:function size:0x4C scope:global align:4
|
||||
s_objgbdel_sub__FPvPv = .text:0x00005138; // type:function size:0x4C scope:global align:4
|
||||
h_damage_check__FP11b_gnd_class = .text:0x00005184; // type:function size:0x2D8 scope:global align:4
|
||||
action__FP11b_gnd_class = .text:0x0000545C; // type:function size:0x764 scope:global align:4
|
||||
ball_bg_check__FP11b_gnd_classi = .text:0x00005BC0; // type:function size:0xEC scope:global align:4
|
||||
himo_control1__FP11b_gnd_classP4cXyziSc = .text:0x00005CAC; // type:function size:0x2F0 scope:global align:4
|
||||
himo_control2__FP11b_gnd_classP4cXyziSc = .text:0x00005F9C; // type:function size:0x1C8 scope:global align:4
|
||||
demo_camera__FP11b_gnd_class = .text:0x00006164; // type:function size:0x2570 scope:global align:4
|
||||
anm_se_set__FP11b_gnd_class = .text:0x000086D4; // type:function size:0x1140 scope:global align:4
|
||||
daB_GND_Execute__FP11b_gnd_class = .text:0x00009814; // type:function size:0x1D14 scope:global align:4
|
||||
daB_GND_IsDelete__FP11b_gnd_class = .text:0x0000B528; // type:function size:0x8 scope:global align:4
|
||||
daB_GND_Delete__FP11b_gnd_class = .text:0x0000B530; // type:function size:0xB4 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x0000B5E4; // type:function size:0x898 scope:global align:4
|
||||
daB_GND_Create__FP10fopAc_ac_c = .text:0x0000BE7C; // type:function size:0x6A8 scope:global align:4
|
||||
__ct__12dKy_tevstr_cFv = .text:0x0000C524; // type:function size:0x60 scope:global align:4
|
||||
__dt__13daB_GND_HIO_cFv = .text:0x0000C584; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_gnd_cpp = .text:0x0000C5C4; // type:function size:0x7C scope:global align:4
|
||||
__arraydtor$97469 = .text:0x0000C640; // type:function size:0x1C scope:local align:4
|
||||
setBaseTRMtx__8J3DModelFPA4_f = .text:0x0000C65C; // type:function size:0x10 scope:global align:4
|
||||
getBaseTRMtx__8J3DModelFv = .text:0x0000C66C; // type:function size:0x8 scope:global align:4
|
||||
cMtx_XrotM__FPA4_fs = .text:0x0000C674; // type:function size:0x8 scope:global align:4
|
||||
cMtx_ZrotM__FPA4_fs = .text:0x0000C67C; // type:function size:0x8 scope:global align:4
|
||||
cMtx_YrotM__FPA4_fs = .text:0x0000C684; // type:function size:0x8 scope:global align:4
|
||||
cMtx_YrotS__FPA4_fs = .text:0x0000C68C; // type:function size:0x8 scope:global align:4
|
||||
getModel__16mDoExt_McaMorfSOFv = .text:0x0000C694; // type:function size:0x8 scope:global align:4
|
||||
entry__13mDoExt_btkAnmFP12J3DModelData = .text:0x0000C69C; // type:function size:0xC scope:global align:4
|
||||
setFrame__14mDoExt_baseAnmFf = .text:0x0000C6A8; // type:function size:0x8 scope:global align:4
|
||||
__apl__4cXyzFRC3Vec = .text:0x0000C6B0; // type:function size:0x34 scope:global align:4
|
||||
__ami__4cXyzFRC3Vec = .text:0x0000C6E4; // type:function size:0x34 scope:global align:4
|
||||
GetGroundH__9dBgS_AcchCFv = .text:0x0000C718; // type:function size:0x8 scope:global align:4
|
||||
ChkGroundHit__9dBgS_AcchCFv = .text:0x0000C720; // type:function size:0xC scope:global align:4
|
||||
ChkWaterHit__9dBgS_AcchCFv = .text:0x0000C72C; // type:function size:0xC scope:global align:4
|
||||
dComIfG_Bgsp__Fv = .text:0x0000C738; // type:function size:0x10 scope:global align:4
|
||||
dComIfGp_getPlayer__Fi = .text:0x0000C748; // type:function size:0x18 scope:global align:4
|
||||
dComIfGp_particle_set__FUsPC4cXyzPC5csXyzPC4cXyz = .text:0x0000C760; // type:function size:0x6C scope:global align:4
|
||||
dComIfGp_particle_set__FUlUsPC4cXyzPC5csXyzPC4cXyz = .text:0x0000C7CC; // type:function size:0x78 scope:global align:4
|
||||
dComIfGp_checkPlayerStatus0__FiUl = .text:0x0000C844; // type:function size:0x1C scope:global align:4
|
||||
dComIfGp_event_runCheck__Fv = .text:0x0000C860; // type:function size:0x18 scope:global align:4
|
||||
dComIfG_Ccsp__Fv = .text:0x0000C878; // type:function size:0x10 scope:global align:4
|
||||
dComIfGp_particle_getEmitter__FUl = .text:0x0000C888; // type:function size:0x18 scope:global align:4
|
||||
dComIfGp_particle_levelEmitterOnEventMove__FUl = .text:0x0000C8A0; // type:function size:0x18 scope:global align:4
|
||||
Z2GetAudioMgr__Fv = .text:0x0000C8B8; // type:function size:0xC scope:global align:4
|
||||
daPy_getPlayerActorClass__Fv = .text:0x0000C8C4; // type:function size:0x10 scope:global align:4
|
||||
getCutType__9daPy_py_cCFv = .text:0x0000C8D4; // type:function size:0x8 scope:global align:4
|
||||
changeOriginalDemo__9daPy_py_cFv = .text:0x0000C8DC; // type:function size:0x14 scope:global align:4
|
||||
daPy_getLinkPlayerActorClass__Fv = .text:0x0000C8F0; // type:function size:0x10 scope:global align:4
|
||||
getMidnaActor__9daPy_py_cFv = .text:0x0000C900; // type:function size:0xC scope:global align:4
|
||||
cM_ssin__Fs = .text:0x0000C90C; // type:function size:0x14 scope:global align:4
|
||||
fopAcM_searchPlayerDistanceXZ__FPC10fopAc_ac_c = .text:0x0000C920; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_SearchByID__FUi = .text:0x0000C930; // type:function size:0x30 scope:global align:4
|
||||
fopAcM_searchPlayerAngleY__FPC10fopAc_ac_c = .text:0x0000C960; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_OnStatus__FP10fopAc_ac_cUl = .text:0x0000C970; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_OffStatus__FP10fopAc_ac_cUl = .text:0x0000C980; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_GetRoomNo__FPC10fopAc_ac_c = .text:0x0000C990; // type:function size:0xC scope:global align:4
|
||||
get__14mDoMtx_stack_cFv = .text:0x0000C99C; // type:function size:0xC scope:global align:4
|
||||
YrotM__14mDoMtx_stack_cFs = .text:0x0000C9A8; // type:function size:0x10 scope:global align:4
|
||||
XrotM__14mDoMtx_stack_cFs = .text:0x0000C9B8; // type:function size:0x10 scope:global align:4
|
||||
ZrotM__14mDoMtx_stack_cFs = .text:0x0000C9C8; // type:function size:0x10 scope:global align:4
|
||||
fpcM_Search__FPFPvPv_PvPv = .text:0x0000C9D8; // type:function size:0x4 scope:global align:4
|
||||
fabsf = .text:0x0000C9DC; // type:function size:0xC scope:global align:4
|
||||
dKy_getEnvlight__Fv = .text:0x0000C9E8; // type:function size:0xC scope:global align:4
|
||||
GetHeight__14dBgS_SplGrpChkFv = .text:0x0000C9F4; // type:function size:0x8 scope:global align:4
|
||||
OffAtSetBit__14cCcD_ObjHitInfFv = .text:0x0000C9FC; // type:function size:0x10 scope:global align:4
|
||||
OffTgSetBit__14cCcD_ObjHitInfFv = .text:0x0000CA0C; // type:function size:0x10 scope:global align:4
|
||||
OnTgSetBit__14cCcD_ObjHitInfFv = .text:0x0000CA1C; // type:function size:0x10 scope:global align:4
|
||||
OnAtSetBit__14cCcD_ObjHitInfFv = .text:0x0000CA2C; // type:function size:0x10 scope:global align:4
|
||||
SetAtAtp__14cCcD_ObjHitInfFi = .text:0x0000CA3C; // type:function size:0x8 scope:global align:4
|
||||
SetTgType__14cCcD_ObjHitInfFUl = .text:0x0000CA44; // type:function size:0x8 scope:global align:4
|
||||
SetAtSpl__12dCcD_GObjInfF11dCcG_At_Spl = .text:0x0000CA4C; // type:function size:0x8 scope:global align:4
|
||||
__ct__8g_himo_sFv = .text:0x0000CA54; // type:function size:0x48 scope:global align:4
|
||||
__dt__8g_himo_sFv = .text:0x0000CA9C; // type:function size:0x64 scope:global align:4
|
||||
setDownPos__13fopEn_enemy_cFPC4cXyz = .text:0x0000CB00; // type:function size:0x8 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@112178 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@112179 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@112180 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@112181 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@112182 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@112192 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112193 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112229 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112232 = .rodata:0x00000020; // type:object size:0x8 scope:local align:4 data:double
|
||||
@112372 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@112373 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@112421 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112457 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@112458 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@112459 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@112460 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@112461 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@112462 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@112463 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@112464 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@112465 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@112466 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@112501 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@112502 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@112503 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@112504 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@112522 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112547 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@112548 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@112549 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@112550 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@112671 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@112672 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@112673 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@112674 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@112675 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@112676 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@112677 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@112678 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@112679 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@112680 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112681 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@112682 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@112683 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@112684 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@112685 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@112760 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@112761 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@112762 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@112763 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@112764 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@112777 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@112778 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@112816 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@112817 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@112818 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4 data:string
|
||||
@112819 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@112820 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@112821 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@112881 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@112882 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@112883 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@112956 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@112957 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4 data:string
|
||||
@112958 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@112959 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@112960 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@112961 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@113021 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@113022 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@113054 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@113085 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@113163 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@113164 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@113540 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@113541 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@113542 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@113590 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@113992 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@113993 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@113994 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@113995 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@113996 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@113997 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@113998 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@113999 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@114000 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@114001 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@114002 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@114003 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@114004 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@114005 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@114006 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@114007 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@114008 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@114009 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@114010 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@114011 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@114012 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@114013 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@114014 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@114015 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@114016 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@114017 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@114018 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@114019 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@114020 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@114021 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@114022 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@114023 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4 data:string
|
||||
@114024 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@114025 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@114026 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@114027 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@114028 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@114029 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@114030 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@114031 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@114032 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@114033 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@114034 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@114035 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@114036 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@114037 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@114038 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@114039 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@114040 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
@114041 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4
|
||||
@114042 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4
|
||||
@114043 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4
|
||||
@114044 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4
|
||||
@114045 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4
|
||||
@114046 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4
|
||||
@114047 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4
|
||||
@114048 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4
|
||||
@114049 = .rodata:0x00000220; // type:object size:0x4 scope:local align:4
|
||||
@114051 = .rodata:0x00000224; // type:object size:0x4 scope:local align:4
|
||||
@114052 = .rodata:0x00000228; // type:object size:0x4 scope:local align:4
|
||||
@114053 = .rodata:0x0000022C; // type:object size:0x4 scope:local align:4
|
||||
@114054 = .rodata:0x00000230; // type:object size:0x4 scope:local align:4
|
||||
@114055 = .rodata:0x00000234; // type:object size:0x4 scope:local align:4
|
||||
@114056 = .rodata:0x00000238; // type:object size:0x4 scope:local align:4
|
||||
@114057 = .rodata:0x0000023C; // type:object size:0x4 scope:local align:4
|
||||
@114058 = .rodata:0x00000240; // type:object size:0x4 scope:local align:4
|
||||
@114059 = .rodata:0x00000244; // type:object size:0x4 scope:local align:4
|
||||
@114060 = .rodata:0x00000248; // type:object size:0x4 scope:local align:4
|
||||
@114061 = .rodata:0x0000024C; // type:object size:0x4 scope:local align:4
|
||||
@114062 = .rodata:0x00000250; // type:object size:0x4 scope:local align:4
|
||||
@114063 = .rodata:0x00000254; // type:object size:0x4 scope:local align:4
|
||||
@114064 = .rodata:0x00000258; // type:object size:0x4 scope:local align:4
|
||||
@114065 = .rodata:0x0000025C; // type:object size:0x4 scope:local align:4
|
||||
@114066 = .rodata:0x00000260; // type:object size:0x4 scope:local align:4
|
||||
@114067 = .rodata:0x00000264; // type:object size:0x4 scope:local align:4
|
||||
@114068 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@114069 = .rodata:0x0000026C; // type:object size:0x4 scope:local align:4
|
||||
@114070 = .rodata:0x00000270; // type:object size:0x4 scope:local align:4
|
||||
@114071 = .rodata:0x00000274; // type:object size:0x4 scope:local align:4
|
||||
@114072 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@114073 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@114074 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@114075 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
@114076 = .rodata:0x00000288; // type:object size:0x4 scope:local align:4
|
||||
@114077 = .rodata:0x0000028C; // type:object size:0x4 scope:local align:4
|
||||
@114078 = .rodata:0x00000290; // type:object size:0x4 scope:local align:4
|
||||
@114079 = .rodata:0x00000294; // type:object size:0x4 scope:local align:4
|
||||
@114080 = .rodata:0x00000298; // type:object size:0x4 scope:local align:4
|
||||
@114436 = .rodata:0x0000029C; // type:object size:0x4 scope:local align:4
|
||||
@114437 = .rodata:0x000002A0; // type:object size:0x4 scope:local align:4
|
||||
@114438 = .rodata:0x000002A4; // type:object size:0x4 scope:local align:4
|
||||
@114439 = .rodata:0x000002A8; // type:object size:0x4 scope:local align:4
|
||||
@114440 = .rodata:0x000002AC; // type:object size:0x4 scope:local align:4
|
||||
@114441 = .rodata:0x000002B0; // type:object size:0x4 scope:local align:4
|
||||
@114442 = .rodata:0x000002B4; // type:object size:0x4 scope:local align:4
|
||||
@114443 = .rodata:0x000002B8; // type:object size:0x4 scope:local align:4
|
||||
@114444 = .rodata:0x000002BC; // type:object size:0x4 scope:local align:4
|
||||
@114445 = .rodata:0x000002C0; // type:object size:0x4 scope:local align:4
|
||||
@114446 = .rodata:0x000002C4; // type:object size:0x4 scope:local align:4
|
||||
@114447 = .rodata:0x000002C8; // type:object size:0x4 scope:local align:4
|
||||
@114448 = .rodata:0x000002CC; // type:object size:0x4 scope:local align:4
|
||||
@114449 = .rodata:0x000002D0; // type:object size:0x4 scope:local align:4
|
||||
@114450 = .rodata:0x000002D4; // type:object size:0x4 scope:local align:4
|
||||
@114672 = .rodata:0x000002D8; // type:object size:0x4 scope:local align:4
|
||||
@114673 = .rodata:0x000002DC; // type:object size:0x4 scope:local align:4
|
||||
@114674 = .rodata:0x000002E0; // type:object size:0x4 scope:local align:4
|
||||
@114675 = .rodata:0x000002E4; // type:object size:0x4 scope:local align:4
|
||||
@114676 = .rodata:0x000002E8; // type:object size:0x4 scope:local align:4
|
||||
@114677 = .rodata:0x000002EC; // type:object size:0x4 scope:local align:4
|
||||
@114678 = .rodata:0x000002F0; // type:object size:0x4 scope:local align:4
|
||||
@114679 = .rodata:0x000002F4; // type:object size:0x4 scope:local align:4
|
||||
@114680 = .rodata:0x000002F8; // type:object size:0x4 scope:local align:4
|
||||
@114681 = .rodata:0x000002FC; // type:object size:0x4 scope:local align:4
|
||||
@114682 = .rodata:0x00000300; // type:object size:0x4 scope:local align:4
|
||||
@114683 = .rodata:0x00000304; // type:object size:0x4 scope:local align:4
|
||||
@114684 = .rodata:0x00000308; // type:object size:0x4 scope:local align:4 data:string
|
||||
@114685 = .rodata:0x0000030C; // type:object size:0x4 scope:local align:4
|
||||
@114686 = .rodata:0x00000310; // type:object size:0x4 scope:local align:4
|
||||
@114687 = .rodata:0x00000314; // type:object size:0x4 scope:local align:4
|
||||
@114688 = .rodata:0x00000318; // type:object size:0x4 scope:local align:4
|
||||
@114689 = .rodata:0x0000031C; // type:object size:0x4 scope:local align:4
|
||||
@114690 = .rodata:0x00000320; // type:object size:0x4 scope:local align:4
|
||||
@114691 = .rodata:0x00000324; // type:object size:0x4 scope:local align:4
|
||||
blur_model$100569 = .rodata:0x00000328; // type:object size:0x8 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
lbl_145_data_6 = .data:0x00000006; // type:object size:0x5 data:string
|
||||
lbl_145_data_B = .data:0x0000000B; // type:object size:0x5
|
||||
chk_x$97259 = .data:0x00000010; // type:object size:0x10 scope:local align:4
|
||||
chk_z$97260 = .data:0x00000020; // type:object size:0x10 scope:local align:4
|
||||
@112687 = .data:0x00000030; // type:object size:0x58 scope:local align:4
|
||||
@112885 = .data:0x00000088; // type:object size:0x1C scope:local align:4
|
||||
@112964 = .data:0x000000A4; // type:object size:0x4C scope:local align:4
|
||||
w_eff_name$98544 = .data:0x000000F0; // type:object size:0x6 scope:local align:4
|
||||
w_eff_name2$98545 = .data:0x000000F6; // type:object size:0x6 scope:local align:2
|
||||
e_name$98560 = .data:0x000000FC; // type:object size:0x6 scope:local align:4
|
||||
@113544 = .data:0x00000104; // type:object size:0x5C scope:local align:4
|
||||
e_name$99107 = .data:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
e_name$99198 = .data:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
lbl_145_data_168 = .data:0x00000168; // type:object size:0x18
|
||||
@114082 = .data:0x00000180; // type:object size:0x184 scope:local align:4
|
||||
footJ$100116 = .data:0x00000304; // type:object size:0x10 scope:local align:4
|
||||
b_id$100206 = .data:0x00000314; // type:object size:0xC scope:local align:4
|
||||
b_id2$100207 = .data:0x00000320; // type:object size:0xA scope:local align:4
|
||||
bun_xs$100217 = .data:0x0000032C; // type:object size:0x14 scope:local align:4
|
||||
btk_d$100548 = .data:0x00000340; // type:object size:0x18 scope:local align:4
|
||||
h_cc_sph_src$100783 = .data:0x00000358; // type:object size:0x40 scope:local align:4
|
||||
cc_sph_src$100784 = .data:0x00000398; // type:object size:0x40 scope:local align:4
|
||||
at_sph_src$100785 = .data:0x000003D8; // type:object size:0x40 scope:local align:4
|
||||
def_sph_src$100786 = .data:0x00000418; // type:object size:0x40 scope:local align:4
|
||||
co_cyl_src$100787 = .data:0x00000458; // type:object size:0x44 scope:local align:4
|
||||
l_daB_GND_Method = .data:0x0000049C; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_GND = .data:0x000004BC; // type:object size:0x30 scope:global align:4
|
||||
__vt__13daB_GND_HIO_c = .data:0x000004EC; // type:object size:0xC scope:global align:4
|
||||
lbl_145_data_4F8 = .data:0x000004F8; // type:object size:0xE data:string
|
||||
@100867 = .data:0x00000508; // type:object size:0xC scope:local align:4
|
||||
__RTTI__13daB_GND_HIO_c = .data:0x00000514; // type:object size:0x8 scope:global align:4
|
||||
lbl_145_data_51C = .data:0x0000051C; // type:object size:0x34
|
||||
@100930 = .data:0x00000550; // type:object size:0x3C scope:local align:4
|
||||
lbl_145_data_58C = .data:0x0000058C; // type:object size:0x14
|
||||
@100932 = .data:0x000005A0; // type:object size:0x34 scope:local align:4
|
||||
__vt__18mDoExt_3DlineMat_c = .data:0x000005DC; // type:object size:0x14 scope:global align:4
|
||||
lbl_145_data_5F0 = .data:0x000005F0; // type:object size:0x28
|
||||
@100990 = .data:0x00000618; // type:object size:0x24 scope:local align:4
|
||||
lbl_145_data_63C = .data:0x0000063C; // type:object size:0x18
|
||||
@100992 = .data:0x00000654; // type:object size:0xC scope:local align:4
|
||||
lbl_145_data_660 = .data:0x00000660; // type:object size:0x1C
|
||||
@100994 = .data:0x0000067C; // type:object size:0xC scope:local align:4
|
||||
lbl_145_data_688 = .data:0x00000688; // type:object size:0x10C
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@97078 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x1C scope:global align:4 data:byte
|
||||
@97289 = .bss:0x00000038; // type:object size:0xC scope:local align:4
|
||||
k_pos$97286 = .bss:0x00000044; // type:object size:0xC scope:local align:4
|
||||
@97470 = .bss:0x00000050; // type:object size:0xC scope:local align:4
|
||||
b_path = .bss:0x0000005C; // type:object size:0x60 scope:global align:4 data:float
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_go.cpp:
|
||||
.text start:0x000000CC end:0x00000BF0
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000048
|
||||
.data start:0x00000000 end:0x00000088
|
||||
.bss start:0x00000008 end:0x00000030
|
||||
@@ -1,48 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_GO_HIO_cFv = .text:0x000000CC; // type:function size:0x40 scope:global align:4
|
||||
daB_GO_Draw__FP10b_go_class = .text:0x0000010C; // type:function size:0x80 scope:global align:4
|
||||
anm_init__FP10b_go_classifUcf = .text:0x0000018C; // type:function size:0xAC scope:global align:4
|
||||
daB_GO_Execute__FP10b_go_class = .text:0x00000238; // type:function size:0x4C8 scope:global align:4
|
||||
daB_GO_IsDelete__FP10b_go_class = .text:0x00000700; // type:function size:0x8 scope:global align:4
|
||||
daB_GO_Delete__FP10b_go_class = .text:0x00000708; // type:function size:0x68 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00000770; // type:function size:0xF4 scope:global align:4
|
||||
daB_GO_Create__FP10fopAc_ac_c = .text:0x00000864; // type:function size:0x304 scope:global align:4
|
||||
__dt__12daB_GO_HIO_cFv = .text:0x00000B68; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_go_cpp = .text:0x00000BA8; // type:function size:0x48 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@93174 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@93175 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@93176 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@93194 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@93195 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
|
||||
@93269 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@93270 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@93271 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@93272 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@93273 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4 data:float
|
||||
@93274 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@93275 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@93356 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@93357 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@93358 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@93359 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@93360 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@93361 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
lbl_146_data_0 = .data:0x00000000; // type:object size:0x5 data:string
|
||||
l_daB_GO_Method = .data:0x00000008; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_GO = .data:0x00000028; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_GO_HIO_c = .data:0x00000058; // type:object size:0xC scope:global align:4
|
||||
lbl_146_data_64 = .data:0x00000064; // type:object size:0xD data:string
|
||||
@91984 = .data:0x00000074; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_GO_HIO_c = .data:0x00000080; // type:object size:0x8 scope:global align:4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
lbl_146_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte
|
||||
@91725 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x18 scope:global align:4 data:byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_gos.cpp:
|
||||
.text start:0x000000CC end:0x00000E44
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x0000004C
|
||||
.data start:0x00000000 end:0x000001C4
|
||||
.bss start:0x00000008 end:0x0000002C
|
||||
@@ -1,52 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__13daB_GOS_HIO_cFv = .text:0x000000CC; // type:function size:0x30 scope:global align:4
|
||||
daB_GOS_Draw__FP11b_gos_class = .text:0x000000FC; // type:function size:0xD4 scope:global align:4
|
||||
anm_init__FP11b_gos_classifUcf = .text:0x000001D0; // type:function size:0xAC scope:global align:4
|
||||
daB_GOS_Execute__FP11b_gos_class = .text:0x0000027C; // type:function size:0x758 scope:global align:4
|
||||
daB_GOS_IsDelete__FP11b_gos_class = .text:0x000009D4; // type:function size:0x8 scope:global align:4
|
||||
daB_GOS_Delete__FP11b_gos_class = .text:0x000009DC; // type:function size:0x68 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00000A44; // type:function size:0xF4 scope:global align:4
|
||||
daB_GOS_Create__FP10fopAc_ac_c = .text:0x00000B38; // type:function size:0x284 scope:global align:4
|
||||
__dt__13daB_GOS_HIO_cFv = .text:0x00000DBC; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_gos_cpp = .text:0x00000DFC; // type:function size:0x48 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@93281 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@93282 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@93294 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@93295 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@93296 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
|
||||
@93308 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float
|
||||
@93388 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@93389 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@93390 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@93391 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@93392 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@93393 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@93394 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@93395 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@93396 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@93397 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@93398 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@93472 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@93473 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
lbl_147_data_0 = .data:0x00000000; // type:object size:0x6 data:string
|
||||
j_info = .data:0x00000008; // type:object size:0xF8 scope:global align:4
|
||||
cc_cyl_src$91965 = .data:0x00000100; // type:object size:0x44 scope:local align:4
|
||||
l_daB_GOS_Method = .data:0x00000144; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_GOS = .data:0x00000164; // type:object size:0x30 scope:global align:4
|
||||
__vt__13daB_GOS_HIO_c = .data:0x00000194; // type:object size:0xC scope:global align:4
|
||||
lbl_147_data_1A0 = .data:0x000001A0; // type:object size:0xE data:string
|
||||
@91998 = .data:0x000001B0; // type:object size:0xC scope:local align:4
|
||||
__RTTI__13daB_GOS_HIO_c = .data:0x000001BC; // type:object size:0x8 scope:global align:4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
boss = .bss:0x00000008; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
lbl_147_bss_C = .bss:0x0000000C; // type:object size:0x1 data:byte
|
||||
@91725 = .bss:0x00000010; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x0000001C; // type:object size:0x10 scope:global align:4 data:byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_mgn.cpp:
|
||||
.text start:0x000000CC end:0x00009864
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000288
|
||||
.data start:0x00000000 end:0x00000568
|
||||
.bss start:0x00000008 end:0x0000003C
|
||||
@@ -1,244 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
absXZ__4cXyzCFRC3Vec = .text:0x000000CC; // type:function size:0x74 scope:global align:4
|
||||
__ct__13daB_MGN_HIO_cFv = .text:0x00000140; // type:function size:0x50 scope:global align:4
|
||||
ctrlJoint__9daB_MGN_cFP8J3DJointP8J3DModel = .text:0x00000190; // type:function size:0xC4 scope:global align:4
|
||||
JointCallBack__9daB_MGN_cFP8J3DJointi = .text:0x00000254; // type:function size:0x48 scope:global align:4
|
||||
draw__9daB_MGN_cFv = .text:0x0000029C; // type:function size:0x3C8 scope:global align:4
|
||||
daB_MGN_Draw__FP9daB_MGN_c = .text:0x00000664; // type:function size:0x4 scope:global align:4
|
||||
s_obj_sub__FPvPv = .text:0x00000668; // type:function size:0xCC scope:global align:4
|
||||
setDashSmokeEffect__9daB_MGN_cFv = .text:0x00000734; // type:function size:0x284 scope:global align:4
|
||||
setBackJumpEffect__9daB_MGN_cFv = .text:0x000009B8; // type:function size:0x290 scope:global align:4
|
||||
setSlideSmokeEffect__9daB_MGN_cFv = .text:0x00000C48; // type:function size:0x144 scope:global align:4
|
||||
setBodySlideEffect__9daB_MGN_cFv = .text:0x00000D8C; // type:function size:0x180 scope:global align:4
|
||||
setOpeningEffect__9daB_MGN_cFv = .text:0x00000F0C; // type:function size:0x164 scope:global align:4
|
||||
setStepEffect__9daB_MGN_cFv = .text:0x00001070; // type:function size:0x118 scope:global align:4
|
||||
setFallAttackEffect__9daB_MGN_cFv = .text:0x00001188; // type:function size:0x154 scope:global align:4
|
||||
setHeadLightEffect__9daB_MGN_cFv = .text:0x000012DC; // type:function size:0xC4 scope:global align:4
|
||||
setHeadHitEffect__9daB_MGN_cFv = .text:0x000013A0; // type:function size:0x158 scope:global align:4
|
||||
setHideSmokeEffect__9daB_MGN_cFP4cXyzUc = .text:0x000014F8; // type:function size:0xEC scope:global align:4
|
||||
calcHideSmokeEffect__9daB_MGN_cFv = .text:0x000015E4; // type:function size:0x444 scope:global align:4
|
||||
drawHideSmokeEffect__9daB_MGN_cFv = .text:0x00001A28; // type:function size:0xD4 scope:global align:4
|
||||
setBloodEffect__9daB_MGN_cFv = .text:0x00001AFC; // type:function size:0x118 scope:global align:4
|
||||
calcBloodMove__9daB_MGN_cFv = .text:0x00001C14; // type:function size:0x3B8 scope:global align:4
|
||||
checkDownBeforeBG__9daB_MGN_cFv = .text:0x00001FCC; // type:function size:0x144 scope:global align:4
|
||||
checkBck__9daB_MGN_cFi = .text:0x00002110; // type:function size:0x5C scope:global align:4
|
||||
setActionMode__9daB_MGN_cFii = .text:0x0000216C; // type:function size:0x50 scope:global align:4
|
||||
setExitMode__9daB_MGN_cFi = .text:0x000021BC; // type:function size:0xCC scope:global align:4
|
||||
onBodyShield__9daB_MGN_cFv = .text:0x00002288; // type:function size:0x30 scope:global align:4
|
||||
offBodyShield__9daB_MGN_cFv = .text:0x000022B8; // type:function size:0x30 scope:global align:4
|
||||
onBodySlideAt__9daB_MGN_cFv = .text:0x000022E8; // type:function size:0x4C scope:global align:4
|
||||
offBodySlideAt__9daB_MGN_cFv = .text:0x00002334; // type:function size:0x24 scope:global align:4
|
||||
checkHitSlideAt__9daB_MGN_cFv = .text:0x00002358; // type:function size:0x94 scope:global align:4
|
||||
onBodyFallAt__9daB_MGN_cFv = .text:0x000023EC; // type:function size:0x34 scope:global align:4
|
||||
offBodyFallAt__9daB_MGN_cFv = .text:0x00002420; // type:function size:0x24 scope:global align:4
|
||||
onBodyCo__9daB_MGN_cFv = .text:0x00002444; // type:function size:0x3C scope:global align:4
|
||||
offBodyCo__9daB_MGN_cFv = .text:0x00002480; // type:function size:0x38 scope:global align:4
|
||||
getNearHitPos__9daB_MGN_cFP4cXyz = .text:0x000024B8; // type:function size:0x1DC scope:global align:4
|
||||
damage_check__9daB_MGN_cFv = .text:0x00002694; // type:function size:0x57C scope:global align:4
|
||||
calcJointAngle__9daB_MGN_cFs = .text:0x00002C10; // type:function size:0x6C scope:global align:4
|
||||
executeCircle__9daB_MGN_cFv = .text:0x00002C7C; // type:function size:0x730 scope:global align:4
|
||||
executeDash__9daB_MGN_cFv = .text:0x000033AC; // type:function size:0xD84 scope:global align:4
|
||||
executeThrown__9daB_MGN_cFv = .text:0x00004130; // type:function size:0x9A0 scope:global align:4
|
||||
setDownEnd__9daB_MGN_cFv = .text:0x00004AD0; // type:function size:0x11C scope:global align:4
|
||||
executeDown__9daB_MGN_cFv = .text:0x00004BEC; // type:function size:0x638 scope:global align:4
|
||||
executeDownDamage__9daB_MGN_cFv = .text:0x00005224; // type:function size:0x410 scope:global align:4
|
||||
executeDownBiteDamage__9daB_MGN_cFv = .text:0x00005634; // type:function size:0x4C0 scope:global align:4
|
||||
executeWarp__9daB_MGN_cFv = .text:0x00005AF4; // type:function size:0x110 scope:global align:4
|
||||
executeFall__9daB_MGN_cFv = .text:0x00005C04; // type:function size:0x984 scope:global align:4
|
||||
demo_skip__9daB_MGN_cFi = .text:0x00006588; // type:function size:0x198 scope:global align:4
|
||||
DemoSkipCallBack__9daB_MGN_cFPvi = .text:0x00006720; // type:function size:0x34 scope:global align:4
|
||||
executeOpening__9daB_MGN_cFv = .text:0x00006754; // type:function size:0xEF8 scope:global align:4
|
||||
executeDeath__9daB_MGN_cFv = .text:0x0000764C; // type:function size:0x764 scope:global align:4
|
||||
executeJump__9daB_MGN_cFv = .text:0x00007DB0; // type:function size:0x218 scope:global align:4
|
||||
checkStartJump__9daB_MGN_cFv = .text:0x00007FC8; // type:function size:0x1C0 scope:global align:4
|
||||
action__9daB_MGN_cFv = .text:0x00008188; // type:function size:0x390 scope:global align:4
|
||||
mtx_set__9daB_MGN_cFv = .text:0x00008518; // type:function size:0x78 scope:global align:4
|
||||
cc_set__9daB_MGN_cFv = .text:0x00008590; // type:function size:0x3D4 scope:global align:4
|
||||
execute__9daB_MGN_cFv = .text:0x00008964; // type:function size:0x4AC scope:global align:4
|
||||
daB_MGN_Execute__FP9daB_MGN_c = .text:0x00008E10; // type:function size:0x4 scope:global align:4
|
||||
daB_MGN_IsDelete__FP9daB_MGN_c = .text:0x00008E14; // type:function size:0x8 scope:global align:4
|
||||
_delete__9daB_MGN_cFv = .text:0x00008E1C; // type:function size:0x84 scope:global align:4
|
||||
daB_MGN_Delete__FP9daB_MGN_c = .text:0x00008EA0; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__9daB_MGN_cFv = .text:0x00008EA4; // type:function size:0x500 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x000093A4; // type:function size:0x4 scope:global align:4
|
||||
create__9daB_MGN_cFv = .text:0x000093A8; // type:function size:0x3E4 scope:global align:4
|
||||
daB_MGN_Create__FP9daB_MGN_c = .text:0x0000978C; // type:function size:0x4 scope:global align:4
|
||||
__dt__13daB_MGN_HIO_cFv = .text:0x00009790; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_mgn_cpp = .text:0x000097D0; // type:function size:0x48 scope:global align:4
|
||||
setGlobalSRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x00009818; // type:function size:0x4C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@105402 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@105403 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@105404 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@105405 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105406 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@105524 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@105525 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105526 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@105527 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@105564 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105601 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@105640 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@105641 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@105642 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@105643 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@105688 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@105689 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@105710 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@105839 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105993 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@105994 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@105996 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@106073 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@106155 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@106156 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4 data:float
|
||||
@106157 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@106158 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@106159 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@106160 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@106161 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@106162 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4 data:string
|
||||
@106163 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@106164 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@106165 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@106184 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4 data:float
|
||||
@106237 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4 data:4byte
|
||||
@96475 = .rodata:0x00000090; // type:object size:0x18 scope:local align:4
|
||||
@106337 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@106338 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@106339 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@106340 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@106341 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@106342 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@106343 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@106344 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@106345 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@106572 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@106573 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@106574 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@106575 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@106576 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@106789 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@106790 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@106791 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@106792 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@106793 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@106794 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@106795 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@106796 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@106800 = .rodata:0x00000100; // type:object size:0x8 scope:local align:4
|
||||
@106943 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@106944 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@106945 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@106946 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@107063 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@107064 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@107065 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@107121 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@107351 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@107352 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@107353 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@107354 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@107355 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@107356 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@107357 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@107358 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@107359 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@107395 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@107396 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@107397 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@107398 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@107399 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@107659 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@107660 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@107661 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@107662 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@107663 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@107664 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@107665 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@107666 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@107667 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4 data:string
|
||||
@107668 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@107669 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@107670 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@107671 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@107672 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@107673 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@107674 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@107675 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@107676 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@107677 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@107678 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@107679 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@107680 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@107681 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@107682 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@107683 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@107684 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@107685 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@107820 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@107821 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@107822 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@107823 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@107824 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@107825 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@107826 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@107827 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@107828 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@107829 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@107865 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@107986 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@107987 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
cc_set_radius$98030 = .rodata:0x00000200; // type:object size:0x3C scope:local align:4
|
||||
cc_set_jnt$98031 = .rodata:0x0000023C; // type:object size:0x3C scope:local align:4
|
||||
@108052 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@108053 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@108433 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@108434 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
eff_id$95673 = .data:0x00000010; // type:object size:0x6 scope:local align:4
|
||||
cc_sph_src__23@unnamed@d_a_b_mgn_cpp@ = .data:0x00000018; // type:object size:0x40 scope:global align:4
|
||||
at_sph_src__23@unnamed@d_a_b_mgn_cpp@ = .data:0x00000058; // type:object size:0x40 scope:global align:4
|
||||
tg_sph_src__23@unnamed@d_a_b_mgn_cpp@ = .data:0x00000098; // type:object size:0x40 scope:global align:4
|
||||
lbl_148_data_D8 = .data:0x000000D8; // type:object size:0x10 data:byte
|
||||
foot_rand_frame$95875 = .data:0x000000E8; // type:object size:0x20 scope:local align:4
|
||||
foot_jnt$95995 = .data:0x00000108; // type:object size:0x10 scope:local align:4
|
||||
foot_jnt$96059 = .data:0x00000118; // type:object size:0x8 scope:local align:4
|
||||
lbl_148_data_120 = .data:0x00000120; // type:object size:0x7 data:string
|
||||
@105998 = .data:0x00000128; // type:object size:0x20 scope:local align:4
|
||||
lbl_148_data_148 = .data:0x00000148; // type:object size:0x6 data:string
|
||||
@106578 = .data:0x00000150; // type:object size:0x2C scope:local align:4
|
||||
@106798 = .data:0x0000017C; // type:object size:0x54 scope:local align:4
|
||||
@106948 = .data:0x000001D0; // type:object size:0x30 scope:local align:4
|
||||
@107067 = .data:0x00000200; // type:object size:0x24 scope:local align:4
|
||||
@107361 = .data:0x00000224; // type:object size:0x40 scope:local align:4
|
||||
@107687 = .data:0x00000264; // type:object size:0x30 scope:local align:4
|
||||
@107989 = .data:0x00000294; // type:object size:0x2C scope:local align:4
|
||||
l_daB_MGN_Method = .data:0x000002C0; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_MGN = .data:0x000002E0; // type:object size:0x30 scope:global align:4
|
||||
__vt__13daB_MGN_HIO_c = .data:0x00000310; // type:object size:0xC scope:global align:4
|
||||
lbl_148_data_31C = .data:0x0000031C; // type:object size:0xE data:string
|
||||
@98344 = .data:0x0000032C; // type:object size:0xC scope:local align:4
|
||||
__RTTI__13daB_MGN_HIO_c = .data:0x00000338; // type:object size:0x8 scope:global align:4
|
||||
lbl_148_data_340 = .data:0x00000340; // type:object size:0x34
|
||||
@98407 = .data:0x00000374; // type:object size:0x3C scope:local align:4
|
||||
lbl_148_data_3B0 = .data:0x000003B0; // type:object size:0x14
|
||||
@98409 = .data:0x000003C4; // type:object size:0x34 scope:local align:4
|
||||
lbl_148_data_3F8 = .data:0x000003F8; // type:object size:0x14
|
||||
@98467 = .data:0x0000040C; // type:object size:0x24 scope:local align:4
|
||||
lbl_148_data_430 = .data:0x00000430; // type:object size:0x18
|
||||
@98469 = .data:0x00000448; // type:object size:0xC scope:local align:4
|
||||
lbl_148_data_454 = .data:0x00000454; // type:object size:0x1C
|
||||
@98471 = .data:0x00000470; // type:object size:0xC scope:local align:4
|
||||
lbl_148_data_47C = .data:0x0000047C; // type:object size:0xEC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
lbl_148_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte
|
||||
@95716 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x24 scope:global align:4 data:byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_ob.cpp:
|
||||
.text start:0x000000CC end:0x00009148
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000300
|
||||
.data start:0x00000000 end:0x000005D0
|
||||
.bss start:0x00000008 end:0x000000E8
|
||||
@@ -1,309 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_OB_HIO_cFv = .text:0x000000CC; // type:function size:0x50 scope:global align:4
|
||||
anm_init__FP10b_ob_classifUcf = .text:0x0000011C; // type:function size:0xB0 scope:global align:4
|
||||
HeadCallBack__FP8J3DJointi = .text:0x000001CC; // type:function size:0x110 scope:global align:4
|
||||
TailCallBack__FP8J3DJointi = .text:0x000002DC; // type:function size:0x1A0 scope:global align:4
|
||||
FinACallBack__FP8J3DJointi = .text:0x0000047C; // type:function size:0x14C scope:global align:4
|
||||
FinBCallBack__FP8J3DJointi = .text:0x000005C8; // type:function size:0xCC scope:global align:4
|
||||
FinCCallBack__FP8J3DJointi = .text:0x00000694; // type:function size:0xD8 scope:global align:4
|
||||
sui_nodeCallBack__FP8J3DJointi = .text:0x0000076C; // type:function size:0xF0 scope:global align:4
|
||||
dark__FP12J3DModelDatas = .text:0x0000085C; // type:function size:0xB8 scope:global align:4
|
||||
daB_OB_Draw__FP10b_ob_class = .text:0x00000914; // type:function size:0x458 scope:global align:4
|
||||
s_bf_sub__FPvPv = .text:0x00000D6C; // type:function size:0x54 scope:global align:4
|
||||
s_bfdel_sub__FPvPv = .text:0x00000DC0; // type:function size:0x4C scope:global align:4
|
||||
s_kaisoudel_sub__FPvPv = .text:0x00000E0C; // type:function size:0x4C scope:global align:4
|
||||
core_action__FP10b_ob_class = .text:0x00000E58; // type:function size:0x12F8 scope:global align:4
|
||||
core_damage_check__FP10b_ob_class = .text:0x00002150; // type:function size:0x208 scope:global align:4
|
||||
fish_damage_check__FP10b_ob_class = .text:0x00002358; // type:function size:0x2D4 scope:global align:4
|
||||
pl_check__FP10b_ob_classfs = .text:0x0000262C; // type:function size:0xC4 scope:global align:4
|
||||
fish_move__FP10b_ob_class = .text:0x000026F0; // type:function size:0x20C0 scope:global align:4
|
||||
cam_3d_morf__FP10b_ob_classf = .text:0x000047B0; // type:function size:0xE4 scope:global align:4
|
||||
s_hasidel_sub__FPvPv = .text:0x00004894; // type:function size:0x4C scope:global align:4
|
||||
demo_camera__FP10b_ob_class = .text:0x000048E0; // type:function size:0x2C48 scope:global align:4
|
||||
daB_OB_Execute__FP10b_ob_class = .text:0x00007528; // type:function size:0xA64 scope:global align:4
|
||||
daB_OB_IsDelete__FP10b_ob_class = .text:0x00007F8C; // type:function size:0x8 scope:global align:4
|
||||
daB_OB_Delete__FP10b_ob_class = .text:0x00007F94; // type:function size:0x7C scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00008010; // type:function size:0x78C scope:global align:4
|
||||
daB_OB_Create__FP10fopAc_ac_c = .text:0x0000879C; // type:function size:0x584 scope:global align:4
|
||||
__dt__12daB_OB_HIO_cFv = .text:0x00008D20; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_ob_cpp = .text:0x00008D60; // type:function size:0x48 scope:global align:4
|
||||
getBaseTRMtx__8J3DModelFv = .text:0x00008DA8; // type:function size:0x8 scope:global align:4
|
||||
setBaseTRMtx__8J3DModelFPA4_f = .text:0x00008DB0; // type:function size:0x10 scope:global align:4
|
||||
getModel__14mDoExt_McaMorfFv = .text:0x00008DC0; // type:function size:0x8 scope:global align:4
|
||||
getModel__16mDoExt_McaMorfSOFv = .text:0x00008DC8; // type:function size:0x8 scope:global align:4
|
||||
getPlaySpeed__13mDoExt_morf_cFv = .text:0x00008DD0; // type:function size:0x8 scope:global align:4
|
||||
fopAcM_searchPlayerDistance__FPC10fopAc_ac_c = .text:0x00008DD8; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_SearchByID__FUi = .text:0x00008DE8; // type:function size:0x30 scope:global align:4
|
||||
fopAcM_GetRoomNo__FPC10fopAc_ac_c = .text:0x00008E18; // type:function size:0xC scope:global align:4
|
||||
fopAcM_searchPlayerAngleY__FPC10fopAc_ac_c = .text:0x00008E24; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_searchPlayerAngleX__FPC10fopAc_ac_c = .text:0x00008E34; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_searchPlayerDistanceXZ__FPC10fopAc_ac_c = .text:0x00008E44; // type:function size:0x10 scope:global align:4
|
||||
dComIfGp_getPlayer__Fi = .text:0x00008E54; // type:function size:0x18 scope:global align:4
|
||||
dComIfGp_particle_set__FUlUsPC4cXyzPC5csXyzPC4cXyz = .text:0x00008E6C; // type:function size:0x78 scope:global align:4
|
||||
dComIfGp_event_runCheck__Fv = .text:0x00008EE4; // type:function size:0x18 scope:global align:4
|
||||
dComIfGp_particle_getEmitter__FUl = .text:0x00008EFC; // type:function size:0x18 scope:global align:4
|
||||
dComIfG_Ccsp__Fv = .text:0x00008F14; // type:function size:0x10 scope:global align:4
|
||||
get__14mDoMtx_stack_cFv = .text:0x00008F24; // type:function size:0xC scope:global align:4
|
||||
YrotM__14mDoMtx_stack_cFs = .text:0x00008F30; // type:function size:0x10 scope:global align:4
|
||||
XrotM__14mDoMtx_stack_cFs = .text:0x00008F40; // type:function size:0x10 scope:global align:4
|
||||
ZrotM__14mDoMtx_stack_cFs = .text:0x00008F50; // type:function size:0x10 scope:global align:4
|
||||
cM_ssin__Fs = .text:0x00008F60; // type:function size:0x14 scope:global align:4
|
||||
changeOriginalDemo__9daPy_py_cFv = .text:0x00008F74; // type:function size:0x14 scope:global align:4
|
||||
OffCoSetBit__14cCcD_ObjHitInfFv = .text:0x00008F88; // type:function size:0x10 scope:global align:4
|
||||
OnCoSetBit__14cCcD_ObjHitInfFv = .text:0x00008F98; // type:function size:0x10 scope:global align:4
|
||||
OffAtSetBit__14cCcD_ObjHitInfFv = .text:0x00008FA8; // type:function size:0x10 scope:global align:4
|
||||
setCurrentPos__16obj_ystone_classF4cXyz = .text:0x00008FB8; // type:function size:0x8 scope:global align:4
|
||||
setGlobalRTMatrix__14JPABaseEmitterFPA4_Cf = .text:0x00008FC0; // type:function size:0x14 scope:global align:4
|
||||
__ct__9ob_part_sFv = .text:0x00008FD4; // type:function size:0x34 scope:global align:4
|
||||
__dt__9ob_part_sFv = .text:0x00009008; // type:function size:0x5C scope:global align:4
|
||||
__ct__7ob_ke_sFv = .text:0x00009064; // type:function size:0x68 scope:global align:4
|
||||
__dt__7ob_ke_sFv = .text:0x000090CC; // type:function size:0x7C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@105459 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@105460 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@105461 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@105470 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105471 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
|
||||
@105613 = .rodata:0x00000018; // type:object size:0x8 scope:local align:4 data:double
|
||||
@105865 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@105866 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@105867 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@106168 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@106169 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@106170 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@106171 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@106172 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@106173 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@106174 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@106175 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@106176 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@106177 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@106178 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@106179 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@106180 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@106181 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@106182 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@106183 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@106184 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@106185 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@106186 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@106187 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@106219 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@106648 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@106649 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@106650 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@106651 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@106652 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@106653 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@106654 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@106655 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@106656 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@106657 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@106658 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@106659 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@106660 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@106661 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@106662 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@106663 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@106664 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@106665 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@106666 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@106667 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@106668 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@106669 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@106670 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@106671 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@106672 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@106673 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@106674 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@106675 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@106676 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@106677 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@106678 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@106679 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@106680 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@106681 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@106682 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@106683 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@106684 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@106685 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@106686 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@106687 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@106688 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@106689 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@106690 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@106691 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@106692 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@106693 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@106694 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@106695 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@106696 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@106697 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@106698 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@106699 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@106700 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@106701 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@106702 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@106703 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@106704 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@107352 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@107353 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@107354 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@107355 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@107356 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@107357 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@107358 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@107359 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@107360 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@107361 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@107362 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@107363 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@107364 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@107365 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@107366 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@107367 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@107368 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@107369 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@107370 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@107371 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@107372 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@107373 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@107374 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@107375 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@107376 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@107377 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@107378 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@107379 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@107380 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@107381 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@107382 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@107383 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@107384 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@107385 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@107386 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@107387 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@107388 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@107389 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@107390 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
@107391 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4
|
||||
@107392 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4
|
||||
@107393 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4
|
||||
@107394 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@107395 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4
|
||||
@107396 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4
|
||||
@107397 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4
|
||||
@107398 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4
|
||||
@107399 = .rodata:0x00000220; // type:object size:0x4 scope:local align:4
|
||||
@107400 = .rodata:0x00000224; // type:object size:0x4 scope:local align:4
|
||||
@107401 = .rodata:0x00000228; // type:object size:0x4 scope:local align:4
|
||||
@107402 = .rodata:0x0000022C; // type:object size:0x4 scope:local align:4
|
||||
@107403 = .rodata:0x00000230; // type:object size:0x4 scope:local align:4
|
||||
@107404 = .rodata:0x00000234; // type:object size:0x4 scope:local align:4
|
||||
@107405 = .rodata:0x00000238; // type:object size:0x4 scope:local align:4
|
||||
@107406 = .rodata:0x0000023C; // type:object size:0x4 scope:local align:4
|
||||
@107407 = .rodata:0x00000240; // type:object size:0x4 scope:local align:4
|
||||
@107408 = .rodata:0x00000244; // type:object size:0x4 scope:local align:4
|
||||
@107409 = .rodata:0x00000248; // type:object size:0x4 scope:local align:4
|
||||
@107410 = .rodata:0x0000024C; // type:object size:0x4 scope:local align:4
|
||||
@107411 = .rodata:0x00000250; // type:object size:0x4 scope:local align:4
|
||||
@107412 = .rodata:0x00000254; // type:object size:0x4 scope:local align:4
|
||||
@107413 = .rodata:0x00000258; // type:object size:0x4 scope:local align:4
|
||||
@107414 = .rodata:0x0000025C; // type:object size:0x4 scope:local align:4
|
||||
@107415 = .rodata:0x00000260; // type:object size:0x4 scope:local align:4
|
||||
@107416 = .rodata:0x00000264; // type:object size:0x4 scope:local align:4 data:string
|
||||
@107417 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@107418 = .rodata:0x0000026C; // type:object size:0x4 scope:local align:4
|
||||
@107419 = .rodata:0x00000270; // type:object size:0x4 scope:local align:4
|
||||
@107420 = .rodata:0x00000274; // type:object size:0x4 scope:local align:4
|
||||
@107421 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@107422 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@107423 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@107424 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
@107425 = .rodata:0x00000288; // type:object size:0x4 scope:local align:4
|
||||
@107426 = .rodata:0x0000028C; // type:object size:0x4 scope:local align:4
|
||||
@107427 = .rodata:0x00000290; // type:object size:0x4 scope:local align:4
|
||||
@107428 = .rodata:0x00000294; // type:object size:0x4 scope:local align:4
|
||||
@107429 = .rodata:0x00000298; // type:object size:0x4 scope:local align:4
|
||||
@107430 = .rodata:0x0000029C; // type:object size:0x4 scope:local align:4
|
||||
@107431 = .rodata:0x000002A0; // type:object size:0x4 scope:local align:4
|
||||
@107432 = .rodata:0x000002A4; // type:object size:0x4 scope:local align:4
|
||||
@107433 = .rodata:0x000002A8; // type:object size:0x4 scope:local align:4
|
||||
@107434 = .rodata:0x000002AC; // type:object size:0x4 scope:local align:4
|
||||
@107435 = .rodata:0x000002B0; // type:object size:0x4 scope:local align:4
|
||||
@107436 = .rodata:0x000002B4; // type:object size:0x4 scope:local align:4
|
||||
@107437 = .rodata:0x000002B8; // type:object size:0x4 scope:local align:4
|
||||
@107438 = .rodata:0x000002BC; // type:object size:0x4 scope:local align:4
|
||||
@107439 = .rodata:0x000002C0; // type:object size:0x4 scope:local align:4
|
||||
@107440 = .rodata:0x000002C4; // type:object size:0x4 scope:local align:4
|
||||
@107441 = .rodata:0x000002C8; // type:object size:0x4 scope:local align:4
|
||||
@107442 = .rodata:0x000002CC; // type:object size:0x4 scope:local align:4
|
||||
@107443 = .rodata:0x000002D0; // type:object size:0x4 scope:local align:4
|
||||
@107551 = .rodata:0x000002D4; // type:object size:0x4 scope:local align:4
|
||||
@107552 = .rodata:0x000002D8; // type:object size:0x4 scope:local align:4
|
||||
@107553 = .rodata:0x000002DC; // type:object size:0x4 scope:local align:4 data:string
|
||||
@107554 = .rodata:0x000002E0; // type:object size:0x4 scope:local align:4
|
||||
@107555 = .rodata:0x000002E4; // type:object size:0x4 scope:local align:4
|
||||
@107556 = .rodata:0x000002E8; // type:object size:0x4 scope:local align:4
|
||||
@107557 = .rodata:0x000002EC; // type:object size:0x4 scope:local align:4
|
||||
@108129 = .rodata:0x000002F0; // type:object size:0x4 scope:local align:4
|
||||
@108130 = .rodata:0x000002F4; // type:object size:0x4 scope:local align:4
|
||||
@108131 = .rodata:0x000002F8; // type:object size:0x4 scope:local align:4
|
||||
@108132 = .rodata:0x000002FC; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
iso_eff$94305 = .data:0x00000006; // type:object size:0xA scope:local align:2
|
||||
buf_p = .data:0x00000010; // type:object size:0x4C scope:global align:4
|
||||
size_p = .data:0x0000005C; // type:object size:0x4C scope:global align:4
|
||||
ex_eff$94871 = .data:0x000000A8; // type:object size:0xA scope:local align:4
|
||||
iso_eff$94958 = .data:0x000000B2; // type:object size:0x8 scope:local align:2
|
||||
@107445 = .data:0x000000BC; // type:object size:0xF8 scope:local align:4
|
||||
iso_eff$95269 = .data:0x000001B4; // type:object size:0xA scope:local align:4
|
||||
iso_eff$95283 = .data:0x000001BE; // type:object size:0x6 scope:local align:2
|
||||
iso_eff$95294 = .data:0x000001C4; // type:object size:0x8 scope:local align:4
|
||||
p_bmd$95412 = .data:0x000001CC; // type:object size:0x4C scope:local align:4
|
||||
cc_sph_src$95622 = .data:0x00000218; // type:object size:0x40 scope:local align:4
|
||||
body_sph_src$95623 = .data:0x00000258; // type:object size:0x40 scope:local align:4
|
||||
parts_sph_src$95624 = .data:0x00000298; // type:object size:0x40 scope:local align:4
|
||||
core_sph_src$95625 = .data:0x000002D8; // type:object size:0x40 scope:local align:4
|
||||
l_daB_OB_Method = .data:0x00000318; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_OB = .data:0x00000338; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_OB_HIO_c = .data:0x00000368; // type:object size:0xC scope:global align:4
|
||||
lbl_149_data_374 = .data:0x00000374; // type:object size:0xD data:string
|
||||
@95706 = .data:0x00000384; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_OB_HIO_c = .data:0x00000390; // type:object size:0x8 scope:global align:4
|
||||
lbl_149_data_398 = .data:0x00000398; // type:object size:0x34
|
||||
@95769 = .data:0x000003CC; // type:object size:0x3C scope:local align:4
|
||||
lbl_149_data_408 = .data:0x00000408; // type:object size:0x14
|
||||
@95771 = .data:0x0000041C; // type:object size:0x34 scope:local align:4
|
||||
__vt__18mDoExt_3DlineMat_c = .data:0x00000458; // type:object size:0x14 scope:global align:4
|
||||
lbl_149_data_46C = .data:0x0000046C; // type:object size:0x28
|
||||
@95829 = .data:0x00000494; // type:object size:0x24 scope:local align:4
|
||||
lbl_149_data_4B8 = .data:0x000004B8; // type:object size:0x18
|
||||
@95831 = .data:0x000004D0; // type:object size:0xC scope:local align:4
|
||||
lbl_149_data_4DC = .data:0x000004DC; // type:object size:0x1C
|
||||
@95833 = .data:0x000004F8; // type:object size:0xC scope:local align:4
|
||||
lbl_149_data_504 = .data:0x00000504; // type:object size:0xCC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
moveSW = .bss:0x0000000C; // type:object size:0x4 scope:global align:4
|
||||
moveSW2 = .bss:0x00000010; // type:object size:0x4 scope:global align:4
|
||||
@93293 = .bss:0x00000014; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000020; // type:object size:0x20 scope:global align:4 data:byte
|
||||
pno = .bss:0x00000040; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
fin = .bss:0x00000044; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
bf_ct = .bss:0x00000048; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
@94062 = .bss:0x00000050; // type:object size:0xC scope:local align:4
|
||||
@94063 = .bss:0x0000005C; // type:object size:0xC scope:local align:4
|
||||
@94064 = .bss:0x00000068; // type:object size:0xC scope:local align:4
|
||||
@94065 = .bss:0x00000074; // type:object size:0xC scope:local align:4
|
||||
sdemo_p$94059 = .bss:0x00000080; // type:object size:0x30 scope:local align:4
|
||||
@94875 = .bss:0x000000B4; // type:object size:0xC scope:local align:4
|
||||
room_pos$94872 = .bss:0x000000C0; // type:object size:0xC scope:local align:4
|
||||
@94879 = .bss:0x000000D0; // type:object size:0xC scope:local align:4
|
||||
sc$94876 = .bss:0x000000DC; // type:object size:0xC scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_oh.cpp:
|
||||
.text start:0x000000CC end:0x00001DA8
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000000A0
|
||||
.data start:0x00000000 end:0x000000F8
|
||||
.bss start:0x00000008 end:0x00000030
|
||||
@@ -1,73 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_OH_HIO_cFv = .text:0x000000CC; // type:function size:0x30 scope:global align:4
|
||||
nodeCallBack__FP8J3DJointi = .text:0x000000FC; // type:function size:0x12C scope:global align:4
|
||||
daB_OH_Draw__FP10b_oh_class = .text:0x00000228; // type:function size:0xAC scope:global align:4
|
||||
daB_OH_Execute__FP10b_oh_class = .text:0x000002D4; // type:function size:0x141C scope:global align:4
|
||||
daB_OH_IsDelete__FP10b_oh_class = .text:0x000016F0; // type:function size:0x8 scope:global align:4
|
||||
daB_OH_Delete__FP10b_oh_class = .text:0x000016F8; // type:function size:0x54 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x0000174C; // type:function size:0x2C8 scope:global align:4
|
||||
daB_OH_Create__FP10fopAc_ac_c = .text:0x00001A14; // type:function size:0x30C scope:global align:4
|
||||
__dt__12daB_OH_HIO_cFv = .text:0x00001D20; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_oh_cpp = .text:0x00001D60; // type:function size:0x48 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@94375 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@94376 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@94403 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@94679 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@94680 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@94681 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@94682 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@94683 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@94684 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@94685 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@94686 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@94687 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@94688 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@94689 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@94690 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@94691 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@94692 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@94693 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@94694 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@94695 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@94696 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@94697 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@94698 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@94699 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@94700 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@94701 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4 data:string
|
||||
@94702 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@94703 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@94704 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@94705 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@94706 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@94707 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@94708 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@94709 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@94710 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@94711 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@94716 = .rodata:0x00000090; // type:object size:0x8 scope:local align:4
|
||||
@94840 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@94893 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@94713 = .data:0x00000000; // type:object size:0x30 scope:local align:4
|
||||
lbl_150_data_30 = .data:0x00000030; // type:object size:0x5 data:string
|
||||
cc_sph_src$92237 = .data:0x00000038; // type:object size:0x40 scope:local align:4
|
||||
l_daB_OH_Method = .data:0x00000078; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_OH = .data:0x00000098; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_OH_HIO_c = .data:0x000000C8; // type:object size:0xC scope:global align:4
|
||||
lbl_150_data_D4 = .data:0x000000D4; // type:object size:0xD data:string
|
||||
@92283 = .data:0x000000E4; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_OH_HIO_c = .data:0x000000F0; // type:object size:0x8 scope:global align:4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@91729 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x10 scope:global align:4 data:byte
|
||||
boss = .bss:0x00000028; // type:object size:0x4 scope:global align:4
|
||||
Cinit = .bss:0x0000002C; // type:object size:0x4 scope:global align:4
|
||||
@@ -1,16 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_b_oh2.cpp:
|
||||
.text start:0x0000005C end:0x00000BE4
|
||||
.rodata start:0x00000000 end:0x0000004C
|
||||
.data start:0x00000000 end:0x00000058
|
||||
.bss start:0x00000000 end:0x00000004
|
||||
@@ -1,34 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
nodeCallBack__FP8J3DJointi = .text:0x0000005C; // type:function size:0xDC scope:global align:4
|
||||
daB_OH2_Draw__FP11b_oh2_class = .text:0x00000138; // type:function size:0x98 scope:global align:4
|
||||
daB_OH2_Execute__FP11b_oh2_class = .text:0x000001D0; // type:function size:0x578 scope:global align:4
|
||||
daB_OH2_IsDelete__FP11b_oh2_class = .text:0x00000748; // type:function size:0x8 scope:global align:4
|
||||
daB_OH2_Delete__FP11b_oh2_class = .text:0x00000750; // type:function size:0x50 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x000007A0; // type:function size:0x2C4 scope:global align:4
|
||||
daB_OH2_Create__FP10fopAc_ac_c = .text:0x00000A64; // type:function size:0x180 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@93255 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@93292 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@93347 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@93348 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@93349 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@93350 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@93351 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@93352 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@93353 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@93354 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@93355 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@93358 = .rodata:0x00000030; // type:object size:0x8 scope:local align:4
|
||||
@93479 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@93480 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@93514 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@93515 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@93516 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
lbl_151_data_0 = .data:0x00000000; // type:object size:0x5 data:string
|
||||
l_daB_OH2_Method = .data:0x00000008; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_OH2 = .data:0x00000028; // type:object size:0x30 scope:global align:4
|
||||
boss = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_tn.cpp:
|
||||
.text start:0x000000CC end:0x0000E7AC
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x0000028C
|
||||
.data start:0x00000000 end:0x00000890
|
||||
.bss start:0x00000008 end:0x000002F0
|
||||
@@ -1,328 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
absXZ__4cXyzCFRC3Vec = .text:0x000000CC; // type:function size:0x74 scope:global align:4
|
||||
__ct__12daB_TN_HIO_cFv = .text:0x00000140; // type:function size:0x6C scope:global align:4
|
||||
ctrlJoint__8daB_TN_cFP8J3DJointP8J3DModel = .text:0x000001AC; // type:function size:0xAC scope:global align:4
|
||||
JointCallBack__8daB_TN_cFP8J3DJointi = .text:0x00000258; // type:function size:0x48 scope:global align:4
|
||||
calcNeckAngle__8daB_TN_cFv = .text:0x000002A0; // type:function size:0xB8 scope:global align:4
|
||||
calcWaistAngle__8daB_TN_cFv = .text:0x00000358; // type:function size:0xB4 scope:global align:4
|
||||
draw__8daB_TN_cFv = .text:0x0000040C; // type:function size:0x308 scope:global align:4
|
||||
daB_TN_Draw__FP8daB_TN_c = .text:0x00000714; // type:function size:0x4 scope:global align:4
|
||||
setBreakPart__8daB_TN_cFi = .text:0x00000718; // type:function size:0x11C scope:global align:4
|
||||
setBreakHeadPart__8daB_TN_cFi = .text:0x00000834; // type:function size:0xB0 scope:global align:4
|
||||
setPartLandEffect__8daB_TN_cFii = .text:0x000008E4; // type:function size:0x154 scope:global align:4
|
||||
calcShieldMove__8daB_TN_cFv = .text:0x00000A38; // type:function size:0x540 scope:global align:4
|
||||
calcSwordMoveA__8daB_TN_cFv = .text:0x00000F78; // type:function size:0x3F0 scope:global align:4
|
||||
calcSwordMoveB__8daB_TN_cFv = .text:0x00001368; // type:function size:0x228 scope:global align:4
|
||||
calcOtherPartMove__8daB_TN_cFi = .text:0x00001590; // type:function size:0x78C scope:global align:4
|
||||
calcPartMove__8daB_TN_cFv = .text:0x00001D1C; // type:function size:0x1AC scope:global align:4
|
||||
checkBck__8daB_TN_cFi = .text:0x00001EC8; // type:function size:0x5C scope:global align:4
|
||||
setActionMode__8daB_TN_cFii = .text:0x00001F24; // type:function size:0x18 scope:global align:4
|
||||
setSwordAtBit__8daB_TN_cFi = .text:0x00001F3C; // type:function size:0x104 scope:global align:4
|
||||
setSwordAtBreak__8daB_TN_cFi = .text:0x00002040; // type:function size:0x68 scope:global align:4
|
||||
setBodyShield__8daB_TN_cFv = .text:0x000020A8; // type:function size:0x32C scope:global align:4
|
||||
checkNormalAttackAble__8daB_TN_cFv = .text:0x000023D4; // type:function size:0x110 scope:global align:4
|
||||
getCutType__8daB_TN_cFv = .text:0x000024E4; // type:function size:0xD0 scope:global align:4
|
||||
setDamage__8daB_TN_cFP8dCcD_Sphi = .text:0x000025B4; // type:function size:0x31C scope:global align:4
|
||||
setShieldEffect__8daB_TN_cFP8dCcD_Sph = .text:0x000028D0; // type:function size:0x70 scope:global align:4
|
||||
damage_check__8daB_TN_cFv = .text:0x00002940; // type:function size:0xB2C scope:global align:4
|
||||
checkMoveArea__8daB_TN_cFv = .text:0x0000346C; // type:function size:0x9C scope:global align:4
|
||||
checkMoveAngle__8daB_TN_cFv = .text:0x00003508; // type:function size:0x7C scope:global align:4
|
||||
setAttackBlurEffect__8daB_TN_cFi = .text:0x00003584; // type:function size:0x104 scope:global align:4
|
||||
setArmorBreakEffect__8daB_TN_cFi = .text:0x00003688; // type:function size:0xF0 scope:global align:4
|
||||
s_obj_sub__FPvPv = .text:0x00003778; // type:function size:0x170 scope:global align:4
|
||||
demo_skip__8daB_TN_cFi = .text:0x000038E8; // type:function size:0x1F0 scope:global align:4
|
||||
DemoSkipCallBack__8daB_TN_cFPvi = .text:0x00003AD8; // type:function size:0x34 scope:global align:4
|
||||
executeRoomDemo__8daB_TN_cFv = .text:0x00003B0C; // type:function size:0x6D0 scope:global align:4
|
||||
executeOpening__8daB_TN_cFv = .text:0x000041DC; // type:function size:0xB44 scope:global align:4
|
||||
executeWaitH__8daB_TN_cFv = .text:0x00004D20; // type:function size:0x11C scope:global align:4
|
||||
setAwaitSound__8daB_TN_cFv = .text:0x00004E3C; // type:function size:0xB8 scope:global align:4
|
||||
executeChaseH__8daB_TN_cFv = .text:0x00004EF4; // type:function size:0xDF8 scope:global align:4
|
||||
checkStartAttackH__8daB_TN_cFv = .text:0x00005CEC; // type:function size:0x280 scope:global align:4
|
||||
executeAttackH__8daB_TN_cFv = .text:0x00005F6C; // type:function size:0x6DC scope:global align:4
|
||||
executeAttackShieldH__8daB_TN_cFv = .text:0x00006648; // type:function size:0x1E8 scope:global align:4
|
||||
executeGuardH__8daB_TN_cFv = .text:0x00006830; // type:function size:0x214 scope:global align:4
|
||||
executeDamageH__8daB_TN_cFv = .text:0x00006A44; // type:function size:0x330 scope:global align:4
|
||||
executeChangeDemo__8daB_TN_cFv = .text:0x00006D74; // type:function size:0xD3C scope:global align:4
|
||||
executeZakoChangeDemo__8daB_TN_cFv = .text:0x00007AB0; // type:function size:0x6CC scope:global align:4
|
||||
setWalkDir__8daB_TN_cFv = .text:0x0000817C; // type:function size:0x20C scope:global align:4
|
||||
initChaseL__8daB_TN_cFi = .text:0x00008388; // type:function size:0x544 scope:global align:4
|
||||
checkAttackAble__8daB_TN_cFv = .text:0x000088CC; // type:function size:0x80 scope:global align:4
|
||||
checkNextMove__8daB_TN_cFv = .text:0x0000894C; // type:function size:0x654 scope:global align:4
|
||||
executeChaseL__8daB_TN_cFv = .text:0x00008FA0; // type:function size:0xC18 scope:global align:4
|
||||
executeAttackL__8daB_TN_cFv = .text:0x00009BB8; // type:function size:0xB84 scope:global align:4
|
||||
executeAttackShieldL__8daB_TN_cFv = .text:0x0000A73C; // type:function size:0x2B4 scope:global align:4
|
||||
executeGuardL__8daB_TN_cFv = .text:0x0000A9F0; // type:function size:0x500 scope:global align:4
|
||||
executeDamageL__8daB_TN_cFv = .text:0x0000AEF0; // type:function size:0x374 scope:global align:4
|
||||
executeYoroke__8daB_TN_cFv = .text:0x0000B264; // type:function size:0x284 scope:global align:4
|
||||
executeEnding__8daB_TN_cFv = .text:0x0000B4E8; // type:function size:0x930 scope:global align:4
|
||||
executeZakoEnding__8daB_TN_cFv = .text:0x0000BE18; // type:function size:0x354 scope:global align:4
|
||||
action__8daB_TN_cFv = .text:0x0000C16C; // type:function size:0x3A8 scope:global align:4
|
||||
mtx_set__8daB_TN_cFv = .text:0x0000C514; // type:function size:0x36C scope:global align:4
|
||||
cc_set__8daB_TN_cFv = .text:0x0000C880; // type:function size:0x740 scope:global align:4
|
||||
execute__8daB_TN_cFv = .text:0x0000CFC0; // type:function size:0x4A4 scope:global align:4
|
||||
daB_TN_Execute__FP8daB_TN_c = .text:0x0000D464; // type:function size:0x4 scope:global align:4
|
||||
daB_TN_IsDelete__FP8daB_TN_c = .text:0x0000D468; // type:function size:0x8 scope:global align:4
|
||||
_delete__8daB_TN_cFv = .text:0x0000D470; // type:function size:0x80 scope:global align:4
|
||||
daB_TN_Delete__FP8daB_TN_c = .text:0x0000D4F0; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__8daB_TN_cFv = .text:0x0000D4F4; // type:function size:0x478 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x0000D96C; // type:function size:0x4 scope:global align:4
|
||||
create__8daB_TN_cFv = .text:0x0000D970; // type:function size:0x724 scope:global align:4
|
||||
daB_TN_Create__FP8daB_TN_c = .text:0x0000E094; // type:function size:0x4 scope:global align:4
|
||||
__dt__12daB_TN_HIO_cFv = .text:0x0000E098; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_tn_cpp = .text:0x0000E0D8; // type:function size:0x4E8 scope:global align:4
|
||||
__as__8dCcD_SphFRC8dCcD_Sph = .text:0x0000E5C0; // type:function size:0x19C scope:global align:4
|
||||
__as__18cCcD_ObjCommonBaseFRC18cCcD_ObjCommonBase = .text:0x0000E75C; // type:function size:0x1C scope:global align:4
|
||||
__as__22dCcD_GAtTgCoCommonBaseFRC22dCcD_GAtTgCoCommonBase = .text:0x0000E778; // type:function size:0x34 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@108433 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@108434 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@108435 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@108436 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@108437 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@108438 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@108439 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@108440 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@108441 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108586 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@108587 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@108588 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108727 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@108728 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@108729 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@108730 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@108731 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@108732 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@108733 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@108734 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@108735 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@108736 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@108737 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108740 = .rodata:0x00000060; // type:object size:0x8 scope:local align:4 data:double
|
||||
@108803 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@108804 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@108805 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@108806 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@108807 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@108911 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108912 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@108913 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@108914 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109131 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109591 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@109592 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@109593 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@109693 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@109694 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@109715 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@109716 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@109717 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@109718 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@109719 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@109720 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@109721 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@109722 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@109798 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@109799 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@109800 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@109801 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@109802 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109803 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@109804 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@109805 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@109806 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@109807 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@109808 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@109809 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@109810 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@109811 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@109812 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@110012 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@110013 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@110014 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@110015 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@110016 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@110017 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@110018 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@110019 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@110020 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@110021 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@110022 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@110023 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@110024 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@110025 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@110026 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@110027 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@110028 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@110029 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@110030 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@110031 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@110032 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@110033 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@110034 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@110035 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@110036 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@110091 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110092 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110270 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@110271 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@110272 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@110273 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@110274 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@110466 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@110467 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@110468 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@110469 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@110470 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@110471 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@110472 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@110504 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@110505 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@110506 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@110831 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@110832 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@110833 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@110834 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@110835 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@110836 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@110837 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@110838 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@110839 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@110945 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@110980 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@111058 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@111059 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@111149 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@111150 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@111151 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@111342 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@111343 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@111344 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@111559 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@111560 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@111561 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
@111562 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4
|
||||
@111563 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4
|
||||
@111619 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4
|
||||
@111766 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4
|
||||
@111960 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4
|
||||
@111961 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4
|
||||
@111962 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4
|
||||
@111963 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4
|
||||
@111964 = .rodata:0x00000220; // type:object size:0x4 scope:local align:4
|
||||
@111965 = .rodata:0x00000224; // type:object size:0x4 scope:local align:4
|
||||
@111966 = .rodata:0x00000228; // type:object size:0x4 scope:local align:4
|
||||
@111967 = .rodata:0x0000022C; // type:object size:0x4 scope:local align:4
|
||||
@111968 = .rodata:0x00000230; // type:object size:0x4 scope:local align:4
|
||||
@111969 = .rodata:0x00000234; // type:object size:0x4 scope:local align:4
|
||||
@111970 = .rodata:0x00000238; // type:object size:0x4 scope:local align:4
|
||||
@111971 = .rodata:0x0000023C; // type:object size:0x4 scope:local align:4
|
||||
@112023 = .rodata:0x00000240; // type:object size:0x4 scope:local align:4
|
||||
@112072 = .rodata:0x00000244; // type:object size:0x4 scope:local align:4
|
||||
@112073 = .rodata:0x00000248; // type:object size:0x4 scope:local align:4
|
||||
@112134 = .rodata:0x0000024C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@112135 = .rodata:0x00000250; // type:object size:0x4 scope:local align:4
|
||||
@112136 = .rodata:0x00000254; // type:object size:0x4 scope:local align:4
|
||||
@112258 = .rodata:0x00000258; // type:object size:0x4 scope:local align:4
|
||||
@112259 = .rodata:0x0000025C; // type:object size:0x4 scope:local align:4
|
||||
@112260 = .rodata:0x00000260; // type:object size:0x4 scope:local align:4
|
||||
@112261 = .rodata:0x00000264; // type:object size:0x4 scope:local align:4
|
||||
@112363 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@112364 = .rodata:0x0000026C; // type:object size:0x4 scope:local align:4
|
||||
@112641 = .rodata:0x00000270; // type:object size:0x8 scope:local align:4
|
||||
@112693 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@112694 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@112695 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@112696 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
@112697 = .rodata:0x00000288; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
eff_id$94344 = .data:0x00000010; // type:object size:0x6 scope:local align:4
|
||||
cc_tt_src__22@unnamed@d_a_b_tn_cpp@ = .data:0x00000018; // type:object size:0x40 scope:global align:4
|
||||
cc_tt_src2__22@unnamed@d_a_b_tn_cpp@ = .data:0x00000058; // type:object size:0x40 scope:global align:4
|
||||
cc_bomb_src__22@unnamed@d_a_b_tn_cpp@ = .data:0x00000098; // type:object size:0x40 scope:global align:4
|
||||
cc_tt_at_src__22@unnamed@d_a_b_tn_cpp@ = .data:0x000000D8; // type:object size:0x40 scope:global align:4
|
||||
cc_tt_at_cps_src__22@unnamed@d_a_b_tn_cpp@ = .data:0x00000118; // type:object size:0x4C scope:global align:4
|
||||
cc_tt_tate_src__22@unnamed@d_a_b_tn_cpp@ = .data:0x00000164; // type:object size:0x40 scope:global align:4
|
||||
cc_part_src__22@unnamed@d_a_b_tn_cpp@ = .data:0x000001A4; // type:object size:0x40 scope:global align:4
|
||||
lbl_152_data_1E4 = .data:0x000001E4; // type:object size:0x20
|
||||
tn_part_model_id__22@unnamed@d_a_b_tn_cpp@ = .data:0x00000204; // type:object size:0x80 scope:global align:4
|
||||
tn_part_joint__22@unnamed@d_a_b_tn_cpp@ = .data:0x00000284; // type:object size:0x40 scope:global align:4
|
||||
ground_y_part__22@unnamed@d_a_b_tn_cpp@ = .data:0x000002C4; // type:object size:0x40 scope:global align:4 data:float
|
||||
break_part_no$94551 = .data:0x00000304; // type:object size:0x34 scope:local align:4
|
||||
break_part_no2$94588 = .data:0x00000338; // type:object size:0x34 scope:local align:4
|
||||
break_part_vib$94624 = .data:0x0000036C; // type:object size:0x40 scope:local align:4
|
||||
@108916 = .data:0x000003AC; // type:object size:0x20 scope:local align:4
|
||||
lbl_152_data_3CC = .data:0x000003CC; // type:object size:0x5 data:string
|
||||
@109183 = .data:0x000003D4; // type:object size:0x9C scope:local align:4
|
||||
blur_effect_id$95670 = .data:0x00000470; // type:object size:0x8 scope:local align:4
|
||||
blur_effect_id$95689 = .data:0x00000478; // type:object size:0x6 scope:local align:4
|
||||
@109814 = .data:0x00000480; // type:object size:0x44 scope:local align:4
|
||||
@110038 = .data:0x000004C4; // type:object size:0x54 scope:local align:4
|
||||
@111061 = .data:0x00000518; // type:object size:0x48 scope:local align:4
|
||||
@111346 = .data:0x00000560; // type:object size:0x48 scope:local align:4
|
||||
@112076 = .data:0x000005A8; // type:object size:0x40 scope:local align:4
|
||||
tn2_brk_index$98670 = .data:0x000005E8; // type:object size:0xC scope:local align:4
|
||||
lbl_152_data_5F4 = .data:0x000005F4; // type:object size:0x14
|
||||
l_daB_TN_Method = .data:0x00000608; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_TN = .data:0x00000628; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_TN_HIO_c = .data:0x00000658; // type:object size:0xC scope:global align:4
|
||||
lbl_152_data_664 = .data:0x00000664; // type:object size:0xD data:string
|
||||
@98859 = .data:0x00000674; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_TN_HIO_c = .data:0x00000680; // type:object size:0x8 scope:global align:4
|
||||
lbl_152_data_688 = .data:0x00000688; // type:object size:0x34
|
||||
@98922 = .data:0x000006BC; // type:object size:0x3C scope:local align:4
|
||||
lbl_152_data_6F8 = .data:0x000006F8; // type:object size:0x14
|
||||
@98924 = .data:0x0000070C; // type:object size:0x34 scope:local align:4
|
||||
lbl_152_data_740 = .data:0x00000740; // type:object size:0x14
|
||||
@98982 = .data:0x00000754; // type:object size:0x24 scope:local align:4
|
||||
lbl_152_data_778 = .data:0x00000778; // type:object size:0x18
|
||||
@98984 = .data:0x00000790; // type:object size:0xC scope:local align:4
|
||||
lbl_152_data_79C = .data:0x0000079C; // type:object size:0x1C
|
||||
@98986 = .data:0x000007B8; // type:object size:0xC scope:local align:4
|
||||
lbl_152_data_7C4 = .data:0x000007C4; // type:object size:0xCC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@94387 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x30 scope:global align:4 data:byte
|
||||
@94392 = .bss:0x00000048; // type:object size:0xC scope:local align:4
|
||||
@94393 = .bss:0x00000054; // type:object size:0xC scope:local align:4
|
||||
@94394 = .bss:0x00000060; // type:object size:0xC scope:local align:4
|
||||
@94395 = .bss:0x0000006C; // type:object size:0xC scope:local align:4
|
||||
@94396 = .bss:0x00000078; // type:object size:0xC scope:local align:4
|
||||
@94397 = .bss:0x00000084; // type:object size:0xC scope:local align:4
|
||||
@94398 = .bss:0x00000090; // type:object size:0xC scope:local align:4
|
||||
@94399 = .bss:0x0000009C; // type:object size:0xC scope:local align:4
|
||||
@94400 = .bss:0x000000A8; // type:object size:0xC scope:local align:4
|
||||
@94401 = .bss:0x000000B4; // type:object size:0xC scope:local align:4
|
||||
@94402 = .bss:0x000000C0; // type:object size:0xC scope:local align:4
|
||||
@94403 = .bss:0x000000CC; // type:object size:0xC scope:local align:4
|
||||
@94404 = .bss:0x000000D8; // type:object size:0xC scope:local align:4
|
||||
@94405 = .bss:0x000000E4; // type:object size:0xC scope:local align:4
|
||||
@94406 = .bss:0x000000F0; // type:object size:0xC scope:local align:4
|
||||
@94407 = .bss:0x000000FC; // type:object size:0xC scope:local align:4
|
||||
offset_part__22@unnamed@d_a_b_tn_cpp@ = .bss:0x00000108; // type:object size:0xC0 scope:global align:4
|
||||
@94408 = .bss:0x000001C8; // type:object size:0xC scope:local align:4
|
||||
@94409 = .bss:0x000001D4; // type:object size:0xC scope:local align:4
|
||||
@94410 = .bss:0x000001E0; // type:object size:0xC scope:local align:4
|
||||
@94411 = .bss:0x000001EC; // type:object size:0xC scope:local align:4
|
||||
@94412 = .bss:0x000001F8; // type:object size:0xC scope:local align:4
|
||||
@94413 = .bss:0x00000204; // type:object size:0xC scope:local align:4
|
||||
@94414 = .bss:0x00000210; // type:object size:0xC scope:local align:4
|
||||
@94415 = .bss:0x0000021C; // type:object size:0xC scope:local align:4
|
||||
@94416 = .bss:0x00000228; // type:object size:0xC scope:local align:4
|
||||
@94417 = .bss:0x00000234; // type:object size:0xC scope:local align:4
|
||||
@94418 = .bss:0x00000240; // type:object size:0xC scope:local align:4
|
||||
@94419 = .bss:0x0000024C; // type:object size:0xC scope:local align:4
|
||||
@94420 = .bss:0x00000258; // type:object size:0xC scope:local align:4
|
||||
@94421 = .bss:0x00000264; // type:object size:0xC scope:local align:4
|
||||
@94422 = .bss:0x00000270; // type:object size:0xC scope:local align:4
|
||||
@94423 = .bss:0x0000027C; // type:object size:0xC scope:local align:4
|
||||
ground_angle_part__22@unnamed@d_a_b_tn_cpp@ = .bss:0x00000288; // type:object size:0x60 scope:global align:4 data:2byte
|
||||
m_attack_tn = .bss:0x000002E8; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
m_attack_timer = .bss:0x000002EC; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_yo.cpp:
|
||||
.text start:0x000000CC end:0x00009030
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000220
|
||||
.data start:0x00000000 end:0x000006B0
|
||||
.bss start:0x00000008 end:0x0000008C
|
||||
@@ -1,263 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__12daB_YO_HIO_cFv = .text:0x000000CC; // type:function size:0xB0 scope:global align:4
|
||||
draw__8daB_YO_cFv = .text:0x0000017C; // type:function size:0x58C scope:global align:4
|
||||
daB_YO_Draw__FP8daB_YO_c = .text:0x00000708; // type:function size:0x4 scope:global align:4
|
||||
onIceBreak__8daB_YO_cFUs = .text:0x0000070C; // type:function size:0x18 scope:global align:4
|
||||
setBck__8daB_YO_cFiUcff = .text:0x00000724; // type:function size:0x200 scope:global align:4
|
||||
damage_check__8daB_YO_cFv = .text:0x00000924; // type:function size:0x2D4 scope:global align:4
|
||||
setBreakFrizad__8daB_YO_cFv = .text:0x00000BF8; // type:function size:0x138 scope:global align:4
|
||||
setIcicleOperate__8daB_YO_cFi = .text:0x00000D30; // type:function size:0x88 scope:global align:4
|
||||
setIcicleSubNumber__8daB_YO_cFv = .text:0x00000DB8; // type:function size:0x7C scope:global align:4
|
||||
setWindowBreakEffect__8daB_YO_cFi = .text:0x00000E34; // type:function size:0xD8 scope:global align:4
|
||||
setHensinEffect__8daB_YO_cFv = .text:0x00000F0C; // type:function size:0x184 scope:global align:4
|
||||
setLandingEffect__8daB_YO_cFf = .text:0x00001090; // type:function size:0x154 scope:global align:4
|
||||
setBreakIceEffect__8daB_YO_cFv = .text:0x000011E4; // type:function size:0x1B4 scope:global align:4
|
||||
setWallHitEffect__8daB_YO_cFv = .text:0x00001398; // type:function size:0x208 scope:global align:4
|
||||
setChillEffect__8daB_YO_cFv = .text:0x000015A0; // type:function size:0x144 scope:global align:4
|
||||
setApperEffect__8daB_YO_cFv = .text:0x000016E4; // type:function size:0xAC scope:global align:4
|
||||
setApperEffect2__8daB_YO_cFv = .text:0x00001790; // type:function size:0xC0 scope:global align:4
|
||||
s_frizad_delete__FPvPv = .text:0x00001850; // type:function size:0x6C scope:global align:4
|
||||
demo_skip__8daB_YO_cFi = .text:0x000018BC; // type:function size:0x60 scope:global align:4
|
||||
DemoSkipCallBack__8daB_YO_cFPvi = .text:0x0000191C; // type:function size:0x34 scope:global align:4
|
||||
doYoMessage__8daB_YO_cFv = .text:0x00001950; // type:function size:0x7C scope:global align:4
|
||||
executeOpening__8daB_YO_cFv = .text:0x000019CC; // type:function size:0x1588 scope:global align:4
|
||||
reflectFreeMove__8daB_YO_cFv = .text:0x00002F54; // type:function size:0xC8 scope:global align:4
|
||||
calcFreeMove__8daB_YO_cFf = .text:0x0000301C; // type:function size:0x2AC scope:global align:4
|
||||
setReflectAngle__8daB_YO_cFv = .text:0x000032C8; // type:function size:0xC0 scope:global align:4
|
||||
executeChase__8daB_YO_cFv = .text:0x00003388; // type:function size:0x6F4 scope:global align:4
|
||||
executeSeriousDemo__8daB_YO_cFv = .text:0x00003A7C; // type:function size:0xA80 scope:global align:4
|
||||
checkIcecleRevival__8daB_YO_cFv = .text:0x000044FC; // type:function size:0x68 scope:global align:4
|
||||
createIcecleRevival__8daB_YO_cFUc = .text:0x00004564; // type:function size:0xF0 scope:global align:4
|
||||
executeJump__8daB_YO_cFv = .text:0x00004654; // type:function size:0x3DC scope:global align:4
|
||||
executeAttackIce__8daB_YO_cFv = .text:0x00004A30; // type:function size:0x224 scope:global align:4
|
||||
executeAttackYose__8daB_YO_cFv = .text:0x00004C54; // type:function size:0x434 scope:global align:4
|
||||
checkDamageWithIceBreak__8daB_YO_cFv = .text:0x00005088; // type:function size:0x11C scope:global align:4
|
||||
executeAttackBody__8daB_YO_cFv = .text:0x000051A4; // type:function size:0x478 scope:global align:4
|
||||
executeDemoRevival__8daB_YO_cFv = .text:0x0000561C; // type:function size:0x488 scope:global align:4
|
||||
executeDamage__8daB_YO_cFv = .text:0x00005AA4; // type:function size:0x318 scope:global align:4
|
||||
executeDeath__8daB_YO_cFv = .text:0x00005DBC; // type:function size:0x11F4 scope:global align:4
|
||||
reviseIceCenterPos__8daB_YO_cFP4cXyz = .text:0x00006FB0; // type:function size:0xA8 scope:global align:4
|
||||
calcPlayerBufPos__8daB_YO_cFv = .text:0x00007058; // type:function size:0x2B4 scope:global align:4
|
||||
action__8daB_YO_cFv = .text:0x0000730C; // type:function size:0x4E4 scope:global align:4
|
||||
mtx_set__8daB_YO_cFv = .text:0x000077F0; // type:function size:0x198 scope:global align:4
|
||||
cc_set__8daB_YO_cFv = .text:0x00007988; // type:function size:0x29C scope:global align:4
|
||||
execute__8daB_YO_cFv = .text:0x00007C24; // type:function size:0x180 scope:global align:4
|
||||
daB_YO_Execute__FP8daB_YO_c = .text:0x00007DA4; // type:function size:0x4 scope:global align:4
|
||||
daB_YO_IsDelete__FP8daB_YO_c = .text:0x00007DA8; // type:function size:0x8 scope:global align:4
|
||||
_delete__8daB_YO_cFv = .text:0x00007DB0; // type:function size:0xFC scope:global align:4
|
||||
daB_YO_Delete__FP8daB_YO_c = .text:0x00007EAC; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__8daB_YO_cFv = .text:0x00007EB0; // type:function size:0x6A0 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00008550; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap2__8daB_YO_cFv = .text:0x00008554; // type:function size:0xE4 scope:global align:4
|
||||
useHeapInit2__FP10fopAc_ac_c = .text:0x00008638; // type:function size:0x4 scope:global align:4
|
||||
create__8daB_YO_cFv = .text:0x0000863C; // type:function size:0x774 scope:global align:4
|
||||
daB_YO_Create__FP8daB_YO_c = .text:0x00008DB0; // type:function size:0x4 scope:global align:4
|
||||
__dt__12daB_YO_HIO_cFv = .text:0x00008DB4; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_yo_cpp = .text:0x00008DF4; // type:function size:0x64 scope:global align:4
|
||||
absXZ__4cXyzCFRC3Vec = .text:0x00008E58; // type:function size:0x74 scope:global align:4
|
||||
setUpdateEnable__8J3DZModeFUc = .text:0x00008ECC; // type:function size:0x50 scope:global align:4
|
||||
setFunc__8J3DZModeFUc = .text:0x00008F1C; // type:function size:0x4C scope:global align:4
|
||||
setCompareEnable__8J3DZModeFUc = .text:0x00008F68; // type:function size:0x50 scope:global align:4
|
||||
calcZModeID__FUcUcUc = .text:0x00008FB8; // type:function size:0x18 scope:global align:4
|
||||
entry__13mDoExt_btkAnmFP12J3DModelData = .text:0x00008FD0; // type:function size:0xC scope:global align:4
|
||||
entry__13mDoExt_brkAnmFP12J3DModelData = .text:0x00008FDC; // type:function size:0xC scope:global align:4
|
||||
setGlobalScale__14JPABaseEmitterFRCQ29JGeometry8TVec3<f> = .text:0x00008FE8; // type:function size:0x24 scope:global align:4
|
||||
setCurrentPos__16obj_ystone_classF4cXyz = .text:0x0000900C; // type:function size:0x8 scope:global align:4
|
||||
setShapeAngle__16obj_ystone_classF5csXyz = .text:0x00009014; // type:function size:0x1C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@101855 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@101856 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@101857 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@101858 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@101859 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@101860 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@101861 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@101862 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@101863 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@101864 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@101865 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@101866 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@101867 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float
|
||||
@101868 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@102016 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@102017 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@102018 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@102128 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@102198 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4 data:float
|
||||
@102199 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@102202 = .rodata:0x00000050; // type:object size:0x8 scope:local align:4
|
||||
@102284 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@102314 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@102607 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@102608 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@102609 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@102610 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@102611 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@102612 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@102613 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@102614 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@102615 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@102616 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@102617 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@102618 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@102619 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@102620 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@102621 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@102622 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@102623 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@102624 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@102625 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@102626 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@102627 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@102628 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@102629 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@102630 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@102631 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@102632 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@102633 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@102634 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@102635 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@102636 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@102637 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@102638 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@102639 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@102640 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@102641 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@102642 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@102643 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@102644 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@102645 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@102646 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@102647 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@102648 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4 data:float
|
||||
@102649 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@102650 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@102651 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@102652 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@102653 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@102654 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@102655 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@102656 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@102657 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@102658 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@102659 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@102660 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@102661 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@102699 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@102700 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@102701 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@102849 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@102850 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@102851 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@102852 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@102856 = .rodata:0x00000158; // type:object size:0x8 scope:local align:4
|
||||
@102961 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4
|
||||
@102962 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4
|
||||
@102963 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@102964 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@102965 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@102966 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@102967 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@102968 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@102969 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@102970 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@102971 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@102972 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@102973 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@102974 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@103085 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@103130 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@103131 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@103169 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4 data:float
|
||||
@103278 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@103279 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@103303 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@103304 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@103491 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@103492 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@103493 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@103494 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@103495 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@103496 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@103497 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@103498 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@103499 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@103500 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@103501 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@103502 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@103503 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@103504 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@103505 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@103506 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@103516 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@103546 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
@103619 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4
|
||||
@103620 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4
|
||||
@103621 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4
|
||||
@103622 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4
|
||||
@103623 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4
|
||||
@103624 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4
|
||||
@103652 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4
|
||||
@103676 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_yo_src__22@unnamed@d_a_b_yo_cpp@ = .data:0x00000000; // type:object size:0x44 scope:global align:4
|
||||
cc_yo_tg_src__22@unnamed@d_a_b_yo_cpp@ = .data:0x00000044; // type:object size:0x40 scope:global align:4
|
||||
cc_yo_iron_src__22@unnamed@d_a_b_yo_cpp@ = .data:0x00000084; // type:object size:0x40 scope:global align:4
|
||||
lbl_153_data_C4 = .data:0x000000C4; // type:object size:0x1C
|
||||
yo_demo_bck_idx = .data:0x000000E0; // type:object size:0x4C scope:global align:4
|
||||
yo_demo_btk_idx = .data:0x0000012C; // type:object size:0x4C scope:global align:4
|
||||
yo_demo_btp_idx = .data:0x00000178; // type:object size:0x4C scope:global align:4
|
||||
lbl_153_data_1C4 = .data:0x000001C4; // type:object size:0x5 data:string
|
||||
yo_window_angle$93795 = .data:0x000001CA; // type:object size:0xC scope:local align:2
|
||||
madoware_effect_id$93796 = .data:0x000001D6; // type:object size:0x8 scope:local align:2
|
||||
hensin_effect_id$93813 = .data:0x000001DE; // type:object size:0x8 scope:local align:2
|
||||
l_landing_effect_id$93842 = .data:0x000001E6; // type:object size:0xC scope:local align:2
|
||||
break_ice_effect_id$93861 = .data:0x000001F2; // type:object size:0x18 scope:local align:2
|
||||
wall_hit_effect_id$93895 = .data:0x0000020A; // type:object size:0xC scope:local align:2
|
||||
chill_effect_id$93934 = .data:0x00000216; // type:object size:0x8 scope:local align:2
|
||||
apper_effect_id$93958 = .data:0x0000021E; // type:object size:0x4 scope:local align:2
|
||||
@102663 = .data:0x00000224; // type:object size:0x70 scope:local align:4
|
||||
yo_max_bound_speed = .data:0x00000294; // type:object size:0x20 scope:global align:4
|
||||
yo_damage_speed = .data:0x000002B4; // type:object size:0x1C scope:global align:4
|
||||
yo_chase_speed = .data:0x000002D0; // type:object size:0x20 scope:global align:4
|
||||
yo_damage_timer = .data:0x000002F0; // type:object size:0x1C scope:global align:4
|
||||
@103208 = .data:0x0000030C; // type:object size:0x2C scope:local align:4
|
||||
lbl_153_data_338 = .data:0x00000338; // type:object size:0xC data:string
|
||||
@103627 = .data:0x00000344; // type:object size:0x20 scope:local align:4
|
||||
@103626 = .data:0x00000364; // type:object size:0x28 scope:local align:4
|
||||
yo_att_pos_y = .data:0x0000038C; // type:object size:0x1C scope:global align:4
|
||||
yo_at_sph_radius$95621 = .data:0x000003A8; // type:object size:0x20 scope:local align:4
|
||||
yo_sph_pos_addy$95628 = .data:0x000003C8; // type:object size:0xC scope:local align:4
|
||||
yo_sph_pos_radius$95629 = .data:0x000003D4; // type:object size:0xC scope:local align:4
|
||||
yo_sph_pos_addy2$95630 = .data:0x000003E0; // type:object size:0xC scope:local align:4
|
||||
lbl_153_data_3EC = .data:0x000003EC; // type:object size:0x1C
|
||||
l_daB_YO_Method = .data:0x00000408; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_YO = .data:0x00000428; // type:object size:0x30 scope:global align:4
|
||||
__vt__12daB_YO_HIO_c = .data:0x00000458; // type:object size:0xC scope:global align:4
|
||||
lbl_153_data_464 = .data:0x00000464; // type:object size:0xD data:string
|
||||
@96109 = .data:0x00000474; // type:object size:0xC scope:local align:4
|
||||
__RTTI__12daB_YO_HIO_c = .data:0x00000480; // type:object size:0x8 scope:global align:4
|
||||
lbl_153_data_488 = .data:0x00000488; // type:object size:0x34
|
||||
@96172 = .data:0x000004BC; // type:object size:0x3C scope:local align:4
|
||||
lbl_153_data_4F8 = .data:0x000004F8; // type:object size:0x14
|
||||
@96174 = .data:0x0000050C; // type:object size:0x34 scope:local align:4
|
||||
lbl_153_data_540 = .data:0x00000540; // type:object size:0x14
|
||||
@96232 = .data:0x00000554; // type:object size:0x24 scope:local align:4
|
||||
lbl_153_data_578 = .data:0x00000578; // type:object size:0x18
|
||||
@96234 = .data:0x00000590; // type:object size:0xC scope:local align:4
|
||||
lbl_153_data_59C = .data:0x0000059C; // type:object size:0x1C
|
||||
@96236 = .data:0x000005B8; // type:object size:0xC scope:local align:4
|
||||
lbl_153_data_5C4 = .data:0x000005C4; // type:object size:0xEC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@93452 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x5C scope:global align:4 data:byte
|
||||
@93457 = .bss:0x00000074; // type:object size:0xC scope:local align:4
|
||||
m_common_pos__22@unnamed@d_a_b_yo_cpp@ = .bss:0x00000080; // type:object size:0xC scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_yo_ice.cpp:
|
||||
.text start:0x000000CC end:0x00003004
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000100
|
||||
.data start:0x00000000 end:0x00000268
|
||||
.bss start:0x00000008 end:0x00000028
|
||||
@@ -1,124 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__13daB_YOI_HIO_cFv = .text:0x000000CC; // type:function size:0x30 scope:global align:4
|
||||
draw__9daB_YOI_cFv = .text:0x000000FC; // type:function size:0x134 scope:global align:4
|
||||
daB_YOI_Draw__FP9daB_YOI_c = .text:0x00000230; // type:function size:0x4 scope:global align:4
|
||||
damage_check__9daB_YOI_cFv = .text:0x00000234; // type:function size:0x190 scope:global align:4
|
||||
setOperate__9daB_YOI_cFi = .text:0x000003C4; // type:function size:0x1C4 scope:global align:4
|
||||
setWeight__9daB_YOI_cFUc = .text:0x00000588; // type:function size:0x10 scope:global align:4
|
||||
setBreakIceEffect__9daB_YOI_cFv = .text:0x00000598; // type:function size:0xB4 scope:global align:4
|
||||
setWallBreakIceEffect__9daB_YOI_cFv = .text:0x0000064C; // type:function size:0xA0 scope:global align:4
|
||||
setApperEffect__9daB_YOI_cFv = .text:0x000006EC; // type:function size:0x8C scope:global align:4
|
||||
setApperEffect2__9daB_YOI_cFv = .text:0x00000778; // type:function size:0xA0 scope:global align:4
|
||||
setLandingEffect__9daB_YOI_cFv = .text:0x00000818; // type:function size:0xA0 scope:global align:4
|
||||
executeFirst__9daB_YOI_cFv = .text:0x000008B8; // type:function size:0x238 scope:global align:4
|
||||
getSingleFallPos__9daB_YOI_cFv = .text:0x00000AF0; // type:function size:0xFC scope:global align:4
|
||||
executeRiseUp__9daB_YOI_cFv = .text:0x00000BEC; // type:function size:0x554 scope:global align:4
|
||||
executeSingleFall__9daB_YOI_cFv = .text:0x00001140; // type:function size:0x6F8 scope:global align:4
|
||||
executeYose__9daB_YOI_cFv = .text:0x00001838; // type:function size:0x484 scope:global align:4
|
||||
executeYoseFall__9daB_YOI_cFv = .text:0x00001CBC; // type:function size:0x35C scope:global align:4
|
||||
executeDemoRevival__9daB_YOI_cFv = .text:0x00002018; // type:function size:0x170 scope:global align:4
|
||||
executeDamage__9daB_YOI_cFv = .text:0x00002188; // type:function size:0x278 scope:global align:4
|
||||
executeDeath__9daB_YOI_cFv = .text:0x00002400; // type:function size:0x84 scope:global align:4
|
||||
crack_execute__9daB_YOI_cFv = .text:0x00002484; // type:function size:0x5C scope:global align:4
|
||||
action__9daB_YOI_cFv = .text:0x000024E0; // type:function size:0x23C scope:global align:4
|
||||
mtx_set__9daB_YOI_cFv = .text:0x0000271C; // type:function size:0xE8 scope:global align:4
|
||||
cc_set__9daB_YOI_cFv = .text:0x00002804; // type:function size:0x184 scope:global align:4
|
||||
execute__9daB_YOI_cFv = .text:0x00002988; // type:function size:0xE0 scope:global align:4
|
||||
daB_YOI_Execute__FP9daB_YOI_c = .text:0x00002A68; // type:function size:0x4 scope:global align:4
|
||||
daB_YOI_IsDelete__FP9daB_YOI_c = .text:0x00002A6C; // type:function size:0x8 scope:global align:4
|
||||
_delete__9daB_YOI_cFv = .text:0x00002A74; // type:function size:0x7C scope:global align:4
|
||||
daB_YOI_Delete__FP9daB_YOI_c = .text:0x00002AF0; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__9daB_YOI_cFv = .text:0x00002AF4; // type:function size:0xA8 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00002B9C; // type:function size:0x4 scope:global align:4
|
||||
create__9daB_YOI_cFv = .text:0x00002BA0; // type:function size:0x35C scope:global align:4
|
||||
daB_YOI_Create__FP9daB_YOI_c = .text:0x00002EFC; // type:function size:0x4 scope:global align:4
|
||||
__dt__13daB_YOI_HIO_cFv = .text:0x00002F00; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_yo_ice_cpp = .text:0x00002F40; // type:function size:0x48 scope:global align:4
|
||||
absXZ__4cXyzCFRC3Vec = .text:0x00002F88; // type:function size:0x74 scope:global align:4
|
||||
getIceCenterPos__8daB_YO_cFv = .text:0x00002FFC; // type:function size:0x8 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@96506 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@96507 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@96563 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@96564 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@96565 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
|
||||
@96661 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float
|
||||
@96662 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@96663 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@96664 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@96665 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@96666 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
yoi_fall_timer = .rodata:0x0000002C; // type:object size:0x28 scope:global align:4
|
||||
@96691 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4 data:float
|
||||
@96745 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@96746 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@96747 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@96748 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@96749 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@96750 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@96751 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@96752 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@96753 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@96754 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@96755 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@96756 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@96757 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@96758 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@96763 = .rodata:0x00000090; // type:object size:0x8 scope:local align:4
|
||||
@96833 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@96834 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@96835 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@96836 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@96837 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@96838 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@96839 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@96840 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@96841 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@96842 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@96843 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@96844 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@96912 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@96913 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@96914 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@96980 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@96994 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@96995 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@96996 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@97011 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@97012 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@97063 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@97064 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@97065 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@97066 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@97067 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_yo_src__26@unnamed@d_a_b_yo_ice_cpp@ = .data:0x00000000; // type:object size:0x44 scope:global align:4
|
||||
cc_yo_iron_src__26@unnamed@d_a_b_yo_ice_cpp@ = .data:0x00000044; // type:object size:0x44 scope:global align:4
|
||||
cc_yo_cam_src__26@unnamed@d_a_b_yo_ice_cpp@ = .data:0x00000088; // type:object size:0x44 scope:global align:4
|
||||
@96591 = .data:0x000000CC; // type:object size:0x2C scope:local align:4
|
||||
break_effect_id$93513 = .data:0x000000F8; // type:object size:0x6 scope:local align:4
|
||||
wall_break_effect_id$93528 = .data:0x000000FE; // type:object size:0x6 scope:local align:2
|
||||
apper_effect_id$93547 = .data:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
l_landing_effect_id$93561 = .data:0x00000108; // type:object size:0xC scope:local align:4
|
||||
@96760 = .data:0x00000114; // type:object size:0x28 scope:local align:4
|
||||
@96846 = .data:0x0000013C; // type:object size:0x2C scope:local align:4
|
||||
@97047 = .data:0x00000168; // type:object size:0x20 scope:local align:4
|
||||
lbl_154_data_188 = .data:0x00000188; // type:object size:0x5 data:string
|
||||
l_daB_YOI_Method = .data:0x00000190; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_YOI = .data:0x000001B0; // type:object size:0x30 scope:global align:4
|
||||
__vt__13daB_YOI_HIO_c = .data:0x000001E0; // type:object size:0xC scope:global align:4
|
||||
lbl_154_data_1EC = .data:0x000001EC; // type:object size:0xE data:string
|
||||
@94327 = .data:0x000001FC; // type:object size:0xC scope:local align:4
|
||||
__RTTI__13daB_YOI_HIO_c = .data:0x00000208; // type:object size:0x8 scope:global align:4
|
||||
lbl_154_data_210 = .data:0x00000210; // type:object size:0x58
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
lbl_154_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte
|
||||
@93387 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x10 scope:global align:4 data:byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_zant.cpp:
|
||||
.text start:0x000000CC end:0x0000EE58
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000330
|
||||
.data start:0x00000000 end:0x00000A70
|
||||
.bss start:0x00000008 end:0x000000A8
|
||||
@@ -1,337 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__14daB_ZANT_HIO_cFv = .text:0x000000CC; // type:function size:0x90 scope:global align:4
|
||||
ctrlJoint__10daB_ZANT_cFP8J3DJointP8J3DModel = .text:0x0000015C; // type:function size:0xBC scope:global align:4
|
||||
JointCallBack__10daB_ZANT_cFP8J3DJointi = .text:0x00000218; // type:function size:0x48 scope:global align:4
|
||||
draw__10daB_ZANT_cFv = .text:0x00000260; // type:function size:0x280 scope:global align:4
|
||||
daB_ZANT_Draw__FP10daB_ZANT_c = .text:0x000004E0; // type:function size:0x4 scope:global align:4
|
||||
checkBck__10daB_ZANT_cFi = .text:0x000004E4; // type:function size:0x5C scope:global align:4
|
||||
setActionMode__10daB_ZANT_cFii = .text:0x00000540; // type:function size:0x34 scope:global align:4
|
||||
checkBigDamage__10daB_ZANT_cFv = .text:0x00000574; // type:function size:0xA0 scope:global align:4
|
||||
checkDamageType__10daB_ZANT_cFv = .text:0x00000614; // type:function size:0x74 scope:global align:4
|
||||
setDamageSe__10daB_ZANT_cFP8dCcD_Sphi = .text:0x00000688; // type:function size:0x128 scope:global align:4
|
||||
damage_check__10daB_ZANT_cFv = .text:0x000007B0; // type:function size:0x69C scope:global align:4
|
||||
ice_damage_check__10daB_ZANT_cFv = .text:0x00000E4C; // type:function size:0x30C scope:global align:4
|
||||
setNextDamageMode__10daB_ZANT_cFi = .text:0x00001158; // type:function size:0x11C scope:global align:4
|
||||
s_obj_sub__FPvPv = .text:0x00001274; // type:function size:0x144 scope:global align:4
|
||||
checkAvoidWeapon__10daB_ZANT_cFi = .text:0x000013B8; // type:function size:0x184 scope:global align:4
|
||||
setTgHitBit__10daB_ZANT_cFi = .text:0x0000153C; // type:function size:0x40 scope:global align:4
|
||||
setCoHitBit__10daB_ZANT_cFi = .text:0x0000157C; // type:function size:0x40 scope:global align:4
|
||||
setTgShield__10daB_ZANT_cFi = .text:0x000015BC; // type:function size:0x68 scope:global align:4
|
||||
setTgType__10daB_ZANT_cFUl = .text:0x00001624; // type:function size:0xC scope:global align:4
|
||||
doZantMessage__10daB_ZANT_cFv = .text:0x00001630; // type:function size:0x7C scope:global align:4
|
||||
setIceLandingEffect__10daB_ZANT_cFi = .text:0x000016AC; // type:function size:0x18C scope:global align:4
|
||||
setWaterBubble__10daB_ZANT_cFv = .text:0x00001838; // type:function size:0xAC scope:global align:4
|
||||
setMonkeyFallEffect__10daB_ZANT_cFv = .text:0x000018E4; // type:function size:0xA0 scope:global align:4
|
||||
setLastRollEffect__10daB_ZANT_cFv = .text:0x00001984; // type:function size:0x104 scope:global align:4
|
||||
s_pillar_sub__FPvPv = .text:0x00001A88; // type:function size:0xCC scope:global align:4
|
||||
getMagicSpeed__10daB_ZANT_cFv = .text:0x00001B54; // type:function size:0x10 scope:global align:4
|
||||
getMagicWaterSpeed__10daB_ZANT_cFv = .text:0x00001B64; // type:function size:0x10 scope:global align:4
|
||||
executeSmallAttack__10daB_ZANT_cFv = .text:0x00001B74; // type:function size:0x678 scope:global align:4
|
||||
calcScale__10daB_ZANT_cFi = .text:0x000021EC; // type:function size:0xF4 scope:global align:4
|
||||
executeWarp__10daB_ZANT_cFv = .text:0x000022E0; // type:function size:0x630 scope:global align:4
|
||||
executeDamage__10daB_ZANT_cFv = .text:0x00002910; // type:function size:0x39C scope:global align:4
|
||||
executeConfuse__10daB_ZANT_cFv = .text:0x00002CAC; // type:function size:0x33C scope:global align:4
|
||||
executeOpening__10daB_ZANT_cFv = .text:0x00002FE8; // type:function size:0x119C scope:global align:4
|
||||
executeFly__10daB_ZANT_cFv = .text:0x00004184; // type:function size:0x73C scope:global align:4
|
||||
executeFlyGround__10daB_ZANT_cFv = .text:0x000048C0; // type:function size:0x224 scope:global align:4
|
||||
checkSwimLinkNearMouth__10daB_ZANT_cFv = .text:0x00004AE4; // type:function size:0x104 scope:global align:4
|
||||
checkSwimLinkNear__10daB_ZANT_cFv = .text:0x00004BE8; // type:function size:0x138 scope:global align:4
|
||||
executeHook__10daB_ZANT_cFv = .text:0x00004D20; // type:function size:0x1BC scope:global align:4
|
||||
executeWater__10daB_ZANT_cFv = .text:0x00004EDC; // type:function size:0x808 scope:global align:4
|
||||
executeSwim__10daB_ZANT_cFv = .text:0x000056E4; // type:function size:0x7E4 scope:global align:4
|
||||
executeSimaJump__10daB_ZANT_cFv = .text:0x00005EC8; // type:function size:0x65C scope:global align:4
|
||||
executeIceDemo__10daB_ZANT_cFv = .text:0x00006524; // type:function size:0x254 scope:global align:4
|
||||
executeIceJump__10daB_ZANT_cFv = .text:0x00006778; // type:function size:0x61C scope:global align:4
|
||||
executeIceStep__10daB_ZANT_cFv = .text:0x00006D94; // type:function size:0xB30 scope:global align:4
|
||||
executeIceDamage__10daB_ZANT_cFv = .text:0x000078C4; // type:function size:0x908 scope:global align:4
|
||||
setFarPillarPos__10daB_ZANT_cFv = .text:0x000081CC; // type:function size:0x124 scope:global align:4
|
||||
setNearPillarPos__10daB_ZANT_cFv = .text:0x000082F0; // type:function size:0x78 scope:global align:4
|
||||
setNextPillarInfo__10daB_ZANT_cFi = .text:0x00008368; // type:function size:0x80 scope:global align:4
|
||||
setNextPillarPos__10daB_ZANT_cFv = .text:0x000083E8; // type:function size:0x23C scope:global align:4
|
||||
checkPillarSwing__10daB_ZANT_cFv = .text:0x00008624; // type:function size:0x94 scope:global align:4
|
||||
executeMonkey__10daB_ZANT_cFv = .text:0x000086B8; // type:function size:0x720 scope:global align:4
|
||||
executeMonkeyFall__10daB_ZANT_cFv = .text:0x00008DD8; // type:function size:0x380 scope:global align:4
|
||||
executeMonkeyDamage__10daB_ZANT_cFv = .text:0x00009158; // type:function size:0x294 scope:global align:4
|
||||
setLastWarp__10daB_ZANT_cFii = .text:0x000093EC; // type:function size:0x6A4 scope:global align:4
|
||||
executeLastStartDemo__10daB_ZANT_cFv = .text:0x00009A90; // type:function size:0x4EC scope:global align:4
|
||||
executeLastAttack__10daB_ZANT_cFv = .text:0x00009F7C; // type:function size:0x11DC scope:global align:4
|
||||
executeLastTired__10daB_ZANT_cFv = .text:0x0000B158; // type:function size:0x100 scope:global align:4
|
||||
executeLastDamage__10daB_ZANT_cFv = .text:0x0000B258; // type:function size:0x688 scope:global align:4
|
||||
s_del_tp__FPvPv = .text:0x0000B8E0; // type:function size:0x6C scope:global align:4
|
||||
executeLastEndDemo__10daB_ZANT_cFv = .text:0x0000B94C; // type:function size:0x5A0 scope:global align:4
|
||||
calcMahojinAnime__10daB_ZANT_cFv = .text:0x0000BEEC; // type:function size:0x1CC scope:global align:4
|
||||
calcRoomChangeCamera__10daB_ZANT_cFi = .text:0x0000C0B8; // type:function size:0x1E0 scope:global align:4
|
||||
initNextRoom__10daB_ZANT_cFv = .text:0x0000C298; // type:function size:0x1C8 scope:global align:4
|
||||
executeRoomChange__10daB_ZANT_cFv = .text:0x0000C460; // type:function size:0x944 scope:global align:4
|
||||
setBaseActionMode__10daB_ZANT_cFi = .text:0x0000CDA4; // type:function size:0x3B0 scope:global align:4
|
||||
action__10daB_ZANT_cFv = .text:0x0000D154; // type:function size:0x580 scope:global align:4
|
||||
mtx_set__10daB_ZANT_cFv = .text:0x0000D6D4; // type:function size:0x1CC scope:global align:4
|
||||
cc_set__10daB_ZANT_cFv = .text:0x0000D8A0; // type:function size:0x228 scope:global align:4
|
||||
cc_ice_set__10daB_ZANT_cFv = .text:0x0000DAC8; // type:function size:0x47C scope:global align:4
|
||||
__as__Q210daB_ZANT_c31dZantSph_c$110525d_a_b_zant_cppFRCQ210daB_ZANT_c31dZantSph_c$110525d_a_b_zant_cpp = .text:0x0000DF44; // type:function size:0x1C scope:local align:4
|
||||
execute__10daB_ZANT_cFv = .text:0x0000DF60; // type:function size:0x100 scope:global align:4
|
||||
daB_ZANT_Execute__FP10daB_ZANT_c = .text:0x0000E060; // type:function size:0x4 scope:global align:4
|
||||
daB_ZANT_IsDelete__FP10daB_ZANT_c = .text:0x0000E064; // type:function size:0x8 scope:global align:4
|
||||
_delete__10daB_ZANT_cFv = .text:0x0000E06C; // type:function size:0x74 scope:global align:4
|
||||
daB_ZANT_Delete__FP10daB_ZANT_c = .text:0x0000E0E0; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__10daB_ZANT_cFv = .text:0x0000E0E4; // type:function size:0x4C8 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x0000E5AC; // type:function size:0x4 scope:global align:4
|
||||
create__10daB_ZANT_cFv = .text:0x0000E5B0; // type:function size:0x504 scope:global align:4
|
||||
daB_ZANT_Create__FP10daB_ZANT_c = .text:0x0000EAB4; // type:function size:0x4 scope:global align:4
|
||||
__dt__14daB_ZANT_HIO_cFv = .text:0x0000EAB8; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_zant_cpp = .text:0x0000EAF8; // type:function size:0xCC scope:global align:4
|
||||
absXZ__4cXyzCFRC3Vec = .text:0x0000EBC4; // type:function size:0x74 scope:global align:4
|
||||
entry__13mDoExt_brkAnmFP12J3DModelData = .text:0x0000EC38; // type:function size:0xC scope:global align:4
|
||||
entry__13mDoExt_btkAnmFP12J3DModelData = .text:0x0000EC44; // type:function size:0xC scope:global align:4
|
||||
__as__8dCcD_SphFRC8dCcD_Sph = .text:0x0000EC50; // type:function size:0x19C scope:global align:4
|
||||
__as__18cCcD_ObjCommonBaseFRC18cCcD_ObjCommonBase = .text:0x0000EDEC; // type:function size:0x1C scope:global align:4
|
||||
__as__22dCcD_GAtTgCoCommonBaseFRC22dCcD_GAtTgCoCommonBase = .text:0x0000EE08; // type:function size:0x34 scope:global align:4
|
||||
dComIfGp_roomControl_checkStatusFlag__FiUc = .text:0x0000EE3C; // type:function size:0x1C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@120376 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@120377 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@120378 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@120379 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@120380 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@120381 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@120382 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@120383 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@120384 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@120385 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@120386 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@120387 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@120388 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float
|
||||
iron_tg_cc__24@unnamed@d_a_b_zant_cpp@ = .rodata:0x00000034; // type:object size:0x18 scope:global align:4
|
||||
@120469 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@120470 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@120471 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@120472 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@120503 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@120700 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@120703 = .rodata:0x00000068; // type:object size:0x8 scope:local align:4
|
||||
@120898 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4 data:float
|
||||
@120899 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@121193 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@121194 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@121195 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@121196 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@121216 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@121217 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@121218 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@121301 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@121577 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@121579 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@121580 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@121581 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@121582 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@121583 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@121584 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@121585 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@121586 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@121587 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@121588 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@121589 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@121590 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@121591 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@121592 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@121593 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@121594 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@121595 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@121596 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@121597 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@121598 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@121599 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@121600 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@121601 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@121602 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@121603 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@121604 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@121605 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@121606 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@121607 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@121608 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@121609 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@121610 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@121611 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@121612 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@121613 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@121614 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@121615 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@121616 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@121617 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@121618 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@121619 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@121620 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4 data:string
|
||||
@121621 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
@121622 = .rodata:0x00000148; // type:object size:0x4 scope:local align:4
|
||||
@121623 = .rodata:0x0000014C; // type:object size:0x4 scope:local align:4
|
||||
@121624 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4
|
||||
@121625 = .rodata:0x00000154; // type:object size:0x4 scope:local align:4
|
||||
@121626 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4
|
||||
@121627 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4
|
||||
@121632 = .rodata:0x00000160; // type:object size:0x8 scope:local align:4
|
||||
@121727 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4
|
||||
@121728 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4
|
||||
@121729 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4
|
||||
@121730 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4
|
||||
@121731 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@121732 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@121733 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4
|
||||
@121734 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@121735 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@121736 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@121737 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@121771 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@121772 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@121950 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@122082 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@122083 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@122084 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@122085 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
@122086 = .rodata:0x000001B0; // type:object size:0x4 scope:local align:4
|
||||
@122185 = .rodata:0x000001B4; // type:object size:0x4 scope:local align:4
|
||||
@122186 = .rodata:0x000001B8; // type:object size:0x4 scope:local align:4
|
||||
@122187 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4
|
||||
@122188 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4
|
||||
@122189 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4
|
||||
@122190 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4
|
||||
@122231 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4
|
||||
@122331 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4
|
||||
@122332 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4
|
||||
@122533 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4
|
||||
@122534 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4
|
||||
@122535 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4
|
||||
@122536 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4
|
||||
@122537 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4
|
||||
@122538 = .rodata:0x000001EC; // type:object size:0x4 scope:local align:4
|
||||
@122539 = .rodata:0x000001F0; // type:object size:0x4 scope:local align:4
|
||||
@122540 = .rodata:0x000001F4; // type:object size:0x4 scope:local align:4
|
||||
@122541 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4
|
||||
@122542 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4
|
||||
damage_scale$108732 = .rodata:0x00000200; // type:object size:0x2C scope:local align:4
|
||||
damage_jump_speed$108733 = .rodata:0x0000022C; // type:object size:0x2C scope:local align:4
|
||||
@122731 = .rodata:0x00000258; // type:object size:0x4 scope:local align:4
|
||||
@122732 = .rodata:0x0000025C; // type:object size:0x4 scope:local align:4
|
||||
@122733 = .rodata:0x00000260; // type:object size:0x4 scope:local align:4
|
||||
@122764 = .rodata:0x00000264; // type:object size:0x4 scope:local align:4 data:float
|
||||
@122825 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@122826 = .rodata:0x00000270; // type:object size:0x8 scope:local align:4
|
||||
@122964 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@122965 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@123112 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
@123113 = .rodata:0x00000284; // type:object size:0x4 scope:local align:4
|
||||
@123114 = .rodata:0x00000288; // type:object size:0x4 scope:local align:4
|
||||
@123115 = .rodata:0x0000028C; // type:object size:0x4 scope:local align:4
|
||||
@123151 = .rodata:0x00000290; // type:object size:0x4 scope:local align:4
|
||||
@123152 = .rodata:0x00000294; // type:object size:0x4 scope:local align:4
|
||||
@123153 = .rodata:0x00000298; // type:object size:0x4 scope:local align:4
|
||||
@123154 = .rodata:0x0000029C; // type:object size:0x4 scope:local align:4
|
||||
@123155 = .rodata:0x000002A0; // type:object size:0x4 scope:local align:4
|
||||
@123156 = .rodata:0x000002A4; // type:object size:0x4 scope:local align:4
|
||||
@123157 = .rodata:0x000002A8; // type:object size:0x4 scope:local align:4
|
||||
@123158 = .rodata:0x000002AC; // type:object size:0x4 scope:local align:4
|
||||
@123159 = .rodata:0x000002B0; // type:object size:0x4 scope:local align:4
|
||||
@123160 = .rodata:0x000002B4; // type:object size:0x4 scope:local align:4
|
||||
@123441 = .rodata:0x000002B8; // type:object size:0x4 scope:local align:4
|
||||
@123442 = .rodata:0x000002BC; // type:object size:0x4 scope:local align:4
|
||||
@123443 = .rodata:0x000002C0; // type:object size:0x4 scope:local align:4
|
||||
@123444 = .rodata:0x000002C4; // type:object size:0x4 scope:local align:4
|
||||
@123445 = .rodata:0x000002C8; // type:object size:0x4 scope:local align:4
|
||||
@123556 = .rodata:0x000002CC; // type:object size:0x4 scope:local align:4
|
||||
@123623 = .rodata:0x000002D0; // type:object size:0x4 scope:local align:4
|
||||
@123624 = .rodata:0x000002D4; // type:object size:0x4 scope:local align:4
|
||||
@123625 = .rodata:0x000002D8; // type:object size:0x4 scope:local align:4
|
||||
@123626 = .rodata:0x000002DC; // type:object size:0x4 scope:local align:4
|
||||
@123627 = .rodata:0x000002E0; // type:object size:0x4 scope:local align:4
|
||||
@123628 = .rodata:0x000002E4; // type:object size:0x4 scope:local align:4
|
||||
@123629 = .rodata:0x000002E8; // type:object size:0x4 scope:local align:4
|
||||
@123630 = .rodata:0x000002EC; // type:object size:0x4 scope:local align:4
|
||||
@123631 = .rodata:0x000002F0; // type:object size:0x4 scope:local align:4
|
||||
@123632 = .rodata:0x000002F4; // type:object size:0x4 scope:local align:4
|
||||
@123680 = .rodata:0x000002F8; // type:object size:0x4 scope:local align:4
|
||||
@123681 = .rodata:0x000002FC; // type:object size:0x4 scope:local align:4
|
||||
@123682 = .rodata:0x00000300; // type:object size:0x4 scope:local align:4
|
||||
@123683 = .rodata:0x00000304; // type:object size:0x4 scope:local align:4
|
||||
@123684 = .rodata:0x00000308; // type:object size:0x4 scope:local align:4
|
||||
@123685 = .rodata:0x0000030C; // type:object size:0x4 scope:local align:4
|
||||
@123686 = .rodata:0x00000310; // type:object size:0x4 scope:local align:4
|
||||
@123687 = .rodata:0x00000314; // type:object size:0x4 scope:local align:4
|
||||
@123703 = .rodata:0x00000318; // type:object size:0x4 scope:local align:4
|
||||
@123818 = .rodata:0x0000031C; // type:object size:0x4 scope:local align:4
|
||||
@123819 = .rodata:0x00000320; // type:object size:0x4 scope:local align:4
|
||||
@123820 = .rodata:0x00000324; // type:object size:0x4 scope:local align:4
|
||||
@123821 = .rodata:0x00000328; // type:object size:0x4 scope:local align:4
|
||||
@123854 = .rodata:0x0000032C; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_zant_src__24@unnamed@d_a_b_zant_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global align:4
|
||||
cc_zant_sword_src__24@unnamed@d_a_b_zant_cpp@ = .data:0x00000040; // type:object size:0x40 scope:global align:4
|
||||
cc_zant_roll_src__24@unnamed@d_a_b_zant_cpp@ = .data:0x00000080; // type:object size:0x44 scope:global align:4
|
||||
cc_zant_foot_src__24@unnamed@d_a_b_zant_cpp@ = .data:0x000000C4; // type:object size:0x40 scope:global align:4
|
||||
cc_zant_foot_src2__24@unnamed@d_a_b_zant_cpp@ = .data:0x00000104; // type:object size:0x40 scope:global align:4
|
||||
cc_zant_camera_src__24@unnamed@d_a_b_zant_cpp@ = .data:0x00000144; // type:object size:0x40 scope:global align:4
|
||||
lbl_155_data_184 = .data:0x00000184; // type:object size:0x7 data:byte
|
||||
lbl_155_data_18B = .data:0x0000018B; // type:object size:0x6 data:string
|
||||
l_landing_effect_id$107113 = .data:0x00000192; // type:object size:0xC scope:local align:2
|
||||
l_landing_effect_id$107140 = .data:0x0000019E; // type:object size:0x6 scope:local align:2
|
||||
l_roll_effect_id$107153 = .data:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@121304 = .data:0x000001A8; // type:object size:0x1C scope:local align:4
|
||||
@121368 = .data:0x000001C4; // type:object size:0x1C scope:local align:4
|
||||
@121416 = .data:0x000001E0; // type:object size:0x1C scope:local align:4
|
||||
@121415 = .data:0x000001FC; // type:object size:0x1C scope:local align:4
|
||||
lbl_155_data_218 = .data:0x00000218; // type:object size:0x16
|
||||
w_eff_id$107701 = .data:0x0000022E; // type:object size:0x8 scope:local align:2
|
||||
@121739 = .data:0x00000238; // type:object size:0x3C scope:local align:4
|
||||
@121952 = .data:0x00000274; // type:object size:0x7C scope:local align:4
|
||||
@122088 = .data:0x000002F0; // type:object size:0x30 scope:local align:4
|
||||
@122334 = .data:0x00000320; // type:object size:0x20 scope:local align:4
|
||||
@122735 = .data:0x00000340; // type:object size:0xA8 scope:local align:4
|
||||
@122967 = .data:0x000003E8; // type:object size:0x54 scope:local align:4
|
||||
@123162 = .data:0x0000043C; // type:object size:0x1C scope:local align:4
|
||||
@123447 = .data:0x00000458; // type:object size:0x80 scope:local align:4
|
||||
@123558 = .data:0x000004D8; // type:object size:0x58 scope:local align:4
|
||||
lbl_155_data_530 = .data:0x00000530; // type:object size:0x8 data:string
|
||||
mahojin_se$110183 = .data:0x00000538; // type:object size:0x18 scope:local align:4
|
||||
@123823 = .data:0x00000550; // type:object size:0x44 scope:local align:4
|
||||
@123856 = .data:0x00000594; // type:object size:0x1C scope:local align:4
|
||||
@123948 = .data:0x000005B0; // type:object size:0x60 scope:local align:4
|
||||
ice_sph_jnt$110526 = .data:0x00000610; // type:object size:0x84 scope:local align:4
|
||||
lbl_155_data_694 = .data:0x00000694; // type:object size:0x7 data:string
|
||||
l_daB_ZANT_Method = .data:0x0000069C; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_ZANT = .data:0x000006BC; // type:object size:0x30 scope:global align:4
|
||||
__vt__14daB_ZANT_HIO_c = .data:0x000006EC; // type:object size:0xC scope:global align:4
|
||||
lbl_155_data_6F8 = .data:0x000006F8; // type:object size:0xF data:string
|
||||
@110837 = .data:0x00000708; // type:object size:0xC scope:local align:4
|
||||
__RTTI__14daB_ZANT_HIO_c = .data:0x00000714; // type:object size:0x8 scope:global align:4
|
||||
lbl_155_data_71C = .data:0x0000071C; // type:object size:0x34
|
||||
@110938 = .data:0x00000750; // type:object size:0x3C scope:local align:4
|
||||
lbl_155_data_78C = .data:0x0000078C; // type:object size:0x14
|
||||
@110940 = .data:0x000007A0; // type:object size:0x34 scope:local align:4
|
||||
lbl_155_data_7D4 = .data:0x000007D4; // type:object size:0x48
|
||||
@110992 = .data:0x0000081C; // type:object size:0x4C scope:local align:4
|
||||
lbl_155_data_868 = .data:0x00000868; // type:object size:0x14
|
||||
@110996 = .data:0x0000087C; // type:object size:0x44 scope:local align:4
|
||||
lbl_155_data_8C0 = .data:0x000008C0; // type:object size:0x14
|
||||
@110998 = .data:0x000008D4; // type:object size:0x24 scope:local align:4
|
||||
lbl_155_data_8F8 = .data:0x000008F8; // type:object size:0x18
|
||||
@111000 = .data:0x00000910; // type:object size:0xC scope:local align:4
|
||||
lbl_155_data_91C = .data:0x0000091C; // type:object size:0x1C
|
||||
@111002 = .data:0x00000938; // type:object size:0xC scope:local align:4
|
||||
lbl_155_data_944 = .data:0x00000944; // type:object size:0x34
|
||||
@111036 = .data:0x00000978; // type:object size:0x14 scope:local align:4
|
||||
lbl_155_data_98C = .data:0x0000098C; // type:object size:0xE4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@106486 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x44 scope:global align:4 data:byte
|
||||
@106491 = .bss:0x0000005C; // type:object size:0xC scope:local align:4
|
||||
@106492 = .bss:0x00000068; // type:object size:0xC scope:local align:4
|
||||
@106493 = .bss:0x00000074; // type:object size:0xC scope:local align:4
|
||||
fly_warp_pos__24@unnamed@d_a_b_zant_cpp@ = .bss:0x00000080; // type:object size:0x24 scope:global align:4
|
||||
target_info_count = .bss:0x000000A4; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_b_zant_magic.cpp:
|
||||
.text start:0x0000005C end:0x000009AC
|
||||
.rodata start:0x00000000 end:0x0000004C
|
||||
.data start:0x00000000 end:0x00000268
|
||||
@@ -1,52 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
daB_ZANTM_Draw__FP11daB_ZANTM_c = .text:0x0000005C; // type:function size:0x3C scope:global align:4
|
||||
setMagicEffect__11daB_ZANTM_cFv = .text:0x00000098; // type:function size:0x150 scope:global align:4
|
||||
setMagicHitEffect__11daB_ZANTM_cFv = .text:0x000001E8; // type:function size:0x110 scope:global align:4
|
||||
executeSmall__11daB_ZANTM_cFv = .text:0x000002F8; // type:function size:0x30C scope:global align:4
|
||||
cc_set__11daB_ZANTM_cFv = .text:0x00000604; // type:function size:0xE8 scope:global align:4
|
||||
execute__11daB_ZANTM_cFv = .text:0x000006EC; // type:function size:0x98 scope:global align:4
|
||||
daB_ZANTM_Execute__FP11daB_ZANTM_c = .text:0x00000784; // type:function size:0x4 scope:global align:4
|
||||
daB_ZANTM_IsDelete__FP11daB_ZANTM_c = .text:0x00000788; // type:function size:0x8 scope:global align:4
|
||||
daB_ZANTM_Delete__FP11daB_ZANTM_c = .text:0x00000790; // type:function size:0x8 scope:global align:4
|
||||
create__11daB_ZANTM_cFv = .text:0x00000798; // type:function size:0x210 scope:global align:4
|
||||
daB_ZANTM_Create__FP11daB_ZANTM_c = .text:0x000009A8; // type:function size:0x4 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@92950 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@92951 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@92952 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@92979 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@92980 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@93047 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@93048 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@93049 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@93050 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@93051 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@93052 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@93055 = .rodata:0x00000030; // type:object size:0x8 scope:local align:4
|
||||
@93057 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@93058 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@93059 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@93100 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@93101 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_zant_src__30@unnamed@d_a_b_zant_magic_cpp@ = .data:0x00000000; // type:object size:0x4C scope:global align:4
|
||||
cc_zant_src2__30@unnamed@d_a_b_zant_magic_cpp@ = .data:0x0000004C; // type:object size:0x40 scope:global align:4
|
||||
cc_zant_src3__30@unnamed@d_a_b_zant_magic_cpp@ = .data:0x0000008C; // type:object size:0x40 scope:global align:4
|
||||
magic_effect_id$91788 = .data:0x000000CC; // type:object size:0x8 scope:local align:4
|
||||
magic_effect_id$91814 = .data:0x000000D4; // type:object size:0x8 scope:local align:4
|
||||
l_daB_ZANTM_Method = .data:0x000000DC; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_ZANTM = .data:0x000000FC; // type:object size:0x30 scope:global align:4
|
||||
lbl_156_data_12C = .data:0x0000012C; // type:object size:0x34
|
||||
@92017 = .data:0x00000160; // type:object size:0x3C scope:local align:4
|
||||
lbl_156_data_19C = .data:0x0000019C; // type:object size:0x14
|
||||
@92019 = .data:0x000001B0; // type:object size:0x34 scope:local align:4
|
||||
lbl_156_data_1E4 = .data:0x000001E4; // type:object size:0x14
|
||||
@92077 = .data:0x000001F8; // type:object size:0x24 scope:local align:4
|
||||
lbl_156_data_21C = .data:0x0000021C; // type:object size:0x18
|
||||
@92079 = .data:0x00000234; // type:object size:0xC scope:local align:4
|
||||
lbl_156_data_240 = .data:0x00000240; // type:object size:0x1C
|
||||
@92081 = .data:0x0000025C; // type:object size:0xC scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_b_zant_mobile.cpp:
|
||||
.text start:0x000000CC end:0x000019F0
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000094
|
||||
.data start:0x00000000 end:0x000003A4
|
||||
.bss start:0x00000008 end:0x00000024
|
||||
@@ -1,94 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__15daB_ZANTZ_HIO_cFv = .text:0x000000CC; // type:function size:0x24 scope:global align:4
|
||||
draw__11daB_ZANTZ_cFv = .text:0x000000F0; // type:function size:0x80 scope:global align:4
|
||||
daB_ZANTZ_Draw__FP11daB_ZANTZ_c = .text:0x00000170; // type:function size:0x4 scope:global align:4
|
||||
setSnortEffect__11daB_ZANTZ_cFi = .text:0x00000174; // type:function size:0x88 scope:global align:4
|
||||
calcSnortEffect__11daB_ZANTZ_cFv = .text:0x000001FC; // type:function size:0x284 scope:global align:4
|
||||
setMouthMode__11daB_ZANTZ_cFUc = .text:0x00000480; // type:function size:0x17C scope:global align:4
|
||||
setAppearMode__11daB_ZANTZ_cFUc = .text:0x000005FC; // type:function size:0x388 scope:global align:4
|
||||
getGroundPos__11daB_ZANTZ_cFv = .text:0x00000984; // type:function size:0x124 scope:global align:4
|
||||
action__11daB_ZANTZ_cFv = .text:0x00000AA8; // type:function size:0x794 scope:global align:4
|
||||
cc_set__11daB_ZANTZ_cFv = .text:0x0000123C; // type:function size:0xFC scope:global align:4
|
||||
execute__11daB_ZANTZ_cFv = .text:0x00001338; // type:function size:0xD8 scope:global align:4
|
||||
daB_ZANTZ_Execute__FP11daB_ZANTZ_c = .text:0x00001410; // type:function size:0x4 scope:global align:4
|
||||
daB_ZANTZ_IsDelete__FP11daB_ZANTZ_c = .text:0x00001414; // type:function size:0x8 scope:global align:4
|
||||
_delete__11daB_ZANTZ_cFv = .text:0x0000141C; // type:function size:0x84 scope:global align:4
|
||||
daB_ZANTZ_Delete__FP11daB_ZANTZ_c = .text:0x000014A0; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__11daB_ZANTZ_cFv = .text:0x000014A4; // type:function size:0x214 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x000016B8; // type:function size:0x4 scope:global align:4
|
||||
create__11daB_ZANTZ_cFv = .text:0x000016BC; // type:function size:0x2A8 scope:global align:4
|
||||
daB_ZANTZ_Create__FP11daB_ZANTZ_c = .text:0x00001964; // type:function size:0x4 scope:global align:4
|
||||
__dt__15daB_ZANTZ_HIO_cFv = .text:0x00001968; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_b_zant_mobile_cpp = .text:0x000019A8; // type:function size:0x48 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@93903 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@93928 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@93959 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@93960 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@93961 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@93962 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@93963 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@93964 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@93965 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@93966 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@93967 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@93968 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@94016 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float
|
||||
@94063 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@94064 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@94071 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@94081 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@94199 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@94200 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@94201 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@94202 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@94203 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@94204 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@94205 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@94206 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@94207 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@94208 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@94209 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@94210 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@94211 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@94231 = .rodata:0x00000078; // type:object size:0x8 scope:local align:4
|
||||
@94251 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@94252 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@94253 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@94380 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@94381 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_zant_src__31@unnamed@d_a_b_zant_mobile_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global align:4
|
||||
cc_zant_snort_src__31@unnamed@d_a_b_zant_mobile_cpp@ = .data:0x00000040; // type:object size:0x44 scope:global align:4
|
||||
lbl_157_data_84 = .data:0x00000084; // type:object size:0x6 data:string
|
||||
lbl_157_data_8A = .data:0x0000008A; // type:object size:0x5 data:string
|
||||
l_daB_ZANTZ_Method = .data:0x00000090; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_ZANTZ = .data:0x000000B0; // type:object size:0x30 scope:global align:4
|
||||
__vt__15daB_ZANTZ_HIO_c = .data:0x000000E0; // type:object size:0xC scope:global align:4
|
||||
lbl_157_data_EC = .data:0x000000EC; // type:object size:0x10 data:string
|
||||
@92285 = .data:0x000000FC; // type:object size:0xC scope:local align:4
|
||||
__RTTI__15daB_ZANTZ_HIO_c = .data:0x00000108; // type:object size:0x8 scope:global align:4
|
||||
lbl_157_data_110 = .data:0x00000110; // type:object size:0x40
|
||||
@92401 = .data:0x00000150; // type:object size:0x4C scope:local align:4
|
||||
lbl_157_data_19C = .data:0x0000019C; // type:object size:0x14
|
||||
@92405 = .data:0x000001B0; // type:object size:0x44 scope:local align:4
|
||||
lbl_157_data_1F4 = .data:0x000001F4; // type:object size:0x14
|
||||
@92407 = .data:0x00000208; // type:object size:0x24 scope:local align:4
|
||||
lbl_157_data_22C = .data:0x0000022C; // type:object size:0x18
|
||||
@92409 = .data:0x00000244; // type:object size:0xC scope:local align:4
|
||||
lbl_157_data_250 = .data:0x00000250; // type:object size:0x1C
|
||||
@92411 = .data:0x0000026C; // type:object size:0xC scope:local align:4
|
||||
lbl_157_data_278 = .data:0x00000278; // type:object size:0x34
|
||||
@92445 = .data:0x000002AC; // type:object size:0x14 scope:local align:4
|
||||
lbl_157_data_2C0 = .data:0x000002C0; // type:object size:0xE4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
lbl_157_bss_8 = .bss:0x00000008; // type:object size:0x1 data:byte
|
||||
@91747 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0xC scope:global align:4 data:byte
|
||||
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_b_zant_sima.cpp:
|
||||
.text start:0x0000005C end:0x000008A4
|
||||
.rodata start:0x00000000 end:0x00000030
|
||||
.data start:0x00000000 end:0x0000005C
|
||||
@@ -1,34 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
draw__11daB_ZANTS_cFv = .text:0x0000005C; // type:function size:0xC8 scope:global align:4
|
||||
daB_ZANTS_Draw__FP11daB_ZANTS_c = .text:0x00000124; // type:function size:0x4 scope:global align:4
|
||||
zants_ride_call_back__FP4dBgWP10fopAc_ac_cP10fopAc_ac_c = .text:0x00000128; // type:function size:0x5C scope:global align:4
|
||||
action__11daB_ZANTS_cFv = .text:0x00000184; // type:function size:0x274 scope:global align:4
|
||||
execute__11daB_ZANTS_cFv = .text:0x000003F8; // type:function size:0xE4 scope:global align:4
|
||||
daB_ZANTS_Execute__FP11daB_ZANTS_c = .text:0x000004DC; // type:function size:0x4 scope:global align:4
|
||||
daB_ZANTS_IsDelete__FP11daB_ZANTS_c = .text:0x000004E0; // type:function size:0x8 scope:global align:4
|
||||
daB_ZANTS_Delete__FP11daB_ZANTS_c = .text:0x000004E8; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__11daB_ZANTS_cFv = .text:0x000004EC; // type:function size:0x23C scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00000728; // type:function size:0x4 scope:global align:4
|
||||
create__11daB_ZANTS_cFv = .text:0x0000072C; // type:function size:0x11C scope:global align:4
|
||||
daB_ZANTS_Create__FP11daB_ZANTS_c = .text:0x00000848; // type:function size:0x4 scope:global align:4
|
||||
_delete__11daB_ZANTS_cFv = .text:0x0000084C; // type:function size:0x58 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@92855 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@92856 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@92857 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@92858 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@92859 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@92860 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@92872 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float
|
||||
@92937 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@92972 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@92973 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@92974 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@92975 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
lbl_158_data_0 = .data:0x00000000; // type:object size:0xA data:string
|
||||
l_daB_ZANTS_Method = .data:0x0000000C; // type:object size:0x20 scope:global align:4
|
||||
g_profile_B_ZANTS = .data:0x0000002C; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_balloon_2D.cpp:
|
||||
.text start:0x000000CC end:0x00001E88
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000048
|
||||
.data start:0x00000000 end:0x00000208
|
||||
.bss start:0x00000008 end:0x000000E0
|
||||
@@ -1,78 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
draw__Q213daBalloon2D_c6c_listFv = .text:0x000000CC; // type:function size:0x4C scope:global align:4
|
||||
daBalloon2D_createHeap__FP10fopAc_ac_c = .text:0x00000118; // type:function size:0x4 scope:global align:4
|
||||
createHeap__13daBalloon2D_cFv = .text:0x0000011C; // type:function size:0x78C scope:global align:4
|
||||
create__13daBalloon2D_cFv = .text:0x000008A8; // type:function size:0x98 scope:global align:4
|
||||
destroy__13daBalloon2D_cFv = .text:0x00000940; // type:function size:0x58 scope:global align:4
|
||||
draw__13daBalloon2D_cFv = .text:0x00000998; // type:function size:0xAC scope:global align:4
|
||||
drawMeter__13daBalloon2D_cFv = .text:0x00000A44; // type:function size:0x50 scope:global align:4
|
||||
setComboCount__13daBalloon2D_cFUcUc = .text:0x00000A94; // type:function size:0x60 scope:global align:4
|
||||
setScoreCount__13daBalloon2D_cFUl = .text:0x00000AF4; // type:function size:0x14 scope:global align:4
|
||||
addScoreCount__13daBalloon2D_cFP4cXyzUlUc = .text:0x00000B08; // type:function size:0xB8 scope:global align:4
|
||||
setComboNum__13daBalloon2D_cFUc = .text:0x00000BC0; // type:function size:0xEC scope:global align:4
|
||||
setBalloonSize__13daBalloon2D_cFUc = .text:0x00000CAC; // type:function size:0xA0 scope:global align:4
|
||||
setScoreNum__13daBalloon2D_cFi = .text:0x00000D4C; // type:function size:0x1D8 scope:global align:4
|
||||
setAllAlpha__13daBalloon2D_cFv = .text:0x00000F24; // type:function size:0x1CC scope:global align:4
|
||||
setComboAlpha__13daBalloon2D_cFv = .text:0x000010F0; // type:function size:0xD8 scope:global align:4
|
||||
drawAddScore__13daBalloon2D_cFv = .text:0x000011C8; // type:function size:0x7D0 scope:global align:4
|
||||
setHIO__13daBalloon2D_cFb = .text:0x00001998; // type:function size:0x244 scope:global align:4
|
||||
daBalloon2D_create__FP13daBalloon2D_c = .text:0x00001BDC; // type:function size:0x94 scope:global align:4
|
||||
daBalloon2D_destroy__FP13daBalloon2D_c = .text:0x00001C70; // type:function size:0x4 scope:global align:4
|
||||
daBalloon2D_execute__FP13daBalloon2D_c = .text:0x00001C74; // type:function size:0x44 scope:global align:4
|
||||
daBalloon2D_draw__FP13daBalloon2D_c = .text:0x00001CB8; // type:function size:0x4 scope:global align:4
|
||||
__dt__17daBalloon2D_HIO_cFv = .text:0x00001CBC; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_balloon_2D_cpp = .text:0x00001CFC; // type:function size:0x48 scope:global align:4
|
||||
__ct__17daBalloon2D_HIO_cFv = .text:0x00001D44; // type:function size:0x4C scope:global align:4
|
||||
__dt__Q213daBalloon2D_c6c_listFv = .text:0x00001D90; // type:function size:0x40 scope:global align:4
|
||||
__ct__Q213daBalloon2D_c10CHeadScoreFv = .text:0x00001DD0; // type:function size:0x4 scope:global align:4
|
||||
__dt__Q213daBalloon2D_c10CHeadScoreFv = .text:0x00001DD4; // type:function size:0x40 scope:global align:4
|
||||
__dt__13daBalloon2D_cFv = .text:0x00001E14; // type:function size:0x74 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@96091 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@96239 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@96240 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@96241 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@96242 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@96273 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@96274 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@96275 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@96276 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@96277 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@96278 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@96279 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@96280 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@96281 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@96284 = .rodata:0x00000038; // type:object size:0x8 scope:local align:4
|
||||
m_tex_size_x$94969 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
m_tex_size_y$94971 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
aParam$localstatic$__ct__17daBalloon2D_HIO_cFv = .data:0x00000000; // type:object size:0xC4 scope:local align:4
|
||||
lbl_159_data_C4 = .data:0x000000C4; // type:object size:0xA data:string
|
||||
l_arcName = .data:0x000000D0; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
lbl_159_data_D4 = .data:0x000000D4; // type:object size:0x17 data:string
|
||||
lbl_159_data_EB = .data:0x000000EB; // type:object size:0x1
|
||||
daBalloon2D_METHODS = .data:0x000000EC; // type:object size:0x20 scope:global align:4
|
||||
g_profile_BALLOON2D = .data:0x0000010C; // type:object size:0x30 scope:global align:4
|
||||
__vt__17daBalloon2D_HIO_c = .data:0x0000013C; // type:object size:0xC scope:global align:4
|
||||
lbl_159_data_148 = .data:0x00000148; // type:object size:0x12 data:string
|
||||
@95055 = .data:0x0000015C; // type:object size:0x14 scope:local align:4
|
||||
__RTTI__17daBalloon2D_HIO_c = .data:0x00000170; // type:object size:0x8 scope:global align:4
|
||||
__vt__13daBalloon2D_c = .data:0x00000178; // type:object size:0xC scope:global align:4
|
||||
lbl_159_data_184 = .data:0x00000184; // type:object size:0xE data:string
|
||||
@95057 = .data:0x00000194; // type:object size:0x14 scope:local align:4
|
||||
__RTTI__13daBalloon2D_c = .data:0x000001A8; // type:object size:0x8 scope:global align:4
|
||||
__vt__Q213daBalloon2D_c6c_list = .data:0x000001B0; // type:object size:0x10 scope:global align:4
|
||||
lbl_159_data_1C0 = .data:0x000001C0; // type:object size:0x16 data:string
|
||||
__RTTI__Q213daBalloon2D_c6c_list = .data:0x000001D8; // type:object size:0x8 scope:global align:4
|
||||
lbl_159_data_1E0 = .data:0x000001E0; // type:object size:0x1F data:string
|
||||
__RTTI__30request_of_phase_process_class = .data:0x00000200; // type:object size:0x8 scope:global align:4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
@94523 = .bss:0x00000008; // type:object size:0xC scope:local align:4
|
||||
l_HOSTIO = .bss:0x00000014; // type:object size:0xC8 scope:global align:4 data:float
|
||||
myclass__13daBalloon2D_c = .bss:0x000000DC; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_bd.cpp:
|
||||
.text start:0x000000CC end:0x00002968
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000000F0
|
||||
.data start:0x00000000 end:0x0000058C
|
||||
.bss start:0x00000008 end:0x0000009C
|
||||
@@ -1,128 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__ct__10daBd_HIO_cFv = .text:0x000000CC; // type:function size:0x58 scope:global align:4
|
||||
anm_init__FP8bd_classifUcf = .text:0x00000124; // type:function size:0xB0 scope:global align:4
|
||||
daBd_Draw__FP8bd_class = .text:0x000001D4; // type:function size:0x80 scope:global align:4
|
||||
s_a_sub__FPvPv = .text:0x00000254; // type:function size:0x120 scope:global align:4
|
||||
land_check__FP8bd_class = .text:0x00000374; // type:function size:0x2F0 scope:global align:4
|
||||
turn_set__FP8bd_class = .text:0x00000664; // type:function size:0x74 scope:global align:4
|
||||
action__FP8bd_class = .text:0x000006D8; // type:function size:0x17A0 scope:global align:4
|
||||
daBd_Execute__FP8bd_class = .text:0x00001E78; // type:function size:0x338 scope:global align:4
|
||||
daBd_IsDelete__FP8bd_class = .text:0x000021B0; // type:function size:0x8 scope:global align:4
|
||||
daBd_Delete__FP8bd_class = .text:0x000021B8; // type:function size:0x68 scope:global align:4
|
||||
useHeapInit__FP10fopAc_ac_c = .text:0x00002220; // type:function size:0x1C4 scope:global align:4
|
||||
daBd_Create__FP10fopAc_ac_c = .text:0x000023E4; // type:function size:0x35C scope:global align:4
|
||||
__dt__10daBd_HIO_cFv = .text:0x00002740; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_bd_cpp = .text:0x00002780; // type:function size:0xF0 scope:global align:4
|
||||
getModel__14mDoExt_McaMorfFv = .text:0x00002870; // type:function size:0x8 scope:global align:4
|
||||
setFrame__14mDoExt_baseAnmFf = .text:0x00002878; // type:function size:0x8 scope:global align:4
|
||||
getBd1Mtx__12daNpc_Kkri_cFv = .text:0x00002880; // type:function size:0x18 scope:global align:4
|
||||
getBd2Mtx__12daNpc_Kkri_cFv = .text:0x00002898; // type:function size:0x18 scope:global align:4
|
||||
getBd3Mtx__12daNpc_Kkri_cFv = .text:0x000028B0; // type:function size:0x18 scope:global align:4
|
||||
YrotM__14mDoMtx_stack_cFs = .text:0x000028C8; // type:function size:0x10 scope:global align:4
|
||||
XrotM__14mDoMtx_stack_cFs = .text:0x000028D8; // type:function size:0x10 scope:global align:4
|
||||
ZrotM__14mDoMtx_stack_cFs = .text:0x000028E8; // type:function size:0x10 scope:global align:4
|
||||
get__14mDoMtx_stack_cFv = .text:0x000028F8; // type:function size:0xC scope:global align:4
|
||||
setBaseTRMtx__8J3DModelFPA4_f = .text:0x00002904; // type:function size:0x10 scope:global align:4
|
||||
fopAcM_GetRoomNo__FPC10fopAc_ac_c = .text:0x00002914; // type:function size:0xC scope:global align:4
|
||||
fopAcM_SearchByName__Fs = .text:0x00002920; // type:function size:0x30 scope:global align:4
|
||||
dComIfGp_event_runCheck__Fv = .text:0x00002950; // type:function size:0x18 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@100751 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@100752 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@100753 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@100754 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@100763 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
|
||||
@100764 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float
|
||||
@100836 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float
|
||||
@100900 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@100901 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@100902 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@100903 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@100904 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@96669 = .rodata:0x00000030; // type:object size:0x6 scope:local align:4 data:2byte
|
||||
@100911 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float
|
||||
@101194 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@101195 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@101196 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4 data:float
|
||||
@101197 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@101198 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@101200 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@101201 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@101202 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@101203 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@101204 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@101205 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@101206 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@101207 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@101208 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@101209 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@101210 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@101211 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@101212 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@101213 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@101214 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@101215 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@101216 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@101217 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@101218 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@101219 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@101220 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@101223 = .rodata:0x000000A8; // type:object size:0x8 scope:local align:4
|
||||
@101256 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@101257 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@101258 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@101454 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@101515 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4 data:string
|
||||
@101516 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@101517 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@101518 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4 data:string
|
||||
@101519 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@101520 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@101521 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@101522 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@101523 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@101524 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@101525 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4 data:string
|
||||
@101526 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4 data:string
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
land_pos103 = .data:0x00000000; // type:object size:0x140 scope:global align:4
|
||||
land_pos127 = .data:0x00000140; // type:object size:0x140 scope:global align:4
|
||||
lbl_61_data_280 = .data:0x00000280; // type:object size:0x14
|
||||
wait_bck = .data:0x00000294; // type:object size:0xC scope:global align:4
|
||||
lbl_61_data_2A0 = .data:0x000002A0; // type:object size:0x8 data:string
|
||||
@101226 = .data:0x000002A8; // type:object size:0x20 scope:local align:4
|
||||
cc_sph_src$97199 = .data:0x000002C8; // type:object size:0x40 scope:local align:4
|
||||
l_daBd_Method = .data:0x00000308; // type:object size:0x20 scope:global align:4
|
||||
g_profile_BD = .data:0x00000328; // type:object size:0x30 scope:global align:4
|
||||
__vt__10daBd_HIO_c = .data:0x00000358; // type:object size:0xC scope:global align:4
|
||||
lbl_61_data_364 = .data:0x00000364; // type:object size:0xB data:string
|
||||
@97247 = .data:0x00000370; // type:object size:0xC scope:local align:4
|
||||
__RTTI__10daBd_HIO_c = .data:0x0000037C; // type:object size:0x8 scope:global align:4
|
||||
lbl_61_data_384 = .data:0x00000384; // type:object size:0x34
|
||||
@97321 = .data:0x000003B8; // type:object size:0x3C scope:local align:4
|
||||
lbl_61_data_3F4 = .data:0x000003F4; // type:object size:0x14
|
||||
@97323 = .data:0x00000408; // type:object size:0x34 scope:local align:4
|
||||
lbl_61_data_43C = .data:0x0000043C; // type:object size:0x14
|
||||
@97381 = .data:0x00000450; // type:object size:0x24 scope:local align:4
|
||||
lbl_61_data_474 = .data:0x00000474; // type:object size:0x18
|
||||
@97383 = .data:0x0000048C; // type:object size:0xC scope:local align:4
|
||||
lbl_61_data_498 = .data:0x00000498; // type:object size:0x1C
|
||||
@97385 = .data:0x000004B4; // type:object size:0xC scope:local align:4
|
||||
lbl_61_data_4C0 = .data:0x000004C0; // type:object size:0xCC
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@96444 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000018; // type:object size:0x20 scope:global align:4 data:byte
|
||||
@96449 = .bss:0x00000038; // type:object size:0xC scope:local align:4
|
||||
@96450 = .bss:0x00000044; // type:object size:0xC scope:local align:4
|
||||
@96451 = .bss:0x00000050; // type:object size:0xC scope:local align:4
|
||||
@96452 = .bss:0x0000005C; // type:object size:0xC scope:local align:4
|
||||
land_sp_pos = .bss:0x00000068; // type:object size:0x30 scope:global align:4
|
||||
rope_pt = .bss:0x00000098; // type:object size:0x4 scope:global align:4
|
||||
@@ -1,15 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_bg.cpp:
|
||||
.text start:0x0000005C end:0x00001418
|
||||
.rodata start:0x00000000 end:0x00000024
|
||||
.data start:0x00000000 end:0x00000174
|
||||
@@ -1,51 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
createMatAnm__FP12J3DModelDataUs = .text:0x0000005C; // type:function size:0x140 scope:global align:4
|
||||
create__13daBg_btkAnm_cFP12J3DModelDataP19J3DAnmTextureSRTKeyi = .text:0x0000019C; // type:function size:0x100 scope:global align:4
|
||||
create__13daBg_brkAnm_cFP12J3DModelDataP15J3DAnmTevRegKeyi = .text:0x0000029C; // type:function size:0x134 scope:global align:4
|
||||
checkCreateHeap__FP10fopAc_ac_c = .text:0x000003D0; // type:function size:0x4 scope:global align:4
|
||||
createHeap__6daBg_cFv = .text:0x000003D4; // type:function size:0x4C4 scope:global align:4
|
||||
__dt__6daBg_cFv = .text:0x00000898; // type:function size:0x120 scope:global align:4
|
||||
daBg_Draw__FP6daBg_c = .text:0x000009B8; // type:function size:0x608 scope:global align:4
|
||||
daBg_Execute__FP6daBg_c = .text:0x00000FC0; // type:function size:0x11C scope:global align:4
|
||||
daBg_IsDelete__FP6daBg_c = .text:0x000010DC; // type:function size:0x8 scope:global align:4
|
||||
daBg_Delete__FP6daBg_c = .text:0x000010E4; // type:function size:0x28 scope:global align:4
|
||||
daBg_Create__FP10fopAc_ac_c = .text:0x0000110C; // type:function size:0x2E8 scope:global align:4
|
||||
dComIfGd_setListBG__Fv = .text:0x000013F4; // type:function size:0x24 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@97914 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@97934 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@98080 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@98224 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@98225 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:string
|
||||
@98226 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@98230 = .rodata:0x00000018; // type:object size:0x8 scope:local align:4 data:double
|
||||
@98253 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4 data:float
|
||||
lbl_3_data_0 = .data:0x00000000; // type:object size:0x42
|
||||
lbl_3_data_42 = .data:0x00000042; // type:object size:0x42
|
||||
lbl_3_data_84 = .data:0x00000084; // type:object size:0x42
|
||||
lbl_3_data_C6 = .data:0x000000C6; // type:object size:0x42
|
||||
l_tevStrType$localstatic$draw__6daBg_cFv = .data:0x00000108; // type:object size:0x18 scope:local align:4
|
||||
l_daBg_Method = .data:0x00000120; // type:object size:0x20 scope:global align:4
|
||||
g_profile_BG = .data:0x00000140; // type:object size:0x34 scope:global align:4
|
||||
lbl_3_data_174 = .data:0x00000174; // type:object size:0xA data:string
|
||||
lbl_3_data_17E = .data:0x0000017E; // type:object size:0xA data:string
|
||||
lbl_3_data_188 = .data:0x00000188; // type:object size:0x16 data:string
|
||||
lbl_3_data_19E = .data:0x0000019E; // type:object size:0x8 data:string
|
||||
lbl_3_data_1A6 = .data:0x000001A6; // type:object size:0x8 data:string
|
||||
lbl_3_data_1AE = .data:0x000001AE; // type:object size:0x5 data:string
|
||||
lbl_3_data_1B3 = .data:0x000001B3; // type:object size:0x5 data:string
|
||||
lbl_3_data_1B8 = .data:0x000001B8; // type:object size:0x5 data:string
|
||||
lbl_3_data_1BD = .data:0x000001BD; // type:object size:0x5 data:string
|
||||
lbl_3_data_1C2 = .data:0x000001C2; // type:object size:0x5 data:string
|
||||
lbl_3_data_1C7 = .data:0x000001C7; // type:object size:0x9 data:string
|
||||
lbl_3_data_1D0 = .data:0x000001D0; // type:object size:0x9 data:string
|
||||
lbl_3_data_1D9 = .data:0x000001D9; // type:object size:0x9 data:string
|
||||
lbl_3_data_1E2 = .data:0x000001E2; // type:object size:0x3 data:string
|
||||
lbl_3_data_1E5 = .data:0x000001E5; // type:object size:0x3 data:string
|
||||
lbl_3_data_1E8 = .data:0x000001E8; // type:object size:0x3 data:string
|
||||
lbl_3_data_1EB = .data:0x000001EB; // type:object size:0x3 data:string
|
||||
lbl_3_bss_0 = .bss:0x00000000; // type:object size:0x20
|
||||
@@ -1,15 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_bg_obj.cpp:
|
||||
.text start:0x0000005C end:0x00002D5C
|
||||
.rodata start:0x00000000 end:0x00000164
|
||||
.data start:0x00000000 end:0x0000019C
|
||||
@@ -1,92 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
getBmdName__Fii = .text:0x0000005C; // type:function size:0x6C scope:global align:4
|
||||
getBtkName__Fii = .text:0x000000C8; // type:function size:0x6C scope:global align:4
|
||||
getBrkName__Fii = .text:0x00000134; // type:function size:0x6C scope:global align:4
|
||||
initParticleBlock__Q29daBgObj_c11spec_data_cFPUc = .text:0x000001A0; // type:function size:0x24 scope:global align:4
|
||||
initSoundBlock__Q29daBgObj_c11spec_data_cFPUc = .text:0x000001C4; // type:function size:0x24 scope:global align:4
|
||||
initTexShareBlock__Q29daBgObj_c11spec_data_cFPUc = .text:0x000001E8; // type:function size:0xB8 scope:global align:4
|
||||
Set__Q29daBgObj_c11spec_data_cFPv = .text:0x000002A0; // type:function size:0x244 scope:global align:4
|
||||
initAtt__9daBgObj_cFv = .text:0x000004E4; // type:function size:0x120 scope:global align:4
|
||||
setAttentionInfo__9daBgObj_cFP10fopAc_ac_c = .text:0x00000604; // type:function size:0x30 scope:global align:4
|
||||
initBaseMtx__9daBgObj_cFv = .text:0x00000634; // type:function size:0x5C scope:global align:4
|
||||
setBaseMtx__9daBgObj_cFv = .text:0x00000690; // type:function size:0x70 scope:global align:4
|
||||
settingCullSizeBoxForCo__9daBgObj_cFi = .text:0x00000700; // type:function size:0x100 scope:global align:4
|
||||
settingCullSizeBoxForCull__9daBgObj_cFi = .text:0x00000800; // type:function size:0x1D0 scope:global align:4
|
||||
CreateInitType0__9daBgObj_cFv = .text:0x000009D0; // type:function size:0x70 scope:global align:4
|
||||
CreateInitType1__9daBgObj_cFv = .text:0x00000A40; // type:function size:0x198 scope:global align:4
|
||||
Create__9daBgObj_cFv = .text:0x00000BD8; // type:function size:0x38 scope:global align:4
|
||||
CreateHeapType0__9daBgObj_cFv = .text:0x00000C10; // type:function size:0x210 scope:global align:4
|
||||
CreateHeapType1__9daBgObj_cFv = .text:0x00000E20; // type:function size:0x2B4 scope:global align:4
|
||||
doShareTexture__9daBgObj_cFv = .text:0x000010D4; // type:function size:0x100 scope:global align:4
|
||||
CreateHeap__9daBgObj_cFv = .text:0x000011D4; // type:function size:0xA8 scope:global align:4
|
||||
create1st__9daBgObj_cFv = .text:0x0000127C; // type:function size:0x118 scope:global align:4
|
||||
setColCommon__9daBgObj_cFv = .text:0x00001394; // type:function size:0x90 scope:global align:4
|
||||
set_tri_0__9daBgObj_cFv = .text:0x00001424; // type:function size:0x138 scope:global align:4
|
||||
set_tri_1__9daBgObj_cFv = .text:0x0000155C; // type:function size:0x138 scope:global align:4
|
||||
set_cyl_0__9daBgObj_cFv = .text:0x00001694; // type:function size:0x94 scope:global align:4
|
||||
set_tri_2__9daBgObj_cFv = .text:0x00001728; // type:function size:0x134 scope:global align:4
|
||||
set_tri_3__9daBgObj_cFv = .text:0x0000185C; // type:function size:0x1AC scope:global align:4
|
||||
setParticle__9daBgObj_cFv = .text:0x00001A08; // type:function size:0x26C scope:global align:4
|
||||
setSe__9daBgObj_cFv = .text:0x00001C74; // type:function size:0xA0 scope:global align:4
|
||||
checkDestroy__9daBgObj_cFv = .text:0x00001D14; // type:function size:0xEC scope:global align:4
|
||||
checkHitAt__9daBgObj_cFP8cCcD_Obj = .text:0x00001E00; // type:function size:0x98 scope:global align:4
|
||||
orderWait_tri__9daBgObj_cFv = .text:0x00001E98; // type:function size:0x1F8 scope:global align:4
|
||||
orderWait_cyl__9daBgObj_cFv = .text:0x00002090; // type:function size:0x1A8 scope:global align:4
|
||||
orderWait_spec__9daBgObj_cFv = .text:0x00002238; // type:function size:0x150 scope:global align:4
|
||||
actionOrderWait__9daBgObj_cFv = .text:0x00002388; // type:function size:0xA8 scope:global align:4
|
||||
actionOrder__9daBgObj_cFv = .text:0x00002430; // type:function size:0x1B8 scope:global align:4
|
||||
actionEvent__9daBgObj_cFv = .text:0x000025E8; // type:function size:0x60 scope:global align:4
|
||||
actionWait__9daBgObj_cFv = .text:0x00002648; // type:function size:0x8 scope:global align:4
|
||||
ExecuteType0__9daBgObj_cFv = .text:0x00002650; // type:function size:0x180 scope:global align:4
|
||||
ExecuteType1__9daBgObj_cFv = .text:0x000027D0; // type:function size:0x64 scope:global align:4
|
||||
Execute__9daBgObj_cFPPA3_A4_f = .text:0x00002834; // type:function size:0xBC scope:global align:4
|
||||
Draw__9daBgObj_cFv = .text:0x000028F0; // type:function size:0x1E4 scope:global align:4
|
||||
indirectProc__9daBgObj_cFP8J3DModel = .text:0x00002AD4; // type:function size:0x8C scope:global align:4
|
||||
Delete__9daBgObj_cFv = .text:0x00002B60; // type:function size:0x78 scope:global align:4
|
||||
daBgObj_create1st__FP9daBgObj_c = .text:0x00002BD8; // type:function size:0xF8 scope:global align:4
|
||||
daBgObj_MoveBGDelete__FP9daBgObj_c = .text:0x00002CD0; // type:function size:0x4 scope:global align:4
|
||||
daBgObj_MoveBGExecute__FP9daBgObj_c = .text:0x00002CD4; // type:function size:0x4 scope:global align:4
|
||||
daBgObj_MoveBGDraw__FP9daBgObj_c = .text:0x00002CD8; // type:function size:0x10 scope:global align:4
|
||||
__ct__8dCcD_TriFv = .text:0x00002CE8; // type:function size:0x74 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
l_cyl_src = .rodata:0x00000000; // type:object size:0x44 scope:global align:4
|
||||
mCreateHeapFunc__9daBgObj_c = .rodata:0x00000044; // type:object size:0x30 scope:global align:4
|
||||
mCreateInitFunc__9daBgObj_c = .rodata:0x00000074; // type:object size:0x30 scope:global align:4
|
||||
mExecuteFunc__9daBgObj_c = .rodata:0x000000A4; // type:object size:0x30 scope:global align:4
|
||||
mTgSetFunc__9daBgObj_c = .rodata:0x000000D4; // type:object size:0x3C scope:global align:4
|
||||
@95512 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4 data:float
|
||||
@95567 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4 data:float
|
||||
@95609 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4 data:string
|
||||
@95610 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@95730 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4 data:float
|
||||
lbl_4_rodata_124 = .rodata:0x00000124; // type:object size:0x8
|
||||
@96005 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4 data:string
|
||||
@96016 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4 data:float
|
||||
l_func$92718 = .rodata:0x00000134; // type:object size:0x30 scope:local align:4
|
||||
l_tri_src = .data:0x00000000; // type:object size:0x54 scope:global align:4
|
||||
lbl_4_data_54 = .data:0x00000054; // type:object size:0xC data:string
|
||||
lbl_4_data_60 = .data:0x00000060; // type:object size:0xF data:string
|
||||
lbl_4_data_6F = .data:0x0000006F; // type:object size:0xC data:string
|
||||
lbl_4_data_7B = .data:0x0000007B; // type:object size:0xF data:string
|
||||
lbl_4_data_8A = .data:0x0000008A; // type:object size:0xC data:string
|
||||
lbl_4_data_96 = .data:0x00000096; // type:object size:0xF data:string
|
||||
lbl_4_data_A5 = .data:0x000000A5; // type:object size:0x9 data:string
|
||||
l_specName = .data:0x000000B0; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
lbl_4_data_B4 = .data:0x000000B4; // type:object size:0x24
|
||||
lbl_4_data_D8 = .data:0x000000D8; // type:object size:0xC data:string
|
||||
lbl_4_data_E4 = .data:0x000000E4; // type:object size:0x11 data:string
|
||||
lbl_4_data_F5 = .data:0x000000F5; // type:object size:0x7 data:string
|
||||
daBgObj_METHODS = .data:0x000000FC; // type:object size:0x20 scope:global align:4
|
||||
g_profile_BG_OBJ = .data:0x0000011C; // type:object size:0x30 scope:global align:4
|
||||
__vt__9daBgObj_c = .data:0x0000014C; // type:object size:0x28 scope:global align:4
|
||||
lbl_4_data_174 = .data:0x00000174; // type:object size:0xA data:string
|
||||
@92846 = .data:0x00000180; // type:object size:0x14 scope:local align:4
|
||||
__RTTI__9daBgObj_c = .data:0x00000194; // type:object size:0x8 scope:global align:4
|
||||
lbl_4_bss_0 = .bss:0x00000000; // type:object size:0x10
|
||||
lbl_4_bss_10 = .bss:0x00000010; // type:object size:0x10
|
||||
lbl_4_bss_20 = .bss:0x00000020; // type:object size:0x10
|
||||
lbl_4_bss_30 = .bss:0x00000030; // type:object size:0x10
|
||||
@@ -1,16 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_boomerang.cpp:
|
||||
.text start:0x0000005C end:0x00003D88
|
||||
.rodata start:0x00000000 end:0x0000010C
|
||||
.data start:0x00000000 end:0x00000600
|
||||
.bss start:0x00000000 end:0x00000040
|
||||
@@ -1,138 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
createHeap__19daBoomerang_sight_cFv = .text:0x0000005C; // type:function size:0x230 scope:global align:4
|
||||
initialize__19daBoomerang_sight_cFv = .text:0x0000028C; // type:function size:0x788 scope:global align:4
|
||||
playAnime__19daBoomerang_sight_cFii = .text:0x00000A14; // type:function size:0x244 scope:global align:4
|
||||
initFrame__19daBoomerang_sight_cFi = .text:0x00000C58; // type:function size:0x40 scope:global align:4
|
||||
copyNumData__19daBoomerang_sight_cFi = .text:0x00000C98; // type:function size:0xB8 scope:global align:4
|
||||
setSight__19daBoomerang_sight_cFPC4cXyzi = .text:0x00000D50; // type:function size:0xD8 scope:global align:4
|
||||
draw__19daBoomerang_sight_cFv = .text:0x00000E28; // type:function size:0x35C scope:global align:4
|
||||
windModelCallBack__13daBoomerang_cFv = .text:0x00001184; // type:function size:0xD0 scope:global align:4
|
||||
daBoomeang_windModelCallBack__FP8J3DJointi = .text:0x00001254; // type:function size:0x3C scope:global align:4
|
||||
draw__13daBoomerang_cFv = .text:0x00001290; // type:function size:0x248 scope:global align:4
|
||||
daBoomerang_Draw__FP13daBoomerang_c = .text:0x000014D8; // type:function size:0x4 scope:global align:4
|
||||
lockLineCallback__13daBoomerang_cFP10fopAc_ac_c = .text:0x000014DC; // type:function size:0x30 scope:global align:4
|
||||
daBoomerang_lockLineCallback__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x0000150C; // type:function size:0x8 scope:global align:4
|
||||
moveLineCallback__13daBoomerang_cFP10fopAc_ac_c = .text:0x00001514; // type:function size:0xA0 scope:global align:4
|
||||
daBoomerang_moveLineCallback__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x000015B4; // type:function size:0x8 scope:global align:4
|
||||
pushLockList__13daBoomerang_cFi = .text:0x000015BC; // type:function size:0x108 scope:global align:4
|
||||
cancelLockActorBase__13daBoomerang_cFP10fopAc_ac_c = .text:0x000016C4; // type:function size:0x40 scope:global align:4
|
||||
setAimActorBase__13daBoomerang_cFP10fopAc_ac_c = .text:0x00001704; // type:function size:0x24 scope:global align:4
|
||||
setLockActor__13daBoomerang_cFP10fopAc_ac_ci = .text:0x00001728; // type:function size:0xF4 scope:global align:4
|
||||
resetLockActor__13daBoomerang_cFv = .text:0x0000181C; // type:function size:0x48 scope:global align:4
|
||||
setRoomInfo__13daBoomerang_cFv = .text:0x00001864; // type:function size:0xB0 scope:global align:4
|
||||
setKeepMatrix__13daBoomerang_cFv = .text:0x00001914; // type:function size:0xFC scope:global align:4
|
||||
setMoveMatrix__13daBoomerang_cFv = .text:0x00001A10; // type:function size:0x120 scope:global align:4
|
||||
setRotAngle__13daBoomerang_cFv = .text:0x00001B30; // type:function size:0x98 scope:global align:4
|
||||
setAimPos__13daBoomerang_cFv = .text:0x00001BC8; // type:function size:0xBC scope:global align:4
|
||||
checkBgHit__13daBoomerang_cFP4cXyzP4cXyz = .text:0x00001C84; // type:function size:0x1E0 scope:global align:4
|
||||
setEffectTraceMatrix__13daBoomerang_cFPUlUs = .text:0x00001E64; // type:function size:0xC4 scope:global align:4
|
||||
setEffect__13daBoomerang_cFv = .text:0x00001F28; // type:function size:0x5F8 scope:global align:4
|
||||
procWait__13daBoomerang_cFv = .text:0x00002520; // type:function size:0x668 scope:global align:4
|
||||
procMove__13daBoomerang_cFv = .text:0x00002B88; // type:function size:0x750 scope:global align:4
|
||||
execute__13daBoomerang_cFv = .text:0x000032D8; // type:function size:0x384 scope:global align:4
|
||||
daBoomerang_Execute__FP13daBoomerang_c = .text:0x0000365C; // type:function size:0x4 scope:global align:4
|
||||
__dt__13daBoomerang_cFv = .text:0x00003660; // type:function size:0xF4 scope:global align:4
|
||||
daBoomerang_Delete__FP13daBoomerang_c = .text:0x00003754; // type:function size:0x28 scope:global align:4
|
||||
createHeap__13daBoomerang_cFv = .text:0x0000377C; // type:function size:0x174 scope:global align:4
|
||||
daBoomerang_createHeap__FP10fopAc_ac_c = .text:0x000038F0; // type:function size:0x4 scope:global align:4
|
||||
create__13daBoomerang_cFv = .text:0x000038F4; // type:function size:0x428 scope:global align:4
|
||||
daBoomerang_Create__FP10fopAc_ac_c = .text:0x00003D1C; // type:function size:0x4 scope:global align:4
|
||||
__dt__19daBoomerang_sight_cFv = .text:0x00003D20; // type:function size:0x68 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
m_lockWaitTime__18daBoomerang_HIO_c0 = .rodata:0x00000006; // type:object size:0x2 scope:global align:2
|
||||
m_minCircleR__18daBoomerang_HIO_c0 = .rodata:0x00000008; // type:object size:0x4 scope:global align:4
|
||||
m_middleCircleR__18daBoomerang_HIO_c0 = .rodata:0x0000000C; // type:object size:0x4 scope:global align:4
|
||||
m_maxCircleR__18daBoomerang_HIO_c0 = .rodata:0x00000010; // type:object size:0x4 scope:global align:4
|
||||
m_scale__18daBoomerang_HIO_c0 = .rodata:0x00000014; // type:object size:0x4 scope:global align:4
|
||||
m_lockWindScale__18daBoomerang_HIO_c0 = .rodata:0x00000018; // type:object size:0x4 scope:global align:4
|
||||
l_lockSeFlg = .rodata:0x0000001C; // type:object size:0x14 scope:global align:4
|
||||
@111786 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float
|
||||
@111835 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@111836 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@111837 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@111838 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@111839 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4 data:string
|
||||
@111843 = .rodata:0x00000048; // type:object size:0x8 scope:local align:4 data:double
|
||||
@111848 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4 data:float
|
||||
@111911 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4 data:float
|
||||
@111912 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4 data:float
|
||||
@111948 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@111949 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@111950 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@111951 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@111952 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@111953 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@111954 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@111955 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@111956 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@111957 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@111960 = .rodata:0x00000088; // type:object size:0x8 scope:local align:4
|
||||
@112182 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112189 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@112190 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@112191 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@112223 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112234 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112304 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112305 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4 data:float
|
||||
@112455 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@112456 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@112457 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@112458 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@112459 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@112460 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@112461 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@112607 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@112608 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@108426 = .rodata:0x000000D4; // type:object size:0xC scope:local align:4
|
||||
@112735 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@112736 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@112737 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@112738 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@112739 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@112740 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@112741 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@112844 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4 data:string
|
||||
@112845 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@113039 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4 data:float
|
||||
loopFrame$107762 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
@112511 = .data:0x0000014C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@112658 = .data:0x00000158; // type:object size:0xC scope:local align:4 data:4byte
|
||||
l_atCpsSrc = .data:0x00000164; // type:object size:0x4C scope:global align:4
|
||||
l_windAtCylSrc = .data:0x000001B0; // type:object size:0x44 scope:global align:4
|
||||
@112967 = .data:0x000001F4; // type:object size:0xC scope:local align:4
|
||||
@112968 = .data:0x00000200; // type:object size:0xC scope:local align:4
|
||||
@112969 = .data:0x0000020C; // type:object size:0xC scope:local align:4
|
||||
l_daBoomerang_Method = .data:0x00000218; // type:object size:0x20 scope:global align:4
|
||||
g_profile_BOOMERANG = .data:0x00000238; // type:object size:0x30 scope:global align:4
|
||||
__vt__19daBoomerang_sight_c = .data:0x00000268; // type:object size:0x10 scope:global align:4
|
||||
lbl_47_data_278 = .data:0x00000278; // type:object size:0x14 data:string
|
||||
@108804 = .data:0x0000028C; // type:object size:0xC scope:local align:4
|
||||
__RTTI__19daBoomerang_sight_c = .data:0x00000298; // type:object size:0x8 scope:global align:4
|
||||
lbl_47_data_2A0 = .data:0x000002A0; // type:object size:0x34
|
||||
@108864 = .data:0x000002D4; // type:object size:0x3C scope:local align:4
|
||||
lbl_47_data_310 = .data:0x00000310; // type:object size:0x14
|
||||
@108866 = .data:0x00000324; // type:object size:0x34 scope:local align:4
|
||||
lbl_47_data_358 = .data:0x00000358; // type:object size:0x6C
|
||||
@108918 = .data:0x000003C4; // type:object size:0x4C scope:local align:4
|
||||
lbl_47_data_410 = .data:0x00000410; // type:object size:0x14
|
||||
@108922 = .data:0x00000424; // type:object size:0x44 scope:local align:4
|
||||
lbl_47_data_468 = .data:0x00000468; // type:object size:0x14
|
||||
@108924 = .data:0x0000047C; // type:object size:0x24 scope:local align:4
|
||||
lbl_47_data_4A0 = .data:0x000004A0; // type:object size:0x18
|
||||
@108926 = .data:0x000004B8; // type:object size:0xC scope:local align:4
|
||||
lbl_47_data_4C4 = .data:0x000004C4; // type:object size:0x1C
|
||||
@108928 = .data:0x000004E0; // type:object size:0xC scope:local align:4
|
||||
lbl_47_data_4EC = .data:0x000004EC; // type:object size:0x34
|
||||
@108962 = .data:0x00000520; // type:object size:0x14 scope:local align:4
|
||||
lbl_47_data_534 = .data:0x00000534; // type:object size:0xCC
|
||||
...bss.0 = .bss:0x00000000; // type:label scope:local align:4
|
||||
effDirection$108188 = .bss:0x00000004; // type:object size:0xC scope:local align:4
|
||||
effScale0$108191 = .bss:0x00000014; // type:object size:0xC scope:local align:4
|
||||
effScaleSand$108194 = .bss:0x00000024; // type:object size:0xC scope:local align:4
|
||||
effScaleGrass$108197 = .bss:0x00000034; // type:object size:0xC scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_bullet.cpp:
|
||||
.text start:0x000000CC end:0x0000096C
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000060
|
||||
.data start:0x00000000 end:0x000000DC
|
||||
.bss start:0x00000008 end:0x00000058
|
||||
@@ -1,56 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__dt__10daBullet_cFv = .text:0x000000CC; // type:function size:0xC0 scope:global align:4
|
||||
create__10daBullet_cFv = .text:0x0000018C; // type:function size:0x160 scope:global align:4
|
||||
CreateHeap__10daBullet_cFv = .text:0x000002EC; // type:function size:0x7C scope:global align:4
|
||||
Execute__10daBullet_cFv = .text:0x00000368; // type:function size:0x168 scope:global align:4
|
||||
Draw__10daBullet_cFv = .text:0x000004D0; // type:function size:0x68 scope:global align:4
|
||||
createHeapCallBack__10daBullet_cFP10fopAc_ac_c = .text:0x00000538; // type:function size:0x4 scope:global align:4
|
||||
getTypeFromParam__10daBullet_cFv = .text:0x0000053C; // type:function size:0x20 scope:global align:4
|
||||
initialize__10daBullet_cFv = .text:0x0000055C; // type:function size:0x138 scope:global align:4
|
||||
setProcess__10daBullet_cFM10daBullet_cFPCvPvPv_i = .text:0x00000694; // type:function size:0xA8 scope:global align:4
|
||||
wait__10daBullet_cFPv = .text:0x0000073C; // type:function size:0x94 scope:global align:4
|
||||
move__10daBullet_cFPv = .text:0x000007D0; // type:function size:0x8C scope:global align:4
|
||||
daBullet_Create__FPv = .text:0x0000085C; // type:function size:0x4 scope:global align:4
|
||||
daBullet_Delete__FPv = .text:0x00000860; // type:function size:0x34 scope:global align:4
|
||||
daBullet_Execute__FPv = .text:0x00000894; // type:function size:0x4 scope:global align:4
|
||||
daBullet_Draw__FPv = .text:0x00000898; // type:function size:0x4 scope:global align:4
|
||||
daBullet_IsDelete__FPv = .text:0x0000089C; // type:function size:0x8 scope:global align:4
|
||||
__sinit_\d_a_bullet_cpp = .text:0x000008A4; // type:function size:0x78 scope:global align:4
|
||||
__dt__16daBullet_Param_cFv = .text:0x0000091C; // type:function size:0x40 scope:global align:4
|
||||
__ct__16daBullet_Param_cFv = .text:0x0000095C; // type:function size:0x10 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
mCcDObjInfo__10daBullet_c = .rodata:0x00000000; // type:object size:0x30 scope:global align:4
|
||||
m__16daBullet_Param_c = .rodata:0x00000030; // type:object size:0x18 scope:global align:4 data:float
|
||||
@90212 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4 data:float
|
||||
@90234 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@90235 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@90236 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@90287 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@90288 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
lbl_160_data_0 = .data:0x00000000; // type:object size:0x7 data:string
|
||||
l_resFileNameList = .data:0x00000008; // type:object size:0x4 scope:global align:4
|
||||
lbl_160_data_C = .data:0x0000000C; // type:object size:0x10 data:string
|
||||
l_bmdFileNameList = .data:0x0000001C; // type:object size:0x4 scope:global align:4
|
||||
@90253 = .data:0x00000020; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@90302 = .data:0x0000002C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
daBullet_MethodTable = .data:0x00000038; // type:object size:0x20 scope:global align:4
|
||||
g_profile_BULLET = .data:0x00000058; // type:object size:0x30 scope:global align:4
|
||||
__vt__10daBullet_c = .data:0x00000088; // type:object size:0xC scope:global align:4
|
||||
lbl_160_data_94 = .data:0x00000094; // type:object size:0xB data:string
|
||||
@89226 = .data:0x000000A0; // type:object size:0xC scope:local align:4
|
||||
__RTTI__10daBullet_c = .data:0x000000AC; // type:object size:0x8 scope:global align:4
|
||||
__vt__16daBullet_Param_c = .data:0x000000B4; // type:object size:0xC scope:global align:4
|
||||
lbl_160_data_C0 = .data:0x000000C0; // type:object size:0x11 data:string
|
||||
__RTTI__16daBullet_Param_c = .data:0x000000D4; // type:object size:0x8 scope:global align:4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4
|
||||
@88951 = .bss:0x00000008; // type:object size:0xC scope:local align:4
|
||||
l_HIO = .bss:0x00000014; // type:object size:0x4 scope:global align:4
|
||||
mCcDSph__10daBullet_c = .bss:0x00000018; // type:object size:0x40 scope:global align:4
|
||||
@@ -1,21 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_canoe.cpp:
|
||||
.text start:0x000000CC end:0x000028EC
|
||||
.rodata start:0x00000000 end:0x00000104
|
||||
.data start:0x00000000 end:0x0000009C
|
||||
.bss start:0x00000008 end:0x00000040
|
||||
@@ -1,94 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
daCanoe_searchTagWaterFall__FP10fopAc_ac_cPv = .text:0x000000CC; // type:function size:0x6C scope:global align:4
|
||||
createHeap__9daCanoe_cFv = .text:0x00000138; // type:function size:0x11C scope:global align:4
|
||||
daCanoe_createHeap__FP10fopAc_ac_c = .text:0x00000254; // type:function size:0x4 scope:global align:4
|
||||
create__9daCanoe_cFv = .text:0x00000258; // type:function size:0x3C8 scope:global align:4
|
||||
daCanoe_Create__FP10fopAc_ac_c = .text:0x00000620; // type:function size:0x4 scope:global align:4
|
||||
__dt__9daCanoe_cFv = .text:0x00000624; // type:function size:0xDC scope:global align:4
|
||||
daCanoe_Delete__FP9daCanoe_c = .text:0x00000700; // type:function size:0x28 scope:global align:4
|
||||
setRoomInfo__9daCanoe_cFv = .text:0x00000728; // type:function size:0xA4 scope:global align:4
|
||||
setMatrix__9daCanoe_cFv = .text:0x000007CC; // type:function size:0x324 scope:global align:4
|
||||
setCollision__9daCanoe_cFv = .text:0x00000AF0; // type:function size:0x17C scope:global align:4
|
||||
posMove__9daCanoe_cFv = .text:0x00000C6C; // type:function size:0x188 scope:global align:4
|
||||
checkGomikabe__9daCanoe_cFR13cBgS_PolyInfo = .text:0x00000DF4; // type:function size:0x58 scope:global align:4
|
||||
setFrontBackPos__9daCanoe_cFv = .text:0x00000E4C; // type:function size:0xC4 scope:global align:4
|
||||
frontBackBgCheck__9daCanoe_cFv = .text:0x00000F10; // type:function size:0x884 scope:global align:4
|
||||
setPaddleEffect__9daCanoe_cFv = .text:0x00001794; // type:function size:0x210 scope:global align:4
|
||||
setCanoeSliderEffect__9daCanoe_cFv = .text:0x000019A4; // type:function size:0x244 scope:global align:4
|
||||
execute__9daCanoe_cFv = .text:0x00001BE8; // type:function size:0xAC8 scope:global align:4
|
||||
daCanoe_Execute__FP9daCanoe_c = .text:0x000026B0; // type:function size:0x4 scope:global align:4
|
||||
draw__9daCanoe_cFv = .text:0x000026B4; // type:function size:0x1E0 scope:global align:4
|
||||
daCanoe_Draw__FP9daCanoe_c = .text:0x00002894; // type:function size:0x4 scope:global align:4
|
||||
__ct__13dBgS_LinkAcchFv = .text:0x00002898; // type:function size:0x54 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
l_cylOffsetZ = .rodata:0x00000018; // type:object size:0x14 scope:global align:4 data:float
|
||||
@109791 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@109792 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@109793 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@109794 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@109795 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@109796 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@109797 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@109798 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@109799 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@109896 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4 data:float
|
||||
@109990 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@109991 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@109992 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@109993 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@109994 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4 data:string
|
||||
@109995 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@109996 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@109997 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@109998 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@109999 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@110000 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@110001 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@110002 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@110003 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@110004 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@110005 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@110006 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@110040 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4 data:float
|
||||
@110068 = .rodata:0x000000A0; // type:object size:0x8 scope:local align:4
|
||||
@110227 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@110228 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@110229 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@110280 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4 data:string
|
||||
@110281 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
effName$106836 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@110362 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@110536 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4 data:string
|
||||
@110537 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@110538 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@110539 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@110540 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@110573 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@110574 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@110575 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@110576 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@110577 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
angleZeroX$106945 = .rodata:0x000000EC; // type:object size:0x2 scope:local align:4
|
||||
minAngleSpeedX$106946 = .rodata:0x000000EE; // type:object size:0x2 scope:local align:2
|
||||
maxSpeedInfo$107011 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
maxOffsetRateY$106486 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
minOffsetSpeedY$106487 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
offsetZeroSpeedY$106488 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
offsetZeroY$106489 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
l_cylSrc = .data:0x00000000; // type:object size:0x44 scope:global align:4
|
||||
lbl_62_data_44 = .data:0x00000044; // type:object size:0x8 data:string
|
||||
l_daCanoe_Method = .data:0x0000004C; // type:object size:0x20 scope:global align:4
|
||||
g_profile_CANOE = .data:0x0000006C; // type:object size:0x30 scope:global align:4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@106790 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
paddleRippleScale$106787 = .bss:0x00000018; // type:object size:0xC scope:local align:4
|
||||
@106970 = .bss:0x00000028; // type:object size:0xC scope:local align:4
|
||||
bodyRippleScale$106967 = .bss:0x00000034; // type:object size:0xC scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_coach_2D.cpp:
|
||||
.text start:0x000000CC end:0x00000E60
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000030
|
||||
.data start:0x00000000 end:0x000001B4
|
||||
.bss start:0x00000008 end:0x00000070
|
||||
@@ -1,59 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
draw__Q211daCoach2D_c6c_listFv = .text:0x000000CC; // type:function size:0x4C scope:global align:4
|
||||
daCoach2D_createHeap__FP10fopAc_ac_c = .text:0x00000118; // type:function size:0x4 scope:global align:4
|
||||
createHeap__11daCoach2D_cFv = .text:0x0000011C; // type:function size:0x2A0 scope:global align:4
|
||||
create__11daCoach2D_cFv = .text:0x000003BC; // type:function size:0x84 scope:global align:4
|
||||
draw__11daCoach2D_cFv = .text:0x00000440; // type:function size:0xAC scope:global align:4
|
||||
drawMeter__11daCoach2D_cFv = .text:0x000004EC; // type:function size:0x34C scope:global align:4
|
||||
initiate__11daCoach2D_cFv = .text:0x00000838; // type:function size:0x34 scope:global align:4
|
||||
update__11daCoach2D_cFv = .text:0x0000086C; // type:function size:0x1D4 scope:global align:4
|
||||
setBrkAnime__11daCoach2D_cFb = .text:0x00000A40; // type:function size:0x1AC scope:global align:4
|
||||
daCoach2D_create__FP11daCoach2D_c = .text:0x00000BEC; // type:function size:0x7C scope:global align:4
|
||||
daCoach2D_destroy__FP11daCoach2D_c = .text:0x00000C68; // type:function size:0x4C scope:global align:4
|
||||
daCoach2D_execute__FP11daCoach2D_c = .text:0x00000CB4; // type:function size:0x3C scope:global align:4
|
||||
daCoach2D_draw__FP11daCoach2D_c = .text:0x00000CF0; // type:function size:0x4 scope:global align:4
|
||||
__dt__15daCoach2D_HIO_cFv = .text:0x00000CF4; // type:function size:0x40 scope:global align:4
|
||||
__sinit_\d_a_coach_2D_cpp = .text:0x00000D34; // type:function size:0x48 scope:global align:4
|
||||
__ct__15daCoach2D_HIO_cFv = .text:0x00000D7C; // type:function size:0x4C scope:global align:4
|
||||
__dt__Q211daCoach2D_c6c_listFv = .text:0x00000DC8; // type:function size:0x40 scope:global align:4
|
||||
__dt__11daCoach2D_cFv = .text:0x00000E08; // type:function size:0x58 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@95637 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@95638 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@95639 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@95670 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@95671 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@95672 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@95673 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@95676 = .rodata:0x00000020; // type:object size:0x8 scope:local align:4 data:double
|
||||
@95677 = .rodata:0x00000028; // type:object size:0x8 scope:local align:4 data:double
|
||||
aParam$localstatic$__ct__15daCoach2D_HIO_cFv = .data:0x00000000; // type:object size:0x58 scope:local align:4
|
||||
lbl_161_data_58 = .data:0x00000058; // type:object size:0x8 data:string
|
||||
l_arcName = .data:0x00000060; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
lbl_161_data_64 = .data:0x00000064; // type:object size:0x1F data:string
|
||||
lbl_161_data_83 = .data:0x00000083; // type:object size:0x1F data:string
|
||||
daCoach2D_METHODS = .data:0x000000A4; // type:object size:0x20 scope:global align:4
|
||||
g_profile_COACH2D = .data:0x000000C4; // type:object size:0x30 scope:global align:4
|
||||
__vt__15daCoach2D_HIO_c = .data:0x000000F4; // type:object size:0xC scope:global align:4
|
||||
lbl_161_data_100 = .data:0x00000100; // type:object size:0x10 data:string
|
||||
@94726 = .data:0x00000110; // type:object size:0x14 scope:local align:4
|
||||
__RTTI__15daCoach2D_HIO_c = .data:0x00000124; // type:object size:0x8 scope:global align:4
|
||||
__vt__11daCoach2D_c = .data:0x0000012C; // type:object size:0xC scope:global align:4
|
||||
lbl_161_data_138 = .data:0x00000138; // type:object size:0xC data:string
|
||||
@94728 = .data:0x00000144; // type:object size:0x14 scope:local align:4
|
||||
__RTTI__11daCoach2D_c = .data:0x00000158; // type:object size:0x8 scope:global align:4
|
||||
__vt__Q211daCoach2D_c6c_list = .data:0x00000160; // type:object size:0x10 scope:global align:4
|
||||
lbl_161_data_170 = .data:0x00000170; // type:object size:0x14 data:string
|
||||
__RTTI__Q211daCoach2D_c6c_list = .data:0x00000184; // type:object size:0x8 scope:global align:4
|
||||
lbl_161_data_18C = .data:0x0000018C; // type:object size:0x1F data:string
|
||||
__RTTI__30request_of_phase_process_class = .data:0x000001AC; // type:object size:0x8 scope:global align:4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
@94435 = .bss:0x00000008; // type:object size:0xC scope:local align:4
|
||||
l_HOSTIO = .bss:0x00000014; // type:object size:0x5C scope:global align:4 data:float
|
||||
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_coach_fire.cpp:
|
||||
.text start:0x0000005C end:0x000005B8
|
||||
.rodata start:0x00000000 end:0x0000006C
|
||||
.data start:0x00000000 end:0x00000050
|
||||
@@ -1,24 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
create_init__13daCoachFire_cFv = .text:0x0000005C; // type:function size:0x124 scope:global align:4
|
||||
setBaseMtx__13daCoachFire_cFv = .text:0x00000180; // type:function size:0x74 scope:global align:4
|
||||
daCoachFire_Draw__FP13daCoachFire_c = .text:0x000001F4; // type:function size:0x100 scope:global align:4
|
||||
daCoachFire_Execute__FP13daCoachFire_c = .text:0x000002F4; // type:function size:0x194 scope:global align:4
|
||||
daCoachFire_IsDelete__FP13daCoachFire_c = .text:0x00000488; // type:function size:0x8 scope:global align:4
|
||||
daCoachFire_Delete__FP13daCoachFire_c = .text:0x00000490; // type:function size:0x6C scope:global align:4
|
||||
daCoachFire_Create__FP10fopAc_ac_c = .text:0x000004FC; // type:function size:0xBC scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
M_attr__13daCoachFire_c = .rodata:0x00000000; // type:object size:0x10 scope:global align:4
|
||||
@95960 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@95961 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@95962 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@95963 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
ccSphSrc$localstatic$initCcSphere__13daCoachFire_cFv = .rodata:0x00000020; // type:object size:0x40 scope:local align:4
|
||||
@95992 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@95993 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@95994 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4 data:string
|
||||
l_daCoachFire_Method = .data:0x00000000; // type:object size:0x20 scope:global align:4
|
||||
g_profile_COACH_FIRE = .data:0x00000020; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_cow.cpp:
|
||||
.text start:0x000000CC end:0x000091F0
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000148
|
||||
.data start:0x00000000 end:0x000006C4
|
||||
.bss start:0x00000008 end:0x000000B8
|
||||
@@ -1,289 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
calcRunAnime__7daCow_cFi = .text:0x000000CC; // type:function size:0x21C scope:global align:4
|
||||
checkBck__7daCow_cFi = .text:0x000002E8; // type:function size:0x5C scope:global align:4
|
||||
setEffect__7daCow_cFv = .text:0x00000344; // type:function size:0x248 scope:global align:4
|
||||
isChaseCowGame__7daCow_cFv = .text:0x0000058C; // type:function size:0x68 scope:global align:4
|
||||
setCarryStatus__7daCow_cFv = .text:0x000005F4; // type:function size:0x104 scope:global align:4
|
||||
setActetcStatus__7daCow_cFv = .text:0x000006F8; // type:function size:0x60 scope:global align:4
|
||||
checkNadeNadeFinish__7daCow_cFv = .text:0x00000758; // type:function size:0x2C scope:global align:4
|
||||
checkNadeNade__7daCow_cFv = .text:0x00000784; // type:function size:0x2C scope:global align:4
|
||||
setSeSnort__7daCow_cFv = .text:0x000007B0; // type:function size:0x6C scope:global align:4
|
||||
setRushVibration__7daCow_cFi = .text:0x0000081C; // type:function size:0x80 scope:global align:4
|
||||
checkThrow__7daCow_cFv = .text:0x0000089C; // type:function size:0xD8 scope:global align:4
|
||||
setBodyAngle__7daCow_cFs = .text:0x00000974; // type:function size:0xF0 scope:global align:4
|
||||
setBodyAngle2__7daCow_cFs = .text:0x00000A64; // type:function size:0x140 scope:global align:4
|
||||
setProcess__7daCow_cFM7daCow_cFPCvPv_vi = .text:0x00000BA4; // type:function size:0xA8 scope:global align:4
|
||||
damage_check__7daCow_cFv = .text:0x00000C4C; // type:function size:0x2C0 scope:global align:4
|
||||
setEnterCow20__7daCow_cFv = .text:0x00000F0C; // type:function size:0xE0 scope:global align:4
|
||||
setEnterCow10__7daCow_cFv = .text:0x00000FEC; // type:function size:0xEC scope:global align:4
|
||||
setGroundAngle__7daCow_cFv = .text:0x000010D8; // type:function size:0xA4 scope:global align:4
|
||||
s_near_cow__FPvPv = .text:0x0000117C; // type:function size:0xE8 scope:global align:4
|
||||
s_angry_cow__FPvPv = .text:0x00001264; // type:function size:0xC0 scope:global align:4
|
||||
s_angry_cow2__FPvPv = .text:0x00001324; // type:function size:0x9C scope:global align:4
|
||||
checkNearCowRun__7daCow_cFv = .text:0x000013C0; // type:function size:0x148 scope:global align:4
|
||||
action_wait__7daCow_cFv = .text:0x00001508; // type:function size:0x540 scope:global align:4
|
||||
action_eat__7daCow_cFv = .text:0x00001A48; // type:function size:0x40C scope:global align:4
|
||||
action_moo__7daCow_cFv = .text:0x00001E54; // type:function size:0x340 scope:global align:4
|
||||
action_shake__7daCow_cFv = .text:0x00002194; // type:function size:0x38C scope:global align:4
|
||||
checkNearWolf__7daCow_cFv = .text:0x00002520; // type:function size:0x64 scope:global align:4
|
||||
checkPlayerWait__7daCow_cFv = .text:0x00002584; // type:function size:0x84 scope:global align:4
|
||||
checkPlayerSurprise__7daCow_cFv = .text:0x00002608; // type:function size:0xD8 scope:global align:4
|
||||
checkPlayerPos__7daCow_cFv = .text:0x000026E0; // type:function size:0x1B4 scope:global align:4
|
||||
checkBeforeBg__7daCow_cFv = .text:0x00002894; // type:function size:0x60C scope:global align:4
|
||||
checkOutOfGate__7daCow_cF4cXyz = .text:0x00002EA0; // type:function size:0x120 scope:global align:4
|
||||
getCowshedDist__7daCow_cFv = .text:0x00002FC0; // type:function size:0x3C scope:global align:4
|
||||
checkCowIn__7daCow_cFff = .text:0x00002FFC; // type:function size:0x100 scope:global align:4
|
||||
checkCowInOwn__7daCow_cFi = .text:0x000030FC; // type:function size:0x10C scope:global align:4
|
||||
action_run__7daCow_cFv = .text:0x00003208; // type:function size:0x6D8 scope:global align:4
|
||||
checkCurringPen__7daCow_cFv = .text:0x000038E0; // type:function size:0xEC scope:global align:4
|
||||
setCowInCage__7daCow_cFv = .text:0x000039CC; // type:function size:0x164 scope:global align:4
|
||||
setEnterCount__7daCow_cFv = .text:0x00003B30; // type:function size:0x80 scope:global align:4
|
||||
action_enter__7daCow_cFv = .text:0x00003BB0; // type:function size:0x644 scope:global align:4
|
||||
isAngry__7daCow_cFv = .text:0x000041F4; // type:function size:0x84 scope:global align:4
|
||||
isGuardFad__7daCow_cFv = .text:0x00004278; // type:function size:0x80 scope:global align:4
|
||||
setAngryHit__7daCow_cFv = .text:0x000042F8; // type:function size:0xC0 scope:global align:4
|
||||
checkBeforeBgAngry__7daCow_cFs = .text:0x000043B8; // type:function size:0xB0 scope:global align:4
|
||||
setRedTev__7daCow_cFv = .text:0x00004468; // type:function size:0x6C scope:global align:4
|
||||
setAngryTurn__7daCow_cFv = .text:0x000044D4; // type:function size:0x8C scope:global align:4
|
||||
action_angry__7daCow_cFv = .text:0x00004560; // type:function size:0x904 scope:global align:4
|
||||
calcCatchPos__7daCow_cFfi = .text:0x00004E64; // type:function size:0x154 scope:global align:4
|
||||
executeCrazyWait__7daCow_cFv = .text:0x00004FB8; // type:function size:0xF8 scope:global align:4
|
||||
executeCrazyDash__7daCow_cFv = .text:0x000050B0; // type:function size:0x3E0 scope:global align:4
|
||||
initCrazyBeforeCatch__7daCow_cFi = .text:0x00005490; // type:function size:0x2C scope:global align:4
|
||||
executeCrazyBeforeCatch__7daCow_cFv = .text:0x000054BC; // type:function size:0xE8 scope:global align:4
|
||||
initCrazyCatch__7daCow_cFi = .text:0x000055A4; // type:function size:0xE4 scope:global align:4
|
||||
executeCrazyCatch__7daCow_cFv = .text:0x00005688; // type:function size:0x304 scope:global align:4
|
||||
initCrazyThrow__7daCow_cFi = .text:0x0000598C; // type:function size:0x154 scope:global align:4
|
||||
executeCrazyThrow__7daCow_cFv = .text:0x00005AE0; // type:function size:0x510 scope:global align:4
|
||||
initCrazyAttack__7daCow_cFi = .text:0x00005FF0; // type:function size:0x11C scope:global align:4
|
||||
executeCrazyAttack__7daCow_cFv = .text:0x0000610C; // type:function size:0x1B0 scope:global align:4
|
||||
initCrazyAway__7daCow_cFi = .text:0x000062BC; // type:function size:0xA4 scope:global align:4
|
||||
executeCrazyAway__7daCow_cFv = .text:0x00006360; // type:function size:0x1A0 scope:global align:4
|
||||
executeCrazyEnd__7daCow_cFv = .text:0x00006500; // type:function size:0x64 scope:global align:4
|
||||
initCrazyBack__7daCow_cFi = .text:0x00006564; // type:function size:0xD0 scope:global align:4
|
||||
executeCrazyBack__7daCow_cFv = .text:0x00006634; // type:function size:0x5CC scope:global align:4
|
||||
action_crazy__7daCow_cFv = .text:0x00006C00; // type:function size:0x290 scope:global align:4
|
||||
executeCrazyBack2__7daCow_cFv = .text:0x00006E90; // type:function size:0x3E4 scope:global align:4
|
||||
action_thrown__7daCow_cFv = .text:0x00007274; // type:function size:0x278 scope:global align:4
|
||||
checkWolfBusters__7daCow_cFv = .text:0x000074EC; // type:function size:0x11C scope:global align:4
|
||||
action_wolf__7daCow_cFv = .text:0x00007608; // type:function size:0x5A4 scope:global align:4
|
||||
action_damage__7daCow_cFv = .text:0x00007BAC; // type:function size:0x11C scope:global align:4
|
||||
action__7daCow_cFv = .text:0x00007CC8; // type:function size:0x198 scope:global align:4
|
||||
setMtx__7daCow_cFv = .text:0x00007E60; // type:function size:0x6C scope:global align:4
|
||||
setAttnPos__7daCow_cFv = .text:0x00007ECC; // type:function size:0x12C scope:global align:4
|
||||
setCollisions__7daCow_cFv = .text:0x00007FF8; // type:function size:0x1FC scope:global align:4
|
||||
Execute__7daCow_cFv = .text:0x000081F4; // type:function size:0x18C scope:global align:4
|
||||
daCow_Execute__FPv = .text:0x00008380; // type:function size:0x4 scope:global align:4
|
||||
CreateHeap__7daCow_cFv = .text:0x00008384; // type:function size:0x210 scope:global align:4
|
||||
createHeapCallBack__7daCow_cFP10fopAc_ac_c = .text:0x00008594; // type:function size:0x4 scope:global align:4
|
||||
initialize__7daCow_cFv = .text:0x00008598; // type:function size:0x4B4 scope:global align:4
|
||||
create__7daCow_cFv = .text:0x00008A4C; // type:function size:0x1A8 scope:global align:4
|
||||
daCow_Create__FPv = .text:0x00008BF4; // type:function size:0x4 scope:global align:4
|
||||
ctrlJoint__7daCow_cFP8J3DJointP8J3DModel = .text:0x00008BF8; // type:function size:0x1C8 scope:global align:4
|
||||
ctrlJointCallBack__7daCow_cFP8J3DJointi = .text:0x00008DC0; // type:function size:0x48 scope:global align:4
|
||||
Draw__7daCow_cFv = .text:0x00008E08; // type:function size:0x264 scope:global align:4
|
||||
daCow_Draw__FPv = .text:0x0000906C; // type:function size:0x4 scope:global align:4
|
||||
Delete__7daCow_cFv = .text:0x00009070; // type:function size:0x5C scope:global align:4
|
||||
daCow_Delete__FPv = .text:0x000090CC; // type:function size:0x4 scope:global align:4
|
||||
daCow_IsDelete__FPv = .text:0x000090D0; // type:function size:0x8 scope:global align:4
|
||||
__sinit_\d_a_cow_cpp = .text:0x000090D8; // type:function size:0x88 scope:global align:4
|
||||
absXZ__4cXyzCFRC3Vec = .text:0x00009160; // type:function size:0x74 scope:global align:4
|
||||
getShapeAngle__7daCow_cFv = .text:0x000091D4; // type:function size:0x1C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@107651 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@107653 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@107654 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@107655 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@107656 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@107657 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@107658 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@107659 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@107713 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@107714 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@107715 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@107716 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@107743 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@107744 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@107745 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@107746 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@107791 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4 data:float
|
||||
@107792 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4 data:float
|
||||
@107795 = .rodata:0x00000048; // type:object size:0x8 scope:local align:4 data:double
|
||||
@107956 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108085 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@108086 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@108087 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108088 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@108089 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@108090 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@108194 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@108195 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@108196 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@108333 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108378 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@99275 = .rodata:0x00000080; // type:object size:0x6 scope:local align:4
|
||||
@108516 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@108517 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@108518 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@108519 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@108520 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@108544 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108584 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108585 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108683 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108684 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@108685 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108686 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@108687 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@108688 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108722 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108831 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@108832 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@108833 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@109017 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@109018 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@109019 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@109020 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@109021 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@109111 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@109130 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@109192 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@109266 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@109267 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@109305 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@109435 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@109668 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@109669 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@109670 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@109703 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@109704 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@109735 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@109766 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@109795 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@109945 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@109946 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@109949 = .rodata:0x00000128; // type:object size:0x8 scope:local align:4
|
||||
@110104 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@110122 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@110123 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4 data:string
|
||||
@110124 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@110125 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@110126 = .rodata:0x00000144; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
cc_sph_src__21@unnamed@d_a_cow_cpp@ = .data:0x00000000; // type:object size:0x40 scope:global align:4
|
||||
pen_dir__21@unnamed@d_a_cow_cpp@ = .data:0x00000040; // type:object size:0x2 scope:global align:4 data:2byte
|
||||
gate_dir__21@unnamed@d_a_cow_cpp@ = .data:0x00000042; // type:object size:0x2 scope:global align:2 data:2byte
|
||||
l_CowRoomPosY__21@unnamed@d_a_cow_cpp@ = .data:0x00000044; // type:object size:0x4 scope:global align:4 data:string
|
||||
l_CowRoomPosX__21@unnamed@d_a_cow_cpp@ = .data:0x00000048; // type:object size:0x50 scope:global align:4
|
||||
l_CowRoomPosZ__21@unnamed@d_a_cow_cpp@ = .data:0x00000098; // type:object size:0x8 scope:global align:4
|
||||
gWolfBustersID__21@unnamed@d_a_cow_cpp@ = .data:0x000000A0; // type:object size:0xC scope:global align:4
|
||||
lbl_163_data_AC = .data:0x000000AC; // type:object size:0x4 data:string
|
||||
lbl_163_data_B0 = .data:0x000000B0; // type:object size:0x7 data:string
|
||||
@107777 = .data:0x000000B8; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@107778 = .data:0x000000C4; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@107842 = .data:0x000000D0; // type:object size:0xC scope:local align:4
|
||||
@107843 = .data:0x000000DC; // type:object size:0xC scope:local align:4
|
||||
@107844 = .data:0x000000E8; // type:object size:0xC scope:local align:4
|
||||
@107845 = .data:0x000000F4; // type:object size:0xC scope:local align:4
|
||||
@107846 = .data:0x00000100; // type:object size:0xC scope:local align:4
|
||||
@107847 = .data:0x0000010C; // type:object size:0xC scope:local align:4
|
||||
cow_number$98571 = .data:0x00000118; // type:object size:0x28 scope:local align:4
|
||||
@107975 = .data:0x00000140; // type:object size:0xC scope:local align:4
|
||||
@107992 = .data:0x0000014C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@108035 = .data:0x00000158; // type:object size:0xC scope:local align:4
|
||||
@108036 = .data:0x00000164; // type:object size:0xC scope:local align:4
|
||||
@108037 = .data:0x00000170; // type:object size:0xC scope:local align:4
|
||||
@108038 = .data:0x0000017C; // type:object size:0xC scope:local align:4
|
||||
@108039 = .data:0x00000188; // type:object size:0xC scope:local align:4
|
||||
@108040 = .data:0x00000194; // type:object size:0xC scope:local align:4
|
||||
@108041 = .data:0x000001A0; // type:object size:0xC scope:local align:4
|
||||
@108143 = .data:0x000001AC; // type:object size:0xC scope:local align:4
|
||||
@108144 = .data:0x000001B8; // type:object size:0xC scope:local align:4
|
||||
@108145 = .data:0x000001C4; // type:object size:0xC scope:local align:4
|
||||
@108146 = .data:0x000001D0; // type:object size:0xC scope:local align:4
|
||||
@108147 = .data:0x000001DC; // type:object size:0xC scope:local align:4
|
||||
@108148 = .data:0x000001E8; // type:object size:0xC scope:local align:4
|
||||
@108215 = .data:0x000001F4; // type:object size:0xC scope:local align:4
|
||||
@108216 = .data:0x00000200; // type:object size:0xC scope:local align:4
|
||||
@108217 = .data:0x0000020C; // type:object size:0xC scope:local align:4
|
||||
@108218 = .data:0x00000218; // type:object size:0xC scope:local align:4
|
||||
@108219 = .data:0x00000224; // type:object size:0xC scope:local align:4
|
||||
@108274 = .data:0x00000230; // type:object size:0xC scope:local align:4
|
||||
@108275 = .data:0x0000023C; // type:object size:0xC scope:local align:4
|
||||
@108276 = .data:0x00000248; // type:object size:0xC scope:local align:4
|
||||
@108277 = .data:0x00000254; // type:object size:0xC scope:local align:4
|
||||
@108278 = .data:0x00000260; // type:object size:0xC scope:local align:4
|
||||
@108279 = .data:0x0000026C; // type:object size:0xC scope:local align:4
|
||||
@108574 = .data:0x00000278; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@108631 = .data:0x00000284; // type:object size:0xC scope:local align:4
|
||||
@108632 = .data:0x00000290; // type:object size:0xC scope:local align:4
|
||||
@108633 = .data:0x0000029C; // type:object size:0xC scope:local align:4
|
||||
@108787 = .data:0x000002A8; // type:object size:0xC scope:local align:4
|
||||
@108838 = .data:0x000002B4; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@108847 = .data:0x000002C0; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@108958 = .data:0x000002CC; // type:object size:0xC scope:local align:4
|
||||
@108959 = .data:0x000002D8; // type:object size:0xC scope:local align:4
|
||||
@108960 = .data:0x000002E4; // type:object size:0xC scope:local align:4
|
||||
@109437 = .data:0x000002F0; // type:object size:0x20 scope:local align:4
|
||||
lbl_163_data_310 = .data:0x00000310; // type:object size:0x2C
|
||||
@109467 = .data:0x0000033C; // type:object size:0x24 scope:local align:4
|
||||
@109480 = .data:0x00000360; // type:object size:0xC scope:local align:4
|
||||
@109481 = .data:0x0000036C; // type:object size:0xC scope:local align:4
|
||||
@109482 = .data:0x00000378; // type:object size:0xC scope:local align:4
|
||||
@109545 = .data:0x00000384; // type:object size:0xC scope:local align:4
|
||||
@109546 = .data:0x00000390; // type:object size:0xC scope:local align:4
|
||||
@109547 = .data:0x0000039C; // type:object size:0xC scope:local align:4
|
||||
@109565 = .data:0x000003A8; // type:object size:0x24 scope:local align:4
|
||||
@109573 = .data:0x000003CC; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@109625 = .data:0x000003D8; // type:object size:0xC scope:local align:4
|
||||
@109626 = .data:0x000003E4; // type:object size:0xC scope:local align:4
|
||||
@109627 = .data:0x000003F0; // type:object size:0xC scope:local align:4
|
||||
@109676 = .data:0x000003FC; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@109893 = .data:0x00000408; // type:object size:0xC scope:local align:4
|
||||
@109894 = .data:0x00000414; // type:object size:0xC scope:local align:4
|
||||
@109895 = .data:0x00000420; // type:object size:0xC scope:local align:4
|
||||
@109896 = .data:0x0000042C; // type:object size:0xC scope:local align:4
|
||||
@109897 = .data:0x00000438; // type:object size:0xC scope:local align:4
|
||||
@110077 = .data:0x00000444; // type:object size:0xC scope:local align:4
|
||||
@110078 = .data:0x00000450; // type:object size:0xC scope:local align:4
|
||||
lbl_163_data_45C = .data:0x0000045C; // type:object size:0x8 data:string
|
||||
daCow_MethodTable = .data:0x00000464; // type:object size:0x20 scope:global align:4
|
||||
g_profile_COW = .data:0x00000484; // type:object size:0x30 scope:global align:4
|
||||
lbl_163_data_4B4 = .data:0x000004B4; // type:object size:0x34
|
||||
@101596 = .data:0x000004E8; // type:object size:0x3C scope:local align:4
|
||||
lbl_163_data_524 = .data:0x00000524; // type:object size:0x14
|
||||
@101598 = .data:0x00000538; // type:object size:0x34 scope:local align:4
|
||||
lbl_163_data_56C = .data:0x0000056C; // type:object size:0x14
|
||||
@101656 = .data:0x00000580; // type:object size:0x24 scope:local align:4
|
||||
lbl_163_data_5A4 = .data:0x000005A4; // type:object size:0x18
|
||||
@101658 = .data:0x000005BC; // type:object size:0xC scope:local align:4
|
||||
lbl_163_data_5C8 = .data:0x000005C8; // type:object size:0x1C
|
||||
@101660 = .data:0x000005E4; // type:object size:0xC scope:local align:4
|
||||
lbl_163_data_5F0 = .data:0x000005F0; // type:object size:0xD4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4
|
||||
@98204 = .bss:0x00000008; // type:object size:0xC scope:local align:4 data:byte
|
||||
pen_pos__21@unnamed@d_a_cow_cpp@ = .bss:0x00000014; // type:object size:0xC scope:global align:4
|
||||
@98205 = .bss:0x00000020; // type:object size:0xC scope:local align:4
|
||||
gate_pos__21@unnamed@d_a_cow_cpp@ = .bss:0x0000002C; // type:object size:0xC scope:global align:4
|
||||
l_CowRoomNo__21@unnamed@d_a_cow_cpp@ = .bss:0x00000038; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
l_CowType__21@unnamed@d_a_cow_cpp@ = .bss:0x0000003C; // type:object size:0x4 scope:global align:4 data:4byte
|
||||
@98264 = .bss:0x00000044; // type:object size:0xC scope:local align:4
|
||||
runScale$98261 = .bss:0x00000050; // type:object size:0xC scope:local align:4
|
||||
m_near_dist = .bss:0x0000005C; // type:object size:0x4 scope:global align:4
|
||||
m_view_angle_wide = .bss:0x00000060; // type:object size:0x2 scope:global align:4
|
||||
m_view_angle = .bss:0x00000062; // type:object size:0x2 scope:global align:2
|
||||
m_angry_cow = .bss:0x00000064; // type:object size:0x2 scope:global align:4 data:2byte
|
||||
@101158 = .bss:0x00000068; // type:object size:0xC scope:local align:4
|
||||
headOfst$101155 = .bss:0x00000074; // type:object size:0xC scope:local align:4
|
||||
@101162 = .bss:0x00000084; // type:object size:0xC scope:local align:4
|
||||
backBornOfst$101159 = .bss:0x00000090; // type:object size:0xC scope:local align:4
|
||||
@101166 = .bss:0x000000A0; // type:object size:0xC scope:local align:4
|
||||
waistOfst$101163 = .bss:0x000000AC; // type:object size:0xC scope:local align:4
|
||||
@@ -1,16 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_crod.cpp:
|
||||
.text start:0x0000005C end:0x00000FD0
|
||||
.rodata start:0x00000000 end:0x0000002C
|
||||
.data start:0x00000000 end:0x0000009C
|
||||
.bss start:0x00000000 end:0x00000010
|
||||
@@ -1,36 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
createHeap__8daCrod_cFv = .text:0x0000005C; // type:function size:0xBC scope:global align:4
|
||||
daCrod_createHeap__FP10fopAc_ac_c = .text:0x00000118; // type:function size:0x4 scope:global align:4
|
||||
create__8daCrod_cFv = .text:0x0000011C; // type:function size:0x27C scope:global align:4
|
||||
daCrod_Create__FP10fopAc_ac_c = .text:0x00000398; // type:function size:0x4 scope:global align:4
|
||||
__dt__8daCrod_cFv = .text:0x0000039C; // type:function size:0xBC scope:global align:4
|
||||
daCrod_Delete__FP8daCrod_c = .text:0x00000458; // type:function size:0x28 scope:global align:4
|
||||
setMatrix__8daCrod_cFv = .text:0x00000480; // type:function size:0x4C scope:global align:4
|
||||
posMove__8daCrod_cFv = .text:0x000004CC; // type:function size:0x64 scope:global align:4
|
||||
setReturn__8daCrod_cFv = .text:0x00000530; // type:function size:0xA0 scope:global align:4
|
||||
setLightPower__8daCrod_cFv = .text:0x000005D0; // type:function size:0x7C scope:global align:4
|
||||
execute__8daCrod_cFv = .text:0x0000064C; // type:function size:0x82C scope:global align:4
|
||||
daCrod_Execute__FP8daCrod_c = .text:0x00000E78; // type:function size:0x4 scope:global align:4
|
||||
draw__8daCrod_cFv = .text:0x00000E7C; // type:function size:0xAC scope:global align:4
|
||||
daCrod_Draw__FP8daCrod_c = .text:0x00000F28; // type:function size:0x4 scope:global align:4
|
||||
getCopyRodMtx__9daAlink_cFv = .text:0x00000F2C; // type:function size:0x20 scope:global align:4
|
||||
fopAcM_seStartLevel__FPC10fopAc_ac_cUlUl = .text:0x00000F4C; // type:function size:0x84 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
l_localRodPos = .rodata:0x00000000; // type:object size:0xC scope:global align:4
|
||||
@107998 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108208 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@108209 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@108210 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@108405 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@108406 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@108407 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4 data:float
|
||||
l_reviveLoopFrame$106354 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
l_atCpsSrc = .data:0x00000000; // type:object size:0x4C scope:global align:4
|
||||
l_daCrod_Method = .data:0x0000004C; // type:object size:0x20 scope:global align:4
|
||||
g_profile_CROD = .data:0x0000006C; // type:object size:0x30 scope:global align:4
|
||||
shootInitLocalPos$106387 = .bss:0x00000000; // type:object size:0xC scope:local align:4
|
||||
lbl_48_bss_C = .bss:0x0000000C; // type:object size:0x1 data:byte
|
||||
@@ -1,17 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_cstaF.cpp:
|
||||
.text start:0x0000005C end:0x000019D4
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000000C4
|
||||
.data start:0x00000000 end:0x0000015C
|
||||
.bss start:0x00000000 end:0x00000004
|
||||
@@ -1,75 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
daCstaF_rideCB__FP4dBgWP10fopAc_ac_cP10fopAc_ac_c = .text:0x0000005C; // type:function size:0x20 scope:global align:4
|
||||
CreateHeap__9daCstaF_cFv = .text:0x0000007C; // type:function size:0x1DC scope:global align:4
|
||||
checkCoverModel__9daCstaF_cFv = .text:0x00000258; // type:function size:0x6C scope:global align:4
|
||||
create__9daCstaF_cFv = .text:0x000002C4; // type:function size:0x480 scope:global align:4
|
||||
daCstaF_Create__FP10fopAc_ac_c = .text:0x00000744; // type:function size:0x4 scope:global align:4
|
||||
__dt__9daCstaF_cFv = .text:0x00000748; // type:function size:0xFC scope:global align:4
|
||||
daCstaF_Delete__FP9daCstaF_c = .text:0x00000844; // type:function size:0x3C scope:global align:4
|
||||
setRoomInfo__9daCstaF_cFv = .text:0x00000880; // type:function size:0x94 scope:global align:4
|
||||
setMatrix__9daCstaF_cFv = .text:0x00000914; // type:function size:0x9C scope:global align:4
|
||||
posMove__9daCstaF_cFv = .text:0x000009B0; // type:function size:0x36C scope:global align:4
|
||||
setCollision__9daCstaF_cFv = .text:0x00000D1C; // type:function size:0xB4 scope:global align:4
|
||||
setAnime__9daCstaF_cFv = .text:0x00000DD0; // type:function size:0x49C scope:global align:4
|
||||
initBrk__9daCstaF_cFUs = .text:0x0000126C; // type:function size:0x74 scope:global align:4
|
||||
initStopBrkBtk__9daCstaF_cFv = .text:0x000012E0; // type:function size:0x54 scope:global align:4
|
||||
initStartBrkBtk__9daCstaF_cFv = .text:0x00001334; // type:function size:0x1D8 scope:global align:4
|
||||
Execute__9daCstaF_cFPPA3_A4_f = .text:0x0000150C; // type:function size:0x2F8 scope:global align:4
|
||||
daCstaF_Execute__FP9daCstaF_c = .text:0x00001804; // type:function size:0x4 scope:global align:4
|
||||
Draw__9daCstaF_cFv = .text:0x00001808; // type:function size:0x118 scope:global align:4
|
||||
daCstaF_Draw__FP9daCstaF_c = .text:0x00001920; // type:function size:0x10 scope:global align:4
|
||||
__sinit_\d_a_cstaF_cpp = .text:0x00001930; // type:function size:0x3C scope:global align:4
|
||||
@36@__dt__15dBgS_StatueAcchFv = .text:0x0000196C; // type:function size:0x8 scope:local align:4
|
||||
@20@__dt__15dBgS_StatueAcchFv = .text:0x00001974; // type:function size:0x8 scope:local align:4
|
||||
__dt__15dBgS_StatueAcchFv = .text:0x0000197C; // type:function size:0x58 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
lbl_63_rodata_D = .rodata:0x0000000D; // type:object size:0x8 data:string
|
||||
m_bckIdxTable__9daCstaF_c = .rodata:0x00000016; // type:object size:0x10 scope:global align:2
|
||||
dataTbl$106159 = .rodata:0x00000026; // type:object size:0x10 scope:local align:2
|
||||
@108563 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108564 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108656 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@108657 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@108658 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@108659 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@108660 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@108661 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@108662 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@108663 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@108664 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@108665 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@108666 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@108669 = .rodata:0x00000070; // type:object size:0x8 scope:local align:4
|
||||
@108775 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4 data:float
|
||||
fieldLocalBallPos$106313 = .rodata:0x0000007C; // type:object size:0xC scope:local align:4 data:float
|
||||
@108839 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@108840 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@108841 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@108842 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@108843 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4 data:float
|
||||
@108844 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@108969 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@108970 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@108971 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
brkIdx$106518 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
brIdx$106525 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@109021 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@109022 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@109129 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@109136 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4 data:float
|
||||
l_cylSrc = .data:0x00000000; // type:object size:0x44 scope:global align:4
|
||||
l_daCstaF_Method = .data:0x00000044; // type:object size:0x20 scope:global align:4
|
||||
g_profile_CSTAF = .data:0x00000064; // type:object size:0x30 scope:global align:4
|
||||
__vt__9daCstaF_c = .data:0x00000094; // type:object size:0x28 scope:global align:4
|
||||
lbl_63_data_BC = .data:0x000000BC; // type:object size:0xA data:string
|
||||
@106671 = .data:0x000000C8; // type:object size:0x14 scope:local align:4
|
||||
__RTTI__9daCstaF_c = .data:0x000000DC; // type:object size:0x8 scope:global align:4
|
||||
__vt__15dBgS_StatueAcch = .data:0x000000E4; // type:object size:0x24 scope:global align:4
|
||||
lbl_63_data_108 = .data:0x00000108; // type:object size:0x10 data:string
|
||||
@106723 = .data:0x00000118; // type:object size:0x3C scope:local align:4
|
||||
__RTTI__15dBgS_StatueAcch = .data:0x00000154; // type:object size:0x8 scope:global align:4
|
||||
l_cancelOffset = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
@@ -1,21 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_cstatue.cpp:
|
||||
.text start:0x000000CC end:0x00003424
|
||||
.rodata start:0x00000000 end:0x00000304
|
||||
.data start:0x00000000 end:0x00000350
|
||||
.bss start:0x00000008 end:0x00000024
|
||||
@@ -1,140 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
daCstatue_atHitCallback__FP10fopAc_ac_cP12dCcD_GObjInfP10fopAc_ac_cP12dCcD_GObjInf = .text:0x000000CC; // type:function size:0x1C scope:global align:4
|
||||
createHeap__11daCstatue_cFv = .text:0x000000E8; // type:function size:0x2C4 scope:global align:4
|
||||
daCstatue_createHeap__FP10fopAc_ac_c = .text:0x000003AC; // type:function size:0x4 scope:global align:4
|
||||
create__11daCstatue_cFv = .text:0x000003B0; // type:function size:0x8AC scope:global align:4
|
||||
daCstatue_Create__FP10fopAc_ac_c = .text:0x00000C5C; // type:function size:0x4 scope:global align:4
|
||||
__dt__11daCstatue_cFv = .text:0x00000C60; // type:function size:0x118 scope:global align:4
|
||||
daCstatue_Delete__FP11daCstatue_c = .text:0x00000D78; // type:function size:0x28 scope:global align:4
|
||||
setRoomInfo__11daCstatue_cFv = .text:0x00000DA0; // type:function size:0x94 scope:global align:4
|
||||
setMatrix__11daCstatue_cFv = .text:0x00000E34; // type:function size:0x14C scope:global align:4
|
||||
posMove__11daCstatue_cFv = .text:0x00000F80; // type:function size:0x724 scope:global align:4
|
||||
setCollision__11daCstatue_cFv = .text:0x000016A4; // type:function size:0x764 scope:global align:4
|
||||
checkHammerReverse__11daCstatue_cFv = .text:0x00001E08; // type:function size:0x134 scope:global align:4
|
||||
setDemo__11daCstatue_cFv = .text:0x00001F3C; // type:function size:0x37C scope:global align:4
|
||||
setAnime__11daCstatue_cFv = .text:0x000022B8; // type:function size:0x718 scope:global align:4
|
||||
initBrk__11daCstatue_cFUs = .text:0x000029D0; // type:function size:0x74 scope:global align:4
|
||||
initStopBrkBtk__11daCstatue_cFv = .text:0x00002A44; // type:function size:0x24 scope:global align:4
|
||||
initStartBrkBtk__11daCstatue_cFv = .text:0x00002A68; // type:function size:0x1B8 scope:global align:4
|
||||
execute__11daCstatue_cFv = .text:0x00002C20; // type:function size:0x5C0 scope:global align:4
|
||||
daCstatue_Execute__FP11daCstatue_c = .text:0x000031E0; // type:function size:0x4 scope:global align:4
|
||||
draw__11daCstatue_cFv = .text:0x000031E4; // type:function size:0x1D4 scope:global align:4
|
||||
daCstatue_Draw__FP11daCstatue_c = .text:0x000033B8; // type:function size:0x4 scope:global align:4
|
||||
@36@__dt__15dBgS_StatueAcchFv = .text:0x000033BC; // type:function size:0x8 scope:local align:4
|
||||
@20@__dt__15dBgS_StatueAcchFv = .text:0x000033C4; // type:function size:0x8 scope:local align:4
|
||||
__dt__15dBgS_StatueAcchFv = .text:0x000033CC; // type:function size:0x58 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
m_bckIdxTable__11daCstatue_c = .rodata:0x00000010; // type:object size:0x46 scope:global align:4
|
||||
dataTbl$106437 = .rodata:0x00000058; // type:object size:0x3C scope:local align:4
|
||||
@111042 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4 data:float
|
||||
@111043 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4 data:float
|
||||
bossSphR$106541 = .rodata:0x0000009C; // type:object size:0x24 scope:local align:4
|
||||
heapSize$106542 = .rodata:0x000000C0; // type:object size:0x14 scope:local align:4
|
||||
@111251 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@111252 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@111253 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@111254 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@111255 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@111256 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@111257 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@111258 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@111259 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@111260 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@111261 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@111262 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@111263 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@111264 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@111265 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
@111266 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4
|
||||
@111267 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4
|
||||
@111268 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4
|
||||
@111269 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4
|
||||
@111270 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4
|
||||
@111271 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4
|
||||
@111272 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4
|
||||
@111273 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4
|
||||
@111274 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4
|
||||
@111275 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4
|
||||
@111276 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4
|
||||
@111277 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4
|
||||
@111278 = .rodata:0x00000140; // type:object size:0x4 scope:local align:4
|
||||
@111281 = .rodata:0x00000148; // type:object size:0x8 scope:local align:4
|
||||
@111369 = .rodata:0x00000150; // type:object size:0x4 scope:local align:4 data:float
|
||||
normalLocalBallPos$106716 = .rodata:0x00000154; // type:object size:0xC scope:local align:4
|
||||
smallLocalBallPos$106717 = .rodata:0x00000160; // type:object size:0xC scope:local align:4
|
||||
bossLocalBallPos$106718 = .rodata:0x0000016C; // type:object size:0xC scope:local align:4
|
||||
@111395 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4
|
||||
@111544 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4
|
||||
@111545 = .rodata:0x00000180; // type:object size:0x4 scope:local align:4 data:float
|
||||
@111546 = .rodata:0x00000184; // type:object size:0x4 scope:local align:4
|
||||
@111547 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4
|
||||
@111548 = .rodata:0x0000018C; // type:object size:0x4 scope:local align:4
|
||||
@111549 = .rodata:0x00000190; // type:object size:0x4 scope:local align:4
|
||||
@111550 = .rodata:0x00000194; // type:object size:0x4 scope:local align:4
|
||||
@111551 = .rodata:0x00000198; // type:object size:0x4 scope:local align:4
|
||||
@111552 = .rodata:0x0000019C; // type:object size:0x4 scope:local align:4
|
||||
@111553 = .rodata:0x000001A0; // type:object size:0x4 scope:local align:4
|
||||
@111554 = .rodata:0x000001A4; // type:object size:0x4 scope:local align:4
|
||||
@111555 = .rodata:0x000001A8; // type:object size:0x4 scope:local align:4
|
||||
@111556 = .rodata:0x000001AC; // type:object size:0x4 scope:local align:4
|
||||
localTop$106864 = .rodata:0x000001B0; // type:object size:0xC scope:local align:4
|
||||
localRoot$106865 = .rodata:0x000001BC; // type:object size:0xC scope:local align:4
|
||||
hammerSide0$106866 = .rodata:0x000001C8; // type:object size:0xC scope:local align:4
|
||||
hammerSide1$106867 = .rodata:0x000001D4; // type:object size:0xC scope:local align:4
|
||||
effName$106869 = .rodata:0x000001E0; // type:object size:0x8 scope:local align:4
|
||||
bossJntIdx$106922 = .rodata:0x000001E8; // type:object size:0x12 scope:local align:4
|
||||
bossLocalOffset$106923 = .rodata:0x000001FC; // type:object size:0x6C scope:local align:4
|
||||
@111713 = .rodata:0x00000268; // type:object size:0x4 scope:local align:4
|
||||
@111714 = .rodata:0x0000026C; // type:object size:0x4 scope:local align:4
|
||||
@111715 = .rodata:0x00000270; // type:object size:0x4 scope:local align:4
|
||||
@111716 = .rodata:0x00000274; // type:object size:0x4 scope:local align:4
|
||||
@111717 = .rodata:0x00000278; // type:object size:0x4 scope:local align:4
|
||||
@111718 = .rodata:0x0000027C; // type:object size:0x4 scope:local align:4
|
||||
@111719 = .rodata:0x00000280; // type:object size:0x4 scope:local align:4
|
||||
hitEffectCenter$107054 = .rodata:0x00000284; // type:object size:0xC scope:local align:4
|
||||
hitEffectEye$107055 = .rodata:0x00000290; // type:object size:0xC scope:local align:4
|
||||
behindCenter$107056 = .rodata:0x0000029C; // type:object size:0xC scope:local align:4
|
||||
behindEye$107057 = .rodata:0x000002A8; // type:object size:0xC scope:local align:4
|
||||
startAnimeCenter$107058 = .rodata:0x000002B4; // type:object size:0xC scope:local align:4
|
||||
startAnimeEye$107059 = .rodata:0x000002C0; // type:object size:0xC scope:local align:4
|
||||
@112004 = .rodata:0x000002CC; // type:object size:0x4 scope:local align:4
|
||||
@112005 = .rodata:0x000002D0; // type:object size:0x4 scope:local align:4
|
||||
@112006 = .rodata:0x000002D4; // type:object size:0x4 scope:local align:4
|
||||
brkIdx$107321 = .rodata:0x000002D8; // type:object size:0xA scope:local align:4
|
||||
brkIdx$107328 = .rodata:0x000002E2; // type:object size:0xA scope:local align:2
|
||||
@112186 = .rodata:0x000002EC; // type:object size:0x4 scope:local align:4
|
||||
effCnt$106868 = .rodata:0x000002F0; // type:object size:0x4 scope:local align:4
|
||||
startSwitchNum$106537 = .rodata:0x000002F4; // type:object size:0x4 scope:local align:4
|
||||
endSwitchNum$106538 = .rodata:0x000002F8; // type:object size:0x4 scope:local align:4
|
||||
startTreasureNum$106539 = .rodata:0x000002FC; // type:object size:0x4 scope:local align:4
|
||||
endTreasureNum$106540 = .rodata:0x00000300; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
l_atCpsSrc = .data:0x00000000; // type:object size:0x4C scope:global align:4
|
||||
l_cylSrc = .data:0x0000004C; // type:object size:0x44 scope:global align:4
|
||||
l_sphSrc = .data:0x00000090; // type:object size:0x40 scope:global align:4
|
||||
l_daCstatue_Method = .data:0x000000D0; // type:object size:0x20 scope:global align:4
|
||||
g_profile_CSTATUE = .data:0x000000F0; // type:object size:0x30 scope:global align:4
|
||||
__vt__15dBgS_StatueAcch = .data:0x00000120; // type:object size:0x24 scope:global align:4
|
||||
lbl_164_data_144 = .data:0x00000144; // type:object size:0x10 data:string
|
||||
@107612 = .data:0x00000154; // type:object size:0x3C scope:local align:4
|
||||
__RTTI__15dBgS_StatueAcch = .data:0x00000190; // type:object size:0x8 scope:global align:4
|
||||
lbl_164_data_198 = .data:0x00000198; // type:object size:0xA data:string
|
||||
@107624 = .data:0x000001A4; // type:object size:0x34 scope:local align:4
|
||||
lbl_164_data_1D8 = .data:0x000001D8; // type:object size:0x14
|
||||
@107682 = .data:0x000001EC; // type:object size:0x24 scope:local align:4
|
||||
lbl_164_data_210 = .data:0x00000210; // type:object size:0x18
|
||||
@107684 = .data:0x00000228; // type:object size:0xC scope:local align:4
|
||||
lbl_164_data_234 = .data:0x00000234; // type:object size:0x1C
|
||||
@107686 = .data:0x00000250; // type:object size:0xC scope:local align:4
|
||||
lbl_164_data_25C = .data:0x0000025C; // type:object size:0xF4
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4 data:byte
|
||||
@106927 = .bss:0x0000000C; // type:object size:0xC scope:local align:4
|
||||
effScale$106924 = .bss:0x00000018; // type:object size:0xC scope:local align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_demo00.cpp:
|
||||
.text start:0x000000CC end:0x00003DB4
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000110
|
||||
.data start:0x00000000 end:0x0000027C
|
||||
.bss start:0x00000008 end:0x000001D0
|
||||
@@ -1,130 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
reset__16daDemo00_resID_cFv = .text:0x000000CC; // type:function size:0x2C scope:global align:4
|
||||
reset__16daDemo00_model_cFv = .text:0x000000F8; // type:function size:0x50 scope:global align:4
|
||||
__dt__10daDemo00_cFv = .text:0x00000148; // type:function size:0x9C scope:global align:4
|
||||
setBaseMtx__10daDemo00_cFv = .text:0x000001E4; // type:function size:0x298 scope:global align:4
|
||||
setShadowSize__10daDemo00_cFv = .text:0x0000047C; // type:function size:0x234 scope:global align:4
|
||||
createHeapCallBack__FP10fopAc_ac_c = .text:0x000006B0; // type:function size:0x998 scope:global align:4
|
||||
actStandby__10daDemo00_cFP13dDemo_actor_c = .text:0x00001048; // type:function size:0x1B0 scope:global align:4
|
||||
actPerformance__10daDemo00_cFP13dDemo_actor_c = .text:0x000011F8; // type:function size:0x710 scope:global align:4
|
||||
actLeaving__10daDemo00_cFP13dDemo_actor_c = .text:0x00001908; // type:function size:0x64 scope:global align:4
|
||||
mDad00_changeXluMaterial__FP11J3DMateriali = .text:0x0000196C; // type:function size:0x108 scope:global align:4
|
||||
teduna_calc__FP4cXyzP4cXyzP4cXyzsi = .text:0x00001A74; // type:function size:0x218 scope:global align:4
|
||||
teduna_draw__FP8J3DModelP19mDoExt_3DlineMat1_cP12dKy_tevstr_ciiii = .text:0x00001C8C; // type:function size:0x3D4 scope:global align:4
|
||||
teduna_ganon_hand_set__FP8J3DModelii = .text:0x00002060; // type:function size:0xBC scope:global align:4
|
||||
ke_set__FP10daDemo00_c = .text:0x0000211C; // type:function size:0x594 scope:global align:4
|
||||
daDemo00_Draw__FP10daDemo00_c = .text:0x000026B0; // type:function size:0xA9C scope:global align:4
|
||||
daDemo00_Execute__FP10daDemo00_c = .text:0x0000314C; // type:function size:0x8A0 scope:global align:4
|
||||
daDemo00_IsDelete__FP10daDemo00_c = .text:0x000039EC; // type:function size:0x8 scope:global align:4
|
||||
daDemo00_Delete__FP10daDemo00_c = .text:0x000039F4; // type:function size:0x28 scope:global align:4
|
||||
daDemo00_Create__FP10fopAc_ac_c = .text:0x00003A1C; // type:function size:0x1B8 scope:global align:4
|
||||
__ct__12demo_s1_ke_sFv = .text:0x00003BD4; // type:function size:0x68 scope:global align:4
|
||||
__sinit_\d_a_demo00_cpp = .text:0x00003C3C; // type:function size:0xC4 scope:global align:4
|
||||
__arraydtor$97589 = .text:0x00003D00; // type:function size:0x1C scope:local align:4
|
||||
__arraydtor$97591 = .text:0x00003D1C; // type:function size:0x1C scope:local align:4
|
||||
__dt__12demo_s1_ke_sFv = .text:0x00003D38; // type:function size:0x7C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@102853 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@102879 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@102880 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@102881 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@102882 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@102958 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@102959 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4
|
||||
@102960 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@102961 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
@102962 = .rodata:0x00000024; // type:object size:0x4 scope:local align:4
|
||||
@103177 = .rodata:0x00000028; // type:object size:0x4 scope:local align:4
|
||||
@103180 = .rodata:0x0000002C; // type:object size:0x4 scope:local align:4
|
||||
@103223 = .rodata:0x00000030; // type:object size:0x8 scope:local align:4 data:double
|
||||
@103457 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@103458 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@103459 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
lbl_49_rodata_44 = .rodata:0x00000044; // type:object size:0x4
|
||||
@103516 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4
|
||||
@103517 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4
|
||||
@103518 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4
|
||||
@103519 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4
|
||||
@103520 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@103521 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@103522 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@103523 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@103596 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@103597 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@103598 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@103599 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
@103600 = .rodata:0x00000078; // type:object size:0x4 scope:local align:4
|
||||
@103601 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4
|
||||
@103602 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4
|
||||
@103603 = .rodata:0x00000084; // type:object size:0x4 scope:local align:4
|
||||
@103604 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4
|
||||
@103605 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4
|
||||
@103606 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4
|
||||
@103607 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4
|
||||
@103608 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4
|
||||
@103609 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4
|
||||
@103610 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4
|
||||
@103611 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4
|
||||
@103612 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4
|
||||
@103665 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4
|
||||
@103666 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4
|
||||
@103667 = .rodata:0x000000B4; // type:object size:0x4 scope:local align:4
|
||||
@103668 = .rodata:0x000000B8; // type:object size:0x4 scope:local align:4
|
||||
@103669 = .rodata:0x000000BC; // type:object size:0x4 scope:local align:4
|
||||
@103670 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4
|
||||
@103671 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4
|
||||
@103672 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4
|
||||
@103673 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4
|
||||
@103674 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4
|
||||
@103675 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4
|
||||
@103676 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4
|
||||
@103677 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4
|
||||
@104031 = .rodata:0x000000E0; // type:object size:0x4 scope:local align:4
|
||||
@104032 = .rodata:0x000000E4; // type:object size:0x4 scope:local align:4
|
||||
@104033 = .rodata:0x000000E8; // type:object size:0x4 scope:local align:4
|
||||
@104034 = .rodata:0x000000EC; // type:object size:0x4 scope:local align:4
|
||||
@104035 = .rodata:0x000000F0; // type:object size:0x4 scope:local align:4
|
||||
@104036 = .rodata:0x000000F4; // type:object size:0x4 scope:local align:4
|
||||
@104037 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4
|
||||
@104038 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4
|
||||
@104039 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4
|
||||
@104040 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4
|
||||
@104208 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4
|
||||
@104209 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
lbl_49_data_8 = .data:0x00000008; // type:object size:0xA data:string
|
||||
@103202 = .data:0x00000014; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@103281 = .data:0x00000020; // type:object size:0xC scope:local align:4 data:4byte
|
||||
@103464 = .data:0x0000002C; // type:object size:0xC scope:local align:4 data:4byte
|
||||
lbl_49_data_38 = .data:0x00000038; // type:object size:0x10
|
||||
lbl_49_data_48 = .data:0x00000048; // type:object size:0x4
|
||||
ke_za$97799 = .data:0x0000004C; // type:object size:0x2C scope:local align:4
|
||||
@104218 = .data:0x00000078; // type:object size:0x24 scope:local align:4
|
||||
@104217 = .data:0x0000009C; // type:object size:0x3C scope:local align:4
|
||||
@104216 = .data:0x000000D8; // type:object size:0x2C scope:local align:4
|
||||
@104215 = .data:0x00000104; // type:object size:0x1C scope:local align:4
|
||||
@104214 = .data:0x00000120; // type:object size:0x1C scope:local align:4
|
||||
@104213 = .data:0x0000013C; // type:object size:0x68 scope:local align:4
|
||||
@104233 = .data:0x000001A4; // type:object size:0xC scope:local align:4 data:4byte
|
||||
l_daDemo00_Method = .data:0x000001B0; // type:object size:0x20 scope:global align:4
|
||||
g_profile_DEMO00 = .data:0x000001D0; // type:object size:0x30 scope:global align:4
|
||||
__vt__18mDoExt_3DlineMat_c = .data:0x00000200; // type:object size:0x14 scope:global align:4
|
||||
lbl_49_data_214 = .data:0x00000214; // type:object size:0x60
|
||||
lbl_49_data_274 = .data:0x00000274; // type:object size:0x7 data:string
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4
|
||||
@97590 = .bss:0x00000008; // type:object size:0xC scope:local align:4
|
||||
teduna_posL = .bss:0x00000014; // type:object size:0xC0 scope:global align:4
|
||||
@97592 = .bss:0x000000D4; // type:object size:0xC scope:local align:4
|
||||
teduna_posR = .bss:0x000000E0; // type:object size:0xC0 scope:global align:4
|
||||
@97593 = .bss:0x000001A0; // type:object size:0xC scope:local align:4
|
||||
S_ganon_left_hand_pos = .bss:0x000001AC; // type:object size:0xC scope:global align:4 data:float
|
||||
@97594 = .bss:0x000001B8; // type:object size:0xC scope:local align:4
|
||||
S_ganon_right_hand_pos = .bss:0x000001C4; // type:object size:0xC scope:global align:4 data:float
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_demo_item.cpp:
|
||||
.text start:0x000000CC end:0x00001C00
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x00000078
|
||||
.data start:0x00000000 end:0x000003EC
|
||||
.bss start:0x00000008 end:0x0000009C
|
||||
@@ -1,92 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
__register_global_object = .text:0x0000005C; // type:function size:0x1C scope:global align:4
|
||||
__destroy_global_chain = .text:0x00000078; // type:function size:0x54 scope:global align:4
|
||||
__CreateHeap__9daDitem_cFv = .text:0x000000CC; // type:function size:0x8 scope:global align:4
|
||||
CreateInit__9daDitem_cFv = .text:0x000000D4; // type:function size:0xC0 scope:global align:4
|
||||
action__9daDitem_cFv = .text:0x00000194; // type:function size:0x78 scope:global align:4
|
||||
actionStart__9daDitem_cFv = .text:0x0000020C; // type:function size:0x3A0 scope:global align:4
|
||||
actionEvent__9daDitem_cFv = .text:0x000005AC; // type:function size:0x96C scope:global align:4
|
||||
actionWaitLightEnd__9daDitem_cFv = .text:0x00000F18; // type:function size:0xF0 scope:global align:4
|
||||
setInsectEffect__9daDitem_cFv = .text:0x00001008; // type:function size:0xE4 scope:global align:4
|
||||
followInsectEffect__9daDitem_cFv = .text:0x000010EC; // type:function size:0x70 scope:global align:4
|
||||
endInsectEffect__9daDitem_cFv = .text:0x0000115C; // type:function size:0x94 scope:global align:4
|
||||
onEventReg__9daDitem_cFii = .text:0x000011F0; // type:function size:0x70 scope:global align:4
|
||||
set_pos__9daDitem_cFv = .text:0x00001260; // type:function size:0x1FC scope:global align:4
|
||||
initEffectLight__9daDitem_cFv = .text:0x0000145C; // type:function size:0x34 scope:global align:4
|
||||
settingEffectLight__9daDitem_cFv = .text:0x00001490; // type:function size:0x4C scope:global align:4
|
||||
set_mtx__9daDitem_cFv = .text:0x000014DC; // type:function size:0xB0 scope:global align:4
|
||||
setTevStr__9daDitem_cFv = .text:0x0000158C; // type:function size:0x5C scope:global align:4
|
||||
setListStart__9daDitem_cFv = .text:0x000015E8; // type:function size:0x4 scope:global align:4
|
||||
draw_WOOD_STICK__9daDitem_cFv = .text:0x000015EC; // type:function size:0x94 scope:global align:4
|
||||
daDitem_Delete__FP9daDitem_c = .text:0x00001680; // type:function size:0x100 scope:global align:4
|
||||
daDitem_Create__FP9daDitem_c = .text:0x00001780; // type:function size:0x1C0 scope:global align:4
|
||||
daDitem_Execute__FP9daDitem_c = .text:0x00001940; // type:function size:0x1A4 scope:global align:4
|
||||
daDitem_Draw__FP9daDitem_c = .text:0x00001AE4; // type:function size:0x54 scope:global align:4
|
||||
__sinit_\d_a_demo_item_cpp = .text:0x00001B38; // type:function size:0xAC scope:global align:4
|
||||
setGlobalTranslation__14JPABaseEmitterFRCQ29JGeometry8TVec3<f> = .text:0x00001BE4; // type:function size:0x1C scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
__destroy_global_chain_reference = .dtors:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@95713 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
|
||||
@95714 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
@95798 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@95799 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@95800 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@95973 = .rodata:0x00000018; // type:object size:0x4 scope:local align:4 data:float
|
||||
@96022 = .rodata:0x0000001C; // type:object size:0x4 scope:local align:4
|
||||
@96023 = .rodata:0x00000020; // type:object size:0x4 scope:local align:4
|
||||
l_event_reg$93716 = .rodata:0x00000024; // type:object size:0xC scope:local align:4
|
||||
@96120 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4
|
||||
@96121 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4
|
||||
@96122 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4
|
||||
@96123 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4
|
||||
@96124 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4
|
||||
@96125 = .rodata:0x00000044; // type:object size:0x4 scope:local align:4
|
||||
@96149 = .rodata:0x00000048; // type:object size:0x4 scope:local align:4 data:float
|
||||
@96150 = .rodata:0x0000004C; // type:object size:0x4 scope:local align:4 data:float
|
||||
lbl_64_rodata_50 = .rodata:0x00000050; // type:object size:0x8 data:string
|
||||
@96348 = .rodata:0x00000058; // type:object size:0x4 scope:local align:4
|
||||
@96349 = .rodata:0x0000005C; // type:object size:0x4 scope:local align:4
|
||||
@96350 = .rodata:0x00000060; // type:object size:0x4 scope:local align:4
|
||||
@96362 = .rodata:0x00000064; // type:object size:0x4 scope:local align:4
|
||||
@96363 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4
|
||||
@96364 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4
|
||||
@96365 = .rodata:0x00000070; // type:object size:0x4 scope:local align:4
|
||||
@96366 = .rodata:0x00000074; // type:object size:0x4 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
l_daDitem_Method = .data:0x000000C4; // type:object size:0x20 scope:global align:4
|
||||
g_profile_Demo_Item = .data:0x000000E4; // type:object size:0x30 scope:global align:4
|
||||
__vt__9daDitem_c = .data:0x00000114; // type:object size:0x44 scope:global align:4
|
||||
lbl_64_data_158 = .data:0x00000158; // type:object size:0xA data:string
|
||||
@93862 = .data:0x00000164; // type:object size:0x14 scope:local align:4
|
||||
__RTTI__9daDitem_c = .data:0x00000178; // type:object size:0x8 scope:global align:4
|
||||
lbl_64_data_180 = .data:0x00000180; // type:object size:0xD data:string
|
||||
@93864 = .data:0x00000190; // type:object size:0xC scope:local align:4
|
||||
lbl_64_data_19C = .data:0x0000019C; // type:object size:0x3C
|
||||
@93924 = .data:0x000001D8; // type:object size:0x3C scope:local align:4
|
||||
lbl_64_data_214 = .data:0x00000214; // type:object size:0x14
|
||||
@93926 = .data:0x00000228; // type:object size:0x34 scope:local align:4
|
||||
lbl_64_data_25C = .data:0x0000025C; // type:object size:0x40
|
||||
@93976 = .data:0x0000029C; // type:object size:0xC scope:local align:4
|
||||
lbl_64_data_2A8 = .data:0x000002A8; // type:object size:0x14
|
||||
@93984 = .data:0x000002BC; // type:object size:0x24 scope:local align:4
|
||||
lbl_64_data_2E0 = .data:0x000002E0; // type:object size:0x18
|
||||
@93986 = .data:0x000002F8; // type:object size:0xC scope:local align:4
|
||||
lbl_64_data_304 = .data:0x00000304; // type:object size:0x1C
|
||||
@93988 = .data:0x00000320; // type:object size:0xC scope:local align:4
|
||||
lbl_64_data_32C = .data:0x0000032C; // type:object size:0xC0
|
||||
__global_destructor_chain = .bss:0x00000000; // type:object size:0x4 scope:global align:4
|
||||
...bss.0 = .bss:0x00000008; // type:label scope:local align:4
|
||||
@93297 = .bss:0x00000008; // type:object size:0xC scope:local align:4 data:byte
|
||||
l_player_offset = .bss:0x00000014; // type:object size:0xC scope:global align:4
|
||||
@93298 = .bss:0x00000020; // type:object size:0xC scope:local align:4
|
||||
l_wolf_offset = .bss:0x0000002C; // type:object size:0xC scope:global align:4
|
||||
@93299 = .bss:0x00000038; // type:object size:0xC scope:local align:4
|
||||
l_horse_offset = .bss:0x00000044; // type:object size:0xC scope:global align:4
|
||||
@93731 = .bss:0x00000054; // type:object size:0xC scope:local align:4
|
||||
@93732 = .bss:0x00000060; // type:object size:0xC scope:local align:4
|
||||
@93733 = .bss:0x0000006C; // type:object size:0xC scope:local align:4
|
||||
offset_tbl$93728 = .bss:0x00000078; // type:object size:0x24 scope:local align:4
|
||||
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_disappear.cpp:
|
||||
.text start:0x0000005C end:0x00000414
|
||||
.rodata start:0x00000000 end:0x00000020
|
||||
.data start:0x00000000 end:0x00000070
|
||||
@@ -1,25 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
daDisappear_Draw__FP15disappear_class = .text:0x0000005C; // type:function size:0x8 scope:global align:4
|
||||
s_ks_sub__FPvPv = .text:0x00000064; // type:function size:0x4C scope:global align:4
|
||||
daDisappear_Execute__FP15disappear_class = .text:0x000000B0; // type:function size:0x3C scope:global align:4
|
||||
daDisappear_IsDelete__FP15disappear_class = .text:0x000000EC; // type:function size:0x8 scope:global align:4
|
||||
daDisappear_Delete__FP15disappear_class = .text:0x000000F4; // type:function size:0x8 scope:global align:4
|
||||
daDisappear_Create__FP10fopAc_ac_c = .text:0x000000FC; // type:function size:0x318 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
...rodata.0 = .rodata:0x00000000; // type:label scope:local align:4
|
||||
@92610 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
|
||||
@92611 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4
|
||||
@92672 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4
|
||||
@92673 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4
|
||||
@92674 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4
|
||||
@92675 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4
|
||||
@92678 = .rodata:0x00000018; // type:object size:0x8 scope:local align:4
|
||||
...data.0 = .data:0x00000000; // type:label scope:local align:4
|
||||
da_name$91813 = .data:0x00000000; // type:object size:0x8 scope:local align:4
|
||||
da_name$91832 = .data:0x00000008; // type:object size:0xA scope:local align:4
|
||||
da_name$91853 = .data:0x00000012; // type:object size:0xE scope:local align:2
|
||||
l_daDisappear_Method = .data:0x00000020; // type:object size:0x20 scope:global align:4
|
||||
g_profile_DISAPPEAR = .data:0x00000040; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,14 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
d/actor/d_a_dmidna.cpp:
|
||||
.text start:0x0000005C end:0x000003A0
|
||||
.rodata start:0x00000000 end:0x0000000C
|
||||
.data start:0x00000000 end:0x00000050
|
||||
@@ -1,19 +0,0 @@
|
||||
_prolog = .text:0x00000000; // type:function size:0x2C scope:global align:4
|
||||
_epilog = .text:0x0000002C; // type:function size:0x2C scope:global align:4
|
||||
_unresolved = .text:0x00000058; // type:function size:0x4 scope:global align:4
|
||||
createHeap__10daDmidna_cFv = .text:0x0000005C; // type:function size:0xE8 scope:global align:4
|
||||
daDmidna_createHeap__FP10fopAc_ac_c = .text:0x00000144; // type:function size:0x4 scope:global align:4
|
||||
create__10daDmidna_cFv = .text:0x00000148; // type:function size:0xB0 scope:global align:4
|
||||
daDmidna_Create__FP10fopAc_ac_c = .text:0x000001F8; // type:function size:0x4 scope:global align:4
|
||||
__dt__10daDmidna_cFv = .text:0x000001FC; // type:function size:0x6C scope:global align:4
|
||||
daDmidna_Delete__FP10daDmidna_c = .text:0x00000268; // type:function size:0x28 scope:global align:4
|
||||
setMatrix__10daDmidna_cFv = .text:0x00000290; // type:function size:0x60 scope:global align:4
|
||||
daDmidna_Execute__FP10daDmidna_c = .text:0x000002F0; // type:function size:0x44 scope:global align:4
|
||||
draw__10daDmidna_cFv = .text:0x00000334; // type:function size:0x68 scope:global align:4
|
||||
daDmidna_Draw__FP10daDmidna_c = .text:0x0000039C; // type:function size:0x4 scope:global align:4
|
||||
_ctors = .ctors:0x00000000; // type:label scope:global
|
||||
_dtors = .dtors:0x00000000; // type:label scope:global
|
||||
lbl_5_rodata_0 = .rodata:0x00000000; // type:object size:0x7 data:string
|
||||
@93802 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
|
||||
l_daDmidna_Method = .data:0x00000000; // type:object size:0x20 scope:global align:4
|
||||
g_profile_DMIDNA = .data:0x00000020; // type:object size:0x30 scope:global align:4
|
||||
@@ -1,22 +0,0 @@
|
||||
Sections:
|
||||
.text type:code align:4
|
||||
.ctors type:rodata align:4
|
||||
.dtors type:rodata align:4
|
||||
.rodata type:rodata align:8
|
||||
.data type:data align:8
|
||||
.bss type:bss align:8
|
||||
|
||||
REL/executor.c:
|
||||
.text start:0x00000000 end:0x0000005C
|
||||
|
||||
REL/global_destructor_chain.c:
|
||||
.text start:0x0000005C end:0x000000CC
|
||||
.dtors start:0x00000000 end:0x00000004 rename:.dtors$10
|
||||
.bss start:0x00000000 end:0x00000008
|
||||
|
||||
d/actor/d_a_do.cpp:
|
||||
.text start:0x000000CC end:0x000060A8
|
||||
.ctors start:0x00000000 end:0x00000004
|
||||
.rodata start:0x00000000 end:0x000001B0
|
||||
.data start:0x00000000 end:0x00000298
|
||||
.bss start:0x00000008 end:0x00000080
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user