diff --git a/CMakeLists.txt b/CMakeLists.txt index 08c1755..ef9517d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,34 +2,41 @@ # toolchain file and module path of the fxSDK cmake_minimum_required(VERSION 3.15) -project(MyShmup) +project(Schmup VERSION 1.0 LANGUAGES CXX C ASM) -include(GenerateG1A) include(GenerateG3A) include(Fxconv) + +find_package(Azur 0.1 REQUIRED) find_package(Gint 2.9 REQUIRED) find_package(LibProf 2.4 REQUIRED) set(SOURCES - src/main.cc - # ... -) -# Shared assets, fx-9860G-only assets and fx-CG-50-only assets -set(ASSETS + src/main.cpp + src/utilities.cpp + src/particles.cpp # ... ) set(ASSETS_cg + assets-cg/font.png + assets-cg/Sprites/emp_circ.png + assets-cg/Sprites/fill_circ_0.png + assets-cg/Sprites/fill_circ_1.png + assets-cg/Sprites/fill_circ_2.png + assets-cg/Sprites/fill_circ_3.png + assets-cg/Sprites/fill_circ_4.png + assets-cg/Sprites/fill_circ_5.png # ... ) fxconv_declare_assets(${ASSETS} ${ASSETS_fx} ${ASSETS_cg} WITH_METADATA) -add_executable(myaddin ${SOURCES} ${ASSETS} ${ASSETS_${FXSDK_PLATFORM}}) -target_compile_options(myaddin PRIVATE -Wall -Wextra -Os -std=c++11 -c) -target_link_libraries(myaddin LibProf::LibProf Gint::Gint -lstdc++) -target_link_options(myaddin PRIVATE -Wl,-Map=Build_Addin.map) +add_executable(shmup ${SOURCES} ${ASSETS} ${ASSETS_${FXSDK_PLATFORM}}) +target_compile_options(shmup PRIVATE -Wall -Wextra -Os -std=c++20) +target_link_options(shmup PRIVATE -Wl,-Map=Build_Addin.map -Wl,--print-memory-usage) +target_link_libraries(shmup Azur::Azur -lnum LibProf::LibProf Gint::Gint -lstdc++) if("${FXSDK_PLATFORM_LONG}" STREQUAL fxCG50) - generate_g3a(TARGET myaddin OUTPUT "MyShmup.g3a" + generate_g3a(TARGET shmup OUTPUT "MyShmup.g3a" NAME "MyShmup" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png) endif() diff --git a/MyShmup.g3a b/MyShmup.g3a index fd3539f..964cfc4 100644 Binary files a/MyShmup.g3a and b/MyShmup.g3a differ diff --git a/README.md b/README.md index 33ef2b2..d9a06bc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # A very simple Space Shooter - SHMUP - Shoot Them All +First attempt to use Lephe's Azur. diff --git a/assets-cg/Sprites/emp_circ.png b/assets-cg/Sprites/emp_circ.png new file mode 100644 index 0000000..fc94df6 Binary files /dev/null and b/assets-cg/Sprites/emp_circ.png differ diff --git a/assets-cg/Sprites/empty_circle_explode_1_to_7pix.ase b/assets-cg/Sprites/empty_circle_explode_1_to_7pix.ase new file mode 100644 index 0000000..5ec57ac Binary files /dev/null and b/assets-cg/Sprites/empty_circle_explode_1_to_7pix.ase differ diff --git a/assets-cg/Sprites/fill_circ.png b/assets-cg/Sprites/fill_circ.png new file mode 100644 index 0000000..0b6a2b1 Binary files /dev/null and b/assets-cg/Sprites/fill_circ.png differ diff --git a/assets-cg/Sprites/fill_circ_0.png b/assets-cg/Sprites/fill_circ_0.png new file mode 100644 index 0000000..277e658 Binary files /dev/null and b/assets-cg/Sprites/fill_circ_0.png differ diff --git a/assets-cg/Sprites/fill_circ_1.png b/assets-cg/Sprites/fill_circ_1.png new file mode 100644 index 0000000..fbfc7ee Binary files /dev/null and b/assets-cg/Sprites/fill_circ_1.png differ diff --git a/assets-cg/Sprites/fill_circ_2.png b/assets-cg/Sprites/fill_circ_2.png new file mode 100644 index 0000000..463aa22 Binary files /dev/null and b/assets-cg/Sprites/fill_circ_2.png differ diff --git a/assets-cg/Sprites/fill_circ_3.png b/assets-cg/Sprites/fill_circ_3.png new file mode 100644 index 0000000..077d653 Binary files /dev/null and b/assets-cg/Sprites/fill_circ_3.png differ diff --git a/assets-cg/Sprites/fill_circ_4.png b/assets-cg/Sprites/fill_circ_4.png new file mode 100644 index 0000000..7e2bdb0 Binary files /dev/null and b/assets-cg/Sprites/fill_circ_4.png differ diff --git a/assets-cg/Sprites/fill_circ_5.png b/assets-cg/Sprites/fill_circ_5.png new file mode 100644 index 0000000..8c3b05c Binary files /dev/null and b/assets-cg/Sprites/fill_circ_5.png differ diff --git a/assets-cg/Sprites/filled_circle_explode_1_to_7pix.ase b/assets-cg/Sprites/filled_circle_explode_1_to_7pix.ase new file mode 100644 index 0000000..c695841 Binary files /dev/null and b/assets-cg/Sprites/filled_circle_explode_1_to_7pix.ase differ diff --git a/assets-cg/Sprites/fxconv-metadata.txt b/assets-cg/Sprites/fxconv-metadata.txt new file mode 100644 index 0000000..bbcfcb3 --- /dev/null +++ b/assets-cg/Sprites/fxconv-metadata.txt @@ -0,0 +1,5 @@ +*.png: + type: bopti-image + name_regex: (.*)\.png img_\1 + section: .data + profile: p4_rgb565a diff --git a/assets-cg/font.png b/assets-cg/font.png new file mode 100644 index 0000000..3cf3776 Binary files /dev/null and b/assets-cg/font.png differ diff --git a/assets-cg/fxconv-metadata.txt b/assets-cg/fxconv-metadata.txt index d435d5f..5e3f5a8 100644 --- a/assets-cg/fxconv-metadata.txt +++ b/assets-cg/fxconv-metadata.txt @@ -1,3 +1,4 @@ -example.png: +*.png: type: bopti-image - name: img_example + name_regex: (.*)\.png img_\1 + profile: p8_rgb565a diff --git a/assets-fx/example.png b/assets-fx/example.png deleted file mode 100644 index b26ba9a..0000000 Binary files a/assets-fx/example.png and /dev/null differ diff --git a/assets-fx/fxconv-metadata.txt b/assets-fx/fxconv-metadata.txt deleted file mode 100644 index d435d5f..0000000 --- a/assets-fx/fxconv-metadata.txt +++ /dev/null @@ -1,3 +0,0 @@ -example.png: - type: bopti-image - name: img_example diff --git a/assets-fx/icon.png b/assets-fx/icon.png deleted file mode 100644 index c92f12a..0000000 Binary files a/assets-fx/icon.png and /dev/null differ diff --git a/build-cg/Build_Addin.map b/build-cg/Build_Addin.map index 86cabe4..6abb343 100644 --- a/build-cg/Build_Addin.map +++ b/build-cg/Build_Addin.map @@ -1,27 +1,85 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + CMakeFiles/shmup.dir/src/particles.cpp.obj (___fixunssfsi) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + CMakeFiles/shmup.dir/src/particles.cpp.obj (___addsf3) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + CMakeFiles/shmup.dir/src/particles.cpp.obj (___mulsf3) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - CMakeFiles/myaddin.dir/src/main.cc.obj (___divsf3) + CMakeFiles/shmup.dir/src/main.cpp.obj (___divsf3) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) (___gesf2) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + CMakeFiles/shmup.dir/src/particles.cpp.obj (___floatsisf) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) (___fixsfsi) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - CMakeFiles/myaddin.dir/src/main.cc.obj (___extendsfdf2) + CMakeFiles/shmup.dir/src/main.cpp.obj (___extendsfdf2) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) (___thenan_sf) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) (___thenan_sf) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - CMakeFiles/myaddin.dir/src/main.cc.obj (___floatunsisf) + CMakeFiles/shmup.dir/src/main.cpp.obj (___floatunsisf) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + CMakeFiles/shmup.dir/src/particles.cpp.obj (___muldf3) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) (___make_dp) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + CMakeFiles/shmup.dir/src/particles.cpp.obj (___truncdfsf2) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) (___thenan_df) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + CMakeFiles/shmup.dir/src/main.cpp.obj (__Unwind_Resume) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) (__Unwind_Find_FDE) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) (___movmem) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sdivsi3.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) (___sdivsi3) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) (___udivsi3) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) (___clzsi2) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) (___clzsi2) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) (___pack_f) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) (___pack_f) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) (___unpack_f) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) (___unpack_f) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) (___fpcmp_parts_f) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) (___make_fp) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) (___pack_d) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) (___pack_d) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) (___unpack_d) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) (___clz_tab) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) + CMakeFiles/shmup.dir/src/main.cpp.obj (_azrp_update) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(r61524.s.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) (_azrp_r61524_fragment_x1) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) + CMakeFiles/shmup.dir/src/main.cpp.obj (_azrp_shader_clear_configure) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) (_azrp_shader_clear) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) + CMakeFiles/shmup.dir/src/utilities.cpp.obj (_azrp_subimage) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) (_AZRP_SHADER_IMAGE_RGB16) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) (_AZRP_SHADER_IMAGE_P8) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) (_AZRP_SHADER_IMAGE_P4) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_normal.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) (_azrp_image_shader_rgb16_normal) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_clearbg.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) (_azrp_image_shader_rgb16_clearbg) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8_normal.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) (_azrp_image_shader_p8_normal) +/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4_normal.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) (_azrp_image_shader_p4_normal) /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_prof_quit) + CMakeFiles/shmup.dir/src/main.cpp.obj (_prof_quit) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) (_clock_freq) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) @@ -37,17 +95,15 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) (_gint_world_sync) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_pollevent) + CMakeFiles/shmup.dir/src/main.cpp.obj (_pollevent) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) (_utlb_mapped_memory) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_dprint) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) (_dtext) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) + CMakeFiles/shmup.dir/src/main.cpp.obj (_rtc_ticks) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) (_timer_configure) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_usb_ff_bulk) + CMakeFiles/shmup.dir/src/main.cpp.obj (_usb_ff_bulk) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) (_usb_interface_pipe) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) @@ -55,27 +111,31 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) (_usb_dc_string) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_usb_open) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_dclear) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) (_drect) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_dupdate) + CMakeFiles/shmup.dir/src/main.cpp.obj (_usb_open) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) (_r61524_start_frame) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_alpha.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) (_image_alpha) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) (_gint_vram) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) (_dtext_opt) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) (_gint_font8x9) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) (_gint_image_mkcmd) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_rgb16.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) (_gint_image_rgb16_loop) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) (_gint_image_p8_loop) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8_clearbg.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) (_gint_image_p8_clearbg) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) (_gint_image_p4_loop) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4_clearbg_alt.S.obj) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) (_gint_image_p4_clearbg_alt) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) (_sleep) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) (_dma_transfer_async) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) (_inth_dma_ae) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) (_dma_memset) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) (_intc_priority) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) @@ -98,12 +158,14 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) (_kmalloc_init_arena) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) (_kmalloc_init) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) (_dupdate_get_hook) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) (_dwindow) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) (_dprint) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) (_dtext) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) (_dfont) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) (_rtc_get_time) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) (_inth_etmu4) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) @@ -112,30 +174,84 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) (_sleep_us_spin) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) (_usb_req_setup) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) (_r61524_display) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) (_topti_glyph_fg_bg) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) (_dclear) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) (_drect) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) (_dupdate) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) (_dtext_opt) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) (_gint_font8x9) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) (_cpu_configure_VBR) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ics.s.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) (_cpu_csleep_init) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) (_dma_memset) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) (_gint_exch) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) (_kmalloc_arena_osheap) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) (_dupdate_get_hook) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) (_dwindow) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) (_topti_glyph_fg_bg) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_ops.o) + CMakeFiles/shmup.dir/src/main.cpp.obj (__ZdlPvj) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + CMakeFiles/shmup.dir/src/main.cpp.obj (___gxx_personality_v0) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) (__ZSt9terminatev) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_unex_handler.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) (__ZN10__cxxabiv120__unexpected_handlerE) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_op.o) + CMakeFiles/shmup.dir/src/main.cpp.obj (__Znwj) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + CMakeFiles/shmup.dir/src/main.cpp.obj (__ZSt20__throw_length_errorPKc) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) (__ZN9__gnu_cxx15__snprintf_liteEPcjPKcPv) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_op.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_ops.o) (__ZdlPv) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_call.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) (___cxa_call_terminate) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) (___cxa_begin_catch) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) (__ZTIN10__cxxabiv115__forced_unwindE) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) (___cxa_get_globals_fast) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_term_handler.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) (__ZN10__cxxabiv119__terminate_handlerE) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_op.o) (__ZSt15get_new_handlerv) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) (__ZTVN10__cxxabiv120__si_class_type_infoE) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) (__ZNKSt9type_info14__is_pointer_pEv) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) (__ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(rand.c.obj) + CMakeFiles/shmup.dir/src/main.cpp.obj (_srand) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(tinymt32.c.obj) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(rand.c.obj) (_tinymt32_generate_uint32) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj) + CMakeFiles/shmup.dir/src/main.cpp.obj (___cxa_atexit) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (___printf_enable_fixed) + CMakeFiles/shmup.dir/src/main.cpp.obj (___printf_enable_fixed) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (___printf_enable_fp) + CMakeFiles/shmup.dir/src/main.cpp.obj (___printf_enable_fp) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) (___printf_register) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) (___printf_compute_geometry) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(vsnprintf.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) (_vsnprintf) + CMakeFiles/shmup.dir/src/utilities.cpp.obj (_vsnprintf) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(abort.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) (_abort) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) (_abort) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) (_exit) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strchr.c.obj) @@ -151,17 +267,19 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) (_memcmp) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcpy.S.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_memcpy) + CMakeFiles/shmup.dir/src/main.cpp.obj (_memcpy) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memmove.S.obj) + CMakeFiles/shmup.dir/src/main.cpp.obj (_memmove) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memset.S.obj) - CMakeFiles/myaddin.dir/src/main.cc.obj (_memset) + CMakeFiles/shmup.dir/src/main.cpp.obj (_memset) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strlen.S.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) (_strlen) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(cpucap.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) (___cpucap) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(free.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) (_free) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) (_free) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) (_malloc) + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) (_malloc) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(realloc.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) (_realloc) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) @@ -202,16 +320,10 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fileutil.c.obj) (_read) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) (_write) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) (_rtc_ticks) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) (_rtc_get_time) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) (_ceil) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) (___movmemSI12) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) (___udivsi3) +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_table.o) + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) (___sdivsi3_i4i) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) (___lshrdi3) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) @@ -222,8 +334,6 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) (___umoddi3) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) (___adddf3) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) (___muldf3) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) (___eqdf2) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) @@ -238,29 +348,53 @@ Membre d'archive inclu pour satisfaire la référence par fichier (symbole) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) (___floatsidf) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) (___fixdfsi) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) (___thenan_df) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udiv_qrnnd_16.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) (___udiv_qrnnd_16) -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) (___unpack_d) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) (___fpcmp_parts_d) Sections d'entrée éliminées - .comment 0x0000000000000000 0x13 CMakeFiles/myaddin.dir/src/main.cc.obj - .eh_frame 0x0000000000000000 0x74 CMakeFiles/myaddin.dir/src/main.cc.obj + .group 0x0000000000000000 0xc CMakeFiles/shmup.dir/src/main.cpp.obj + .group 0x0000000000000000 0xc CMakeFiles/shmup.dir/src/main.cpp.obj + .comment 0x0000000000000000 0x13 CMakeFiles/shmup.dir/src/main.cpp.obj + .eh_frame 0x0000000000000000 0x178 CMakeFiles/shmup.dir/src/main.cpp.obj + .comment 0x0000000000000000 0x13 CMakeFiles/shmup.dir/src/utilities.cpp.obj + .eh_frame 0x0000000000000000 0x74 CMakeFiles/shmup.dir/src/utilities.cpp.obj + .comment 0x0000000000000000 0x13 CMakeFiles/shmup.dir/src/particles.cpp.obj + .eh_frame 0x0000000000000000 0xf8 CMakeFiles/shmup.dir/src/particles.cpp.obj + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + .eh_frame 0x0000000000000000 0x868 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + .eh_frame 0x0000000000000000 0x5f0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) @@ -270,22 +404,19 @@ Sections d'entrée éliminées .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_alpha.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) .gint.rodata.sh3 0x0000000000000000 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) @@ -295,14 +426,62 @@ Sections d'entrée éliminées .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keydev.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_gint.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_ops.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_unex_handler.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_op.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_op.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_call.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + .group 0x0000000000000000 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_term_handler.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + .group 0x0000000000000000 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + .group 0x0000000000000000 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + .group 0x0000000000000000 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + .group 0x0000000000000000 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(rand.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(tinymt32.c.obj) + .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) @@ -335,8 +514,6 @@ Sections d'entrée éliminées .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(lseek.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(read.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) @@ -345,7 +522,6 @@ Sections d'entrée éliminées .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) .eh_frame 0x0000000000000000 0xac /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) @@ -353,8 +529,6 @@ Sections d'entrée éliminées .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) .comment 0x0000000000000000 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) Configuration mémoire @@ -370,9 +544,21 @@ Script de l'éditeurs de liens and table de projection mémoire LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libprof-cg.a LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a -LOAD CMakeFiles/myaddin.dir/src/main.cc.obj +LOAD CMakeFiles/shmup.dir/src/main.cpp.obj +LOAD CMakeFiles/shmup.dir/src/utilities.cpp.obj +LOAD CMakeFiles/shmup.dir/src/particles.cpp.obj +LOAD CMakeFiles/shmup.dir/assets-cg/font.png.o +LOAD CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o +LOAD CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o +LOAD CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o +LOAD CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o +LOAD CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o +LOAD CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o +LOAD CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a +LOAD /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a +LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libnum.a LOAD /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a @@ -382,977 +568,1697 @@ LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../ LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a 0x0000000000300000 _brom = 0x300000 - 0x000000000000dc8c _srom = (((SIZEOF (.text) + SIZEOF (.rodata)) + SIZEOF (.gint.drivers)) + SIZEOF (.gint.blocks)) + 0x000000000001860c _srom = (((SIZEOF (.text) + SIZEOF (.rodata)) + SIZEOF (.gint.drivers)) + SIZEOF (.gint.blocks)) -.text 0x0000000000300000 0xa91c +.text 0x0000000000300000 0x11e20 *(.text.entry) .text.entry 0x0000000000300000 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) 0x0000000000300000 _start 0x0000000000300040 _bctors = . *(.ctors .ctors.*) - .ctors 0x0000000000300040 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - .ctors 0x0000000000300044 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) - .ctors 0x0000000000300048 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) - .ctors 0x000000000030004c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) - .ctors 0x0000000000300050 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) - 0x0000000000300054 _ectors = . - 0x0000000000300054 _bdtors = . + .ctors 0x0000000000300040 0x4 CMakeFiles/shmup.dir/src/main.cpp.obj + .ctors 0x0000000000300044 0x8 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) + .ctors 0x000000000030004c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) + .ctors 0x0000000000300050 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) + .ctors 0x0000000000300054 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) + .ctors 0x0000000000300058 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) + .ctors 0x000000000030005c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + .ctors 0x0000000000300060 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) + .ctors 0x0000000000300064 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) + .ctors 0x0000000000300068 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj) + .ctors 0x000000000030006c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) + .ctors 0x0000000000300070 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) + 0x0000000000300074 _ectors = . + 0x0000000000300074 _bdtors = . *(.dtors .dtors.*) - 0x0000000000300054 _edtors = . - 0x0000000000300054 _gint_exch_start = . + 0x0000000000300074 _edtors = . + 0x0000000000300074 _gint_exch_start = . *(.gint.exch) - *fill* 0x0000000000300054 0xc - .gint.exch 0x0000000000300060 0x90 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) - 0x0000000000300060 _gint_exch + *fill* 0x0000000000300074 0xc + .gint.exch 0x0000000000300080 0x90 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) + 0x0000000000300080 _gint_exch 0x000000000000009c _gint_exch_size = ABSOLUTE ((. - _gint_exch_start)) - 0x00000000003000f0 _gint_tlbh_start = . + 0x0000000000300110 _gint_tlbh_start = . *(.gint.tlbh) - .gint.tlbh 0x00000000003000f0 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) - 0x00000000003000f0 _gint_tlbh + .gint.tlbh 0x0000000000300110 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) + 0x0000000000300110 _gint_tlbh 0x0000000000000070 _gint_tlbh_size = ABSOLUTE ((. - _gint_tlbh_start)) *(.text .text.*) - .text 0x0000000000300160 0x0 CMakeFiles/myaddin.dir/src/main.cc.obj - .text.startup 0x0000000000300160 0x230 CMakeFiles/myaddin.dir/src/main.cc.obj - 0x0000000000300160 _main - .text 0x0000000000300390 0xd8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - 0x0000000000300390 ___divsf3 - .text 0x0000000000300468 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - 0x0000000000300468 ___extendsfdf2 - .text 0x00000000003004a0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - .text 0x00000000003004a0 0x88 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - 0x00000000003004a0 ___floatunsisf - .text 0x0000000000300528 0x28 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - 0x0000000000300528 ___make_dp - .text 0x0000000000300550 0x64 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - 0x0000000000300550 ___clzsi2 - .text 0x00000000003005b4 0x108 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - 0x00000000003005b4 ___pack_f - .text 0x00000000003006bc 0x94 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - 0x00000000003006bc ___unpack_f - .text 0x0000000000300750 0x24c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - 0x0000000000300750 ___pack_d - .text 0x000000000030099c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - .text 0x000000000030099c 0x108 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) - 0x00000000003009a0 _prof_quit - 0x00000000003009c8 _prof_init - 0x0000000000300a70 _prof_time - .text 0x0000000000300aa4 0x108 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) - 0x0000000000300b94 _clock_freq - 0x0000000000300ba0 _cpg_compute_freq - .text 0x0000000000300bac 0x200 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) - 0x0000000000300bac _cpg_get_overclock_setting - 0x0000000000300be8 _cpg_set_overclock_setting - 0x0000000000300cb4 _clock_get_speed - 0x0000000000300d50 _clock_set_speed - .text 0x0000000000300dac 0x84 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(atomic.c.obj) - 0x0000000000300dac _cpu_atomic_start - 0x0000000000300df0 _cpu_atomic_end - .text 0x0000000000300e30 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(registers.s.obj) - 0x0000000000300e30 _cpu_setVBR - 0x0000000000300e36 _cpu_getVBR - 0x0000000000300e3c _cpu_setCPUOPM - 0x0000000000300e4e _cpu_getCPUOPM - 0x0000000000300e64 _cpu_getSR - 0x0000000000300e6a _cpu_setSR - .text 0x0000000000300e90 0x84 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) - 0x0000000000300e90 _hw_detect - .text 0x0000000000300f14 0x178 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) - 0x0000000000301064 _gint_setrestart - 0x0000000000301070 __Exit - .text 0x000000000030108c 0x384 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) - 0x000000000030108c _gint_world_alloc - 0x0000000000301118 _gint_world_free - 0x0000000000301124 _gint_world_sync - 0x0000000000301170 _gint_world_switch_in - 0x0000000000301274 _gint_world_switch_out - 0x0000000000301350 _gint_world_switch - 0x00000000003013dc _gint_switch - .text 0x0000000000301410 0x1e4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) - 0x0000000000301544 _keydev_std - 0x0000000000301550 _pollevent - 0x0000000000301560 _waitevent - 0x00000000003015b8 _clearevents - 0x00000000003015d8 _keydown - .text 0x00000000003015f4 0x218 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) - 0x0000000000301628 _mmu_is_rom - 0x0000000000301654 _utlb_addr - 0x0000000000301664 _utlb_data - 0x0000000000301674 _utlb_mapped_memory - 0x0000000000301734 _utlb_translate - 0x00000000003017ac _mmu_translate - 0x00000000003017b8 _mmu_uram - 0x00000000003017d8 _mmu_uram_size - .text 0x000000000030180c 0xc0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) - 0x000000000030180c _dprint_opt - 0x000000000030187c _dprint - .text 0x00000000003018cc 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) - 0x00000000003018cc _dtext - .text 0x00000000003018f0 0x7dc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) - 0x0000000000301ba4 _timer_delay - 0x0000000000301c50 _timer_configure - 0x0000000000301e5c _timer_start - 0x0000000000301e68 _timer_reload - 0x0000000000301e94 _timer_pause - 0x0000000000301ea0 _timer_stop - 0x0000000000301f18 _timer_wait - 0x0000000000301f8c _timer_spinwait - 0x0000000000301ff0 _timer_rescale - 0x0000000000302058 _timer_setup - 0x00000000003020bc _timer_timeout - .text 0x00000000003020cc 0x214 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - 0x00000000003020cc _usb_ff_bulk_output - 0x00000000003020e0 _usb_fxlink_fill_header - 0x000000000030221c _usb_fxlink_screenshot - 0x000000000030222c _usb_fxlink_text - 0x00000000003022d0 _usb_fxlink_videocapture - .text.startup 0x00000000003022e0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - .text 0x0000000000302300 0x2fc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) - 0x0000000000302300 _usb_configure_endpoint - 0x000000000030233c _usb_configure_address - 0x0000000000302378 _usb_configure_solve - 0x000000000030253a _usb_configure_log - 0x000000000030253e _usb_configure - 0x0000000000302588 _usb_configure_clear_pipes - 0x00000000003025c4 _usb_configure_interfaces - 0x00000000003025d0 _usb_interface_pipe - .text.startup 0x00000000003025fc 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) - .text 0x000000000030261c 0xcc4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) - 0x0000000000302c0c _usb_pipe_configure - 0x0000000000302ce8 _usb_pipe_clear - 0x0000000000302f08 _usb_pipe_init_transfers - 0x0000000000302f1c _usb_write_async - 0x0000000000303000 _usb_write_sync_timeout - 0x00000000003030c8 _usb_write_sync - 0x00000000003030e8 _usb_commit_async - 0x00000000003031d8 _usb_commit_sync_timeout - 0x0000000000303284 _usb_commit_sync - 0x0000000000303290 _usb_pipe_write_bemp - .text 0x00000000003032e0 0x110 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) - 0x00000000003032e0 _usb_dc_string - 0x00000000003033c4 _usb_dc_string_get - .text 0x00000000003033f0 0x58c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) - 0x000000000030342c _hsave - 0x0000000000303720 _usb_set_log - 0x000000000030372c _usb_log - 0x0000000000303754 _usb_set_trace - 0x0000000000303760 _usb_trace - 0x000000000030379c _usb_open - 0x000000000030390c _usb_is_open - 0x0000000000303918 _usb_open_wait - 0x0000000000303940 _usb_close - .text 0x000000000030397c 0x74 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) - 0x000000000030397c _dclear - .text 0x00000000003039f0 0x120 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) - 0x00000000003039f0 _drect - .text 0x0000000000303b10 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) - 0x0000000000303b10 _dupdate - .text 0x0000000000303b70 0xe0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) - 0x0000000000303b70 _dvram_init - 0x0000000000303bcc _dsetvram - 0x0000000000303c10 _dgetvram - 0x0000000000303c30 _dvram_switch - .text 0x0000000000303c50 0x228 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) - 0x0000000000303c50 _dtext_opt - .text 0x0000000000303e78 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) - .text 0x0000000000303e78 0x5c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) - 0x0000000000303e78 _sleep - 0x0000000000303e8c _sleep_block - 0x0000000000303eb0 _sleep_unblock - .text 0x0000000000303ed4 0x6b8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) - 0x00000000003043c4 _dma_transfer_async - 0x000000000030443c _dma_transfer_wait - 0x0000000000304448 _dma_transfer_sync - 0x00000000003044c0 _dma_transfer_atomic - 0x0000000000304528 _dma_transfer - .text 0x000000000030458c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - .text 0x000000000030458c 0x5c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) - 0x000000000030458c _dma_memset - .text 0x00000000003045e8 0x194 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) - 0x0000000000304664 _intc_priority - 0x00000000003046d8 _intc_handler - 0x0000000000304730 _intc_handler_function - .text 0x000000000030477c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - .text 0x000000000030477c 0x318 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) - 0x0000000000304a58 _gint_panic - 0x0000000000304a68 _gint_panic_set - 0x0000000000304a7c _gint_exc_catch - 0x0000000000304a88 _gint_exc_skip - .text 0x0000000000304a94 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) - .text 0x0000000000304a94 0x220 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) - 0x0000000000304a94 _kinit - 0x0000000000304c64 _kquit - .text 0x0000000000304cb4 0x198 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(osmenu.c.obj) - 0x0000000000304cb4 _gint_osmenu_native - 0x0000000000304db8 _gint_osmenu - 0x0000000000304dec _gint_set_quit_handler - *fill* 0x0000000000304e4c 0x4 - .text 0x0000000000304e50 0x1c0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(syscalls.S.obj) - 0x0000000000304e50 ___malloc - 0x0000000000304e64 ___free - 0x0000000000304e74 ___realloc - 0x0000000000304e84 _BFile_Remove - 0x0000000000304e94 _BFile_Rename - 0x0000000000304ea4 _BFile_Create - 0x0000000000304eb4 _BFile_Open - 0x0000000000304ec4 _BFile_Close - 0x0000000000304ed4 _BFile_Size - 0x0000000000304ee4 _BFile_Seek - 0x0000000000304ef4 _BFile_GetPos - 0x0000000000304f04 _BFile_Write - 0x0000000000304f14 _BFile_Read - 0x0000000000304f24 _BFile_FindFirst - 0x0000000000304f34 _BFile_FindNext - 0x0000000000304f44 _BFile_FindClose - 0x0000000000304f54 ___Timer_Install - 0x0000000000304f64 ___Timer_Start - 0x0000000000304f74 ___Timer_Stop - 0x0000000000304f84 ___Timer_Deinstall - 0x0000000000304f94 ___PutKeyCode - 0x0000000000304fa4 ___GetKeyWait - 0x0000000000304fb4 ___ClearKeyBuffer - 0x0000000000304fc4 ___GetVRAMAddress - 0x0000000000304fd4 ___ConfigureStatusArea - 0x0000000000304fe4 ___SetQuitHandler - 0x0000000000304ff4 ___SpecialMatrixCodeProcessing - .text 0x0000000000305010 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) - .text 0x0000000000305010 0x608 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keydev.c.obj) - 0x000000000030505a _keydev_init - 0x0000000000305068 _keydev_queue_push - 0x00000000003050c4 _keydev_process_state - 0x000000000030519c _keydev_repeat_event - 0x0000000000305210 _keydev_tick - 0x0000000000305260 _keydev_async_filter - 0x0000000000305264 _keydev_set_async_filter - 0x0000000000305268 _keydev_unqueue_event - 0x0000000000305340 _keydev_keydown - 0x0000000000305362 _keydev_transform - 0x000000000030537c _keydev_set_transform - 0x00000000003053b8 _keydev_set_standard_repeats - 0x00000000003053cc _keydev_read - .text 0x0000000000305618 0x7f8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_gint.c.obj) - 0x0000000000305d08 _kmalloc_init_arena - 0x0000000000305df8 _kmalloc_get_gint_stats - .text 0x0000000000305e10 0x2a0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) - 0x0000000000305e40 _kmalloc_init - 0x0000000000305e50 _kmalloc_get_arena - 0x0000000000305ea4 _kmalloc - 0x0000000000305f38 _kfree - 0x0000000000305f6c _krealloc - 0x0000000000306000 _kmalloc_max - 0x000000000030608c _kmalloc_add_arena - .text 0x00000000003060b0 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) - 0x00000000003060b0 _dupdate_set_hook - 0x00000000003060d8 _dupdate_get_hook - .text 0x00000000003060f4 0x74 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) - 0x00000000003060f4 _dwindow_set - .text 0x0000000000306168 0x2d4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) - 0x0000000000306168 _dfont - 0x0000000000306180 _dfont_default - 0x000000000030618c _topti_glyph_index - 0x00000000003061d6 _topti_offset - 0x000000000030622e _topti_utf8_next - 0x00000000003062ca _dnsize - 0x0000000000306390 _dsize - 0x00000000003063ac _drsize - .text 0x000000000030643c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) - .text 0x000000000030643c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) - .text 0x000000000030643c 0xb4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) - 0x00000000003064d8 _sleep_us - 0x00000000003064e4 _sleep_us_spin - .text 0x00000000003064f0 0x29c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) - 0x00000000003064f8 _usb_req_setup - .text.startup 0x000000000030678c 0x5c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) - .text 0x00000000003067e8 0x380 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) - 0x00000000003067e8 _r61524_get - 0x0000000000306810 _r61524_set - 0x000000000030683c _r61524_win_get - 0x00000000003068d0 _r61524_win_set - 0x0000000000306970 _r61524_start_frame - 0x00000000003069f0 _r61524_display - 0x0000000000306adc _r61524_display_rect - *fill* 0x0000000000306b68 0x8 - .text 0x0000000000306b70 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) - 0x0000000000306b70 _topti_glyph_fg_bg - 0x0000000000306bae _topti_glyph_fg - 0x0000000000306be8 _topti_glyph_bg - .text 0x0000000000306c40 0xac /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) - 0x0000000000306ce0 _cpu_configure_VBR - *fill* 0x0000000000306cec 0x4 - .text 0x0000000000306cf0 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ics.s.obj) - 0x0000000000306cf0 _cpu_csleep_init - 0x0000000000306d04 _cpu_csleep - 0x0000000000306d28 _cpu_csleep_cancel - .text 0x0000000000306d60 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) - .text 0x0000000000306d60 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) - .text 0x0000000000306d84 0x144 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) - 0x0000000000306db4 ___printf_format_D - 0x0000000000306eb8 ___printf_enable_fixed - .text 0x0000000000306ec8 0x680 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) - 0x0000000000307508 ___printf_enable_fp - .text 0x0000000000307548 0x368 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) - 0x0000000000307548 ___printf_register - 0x0000000000307580 ___printf_flush - 0x00000000003075f4 ___printf - .text 0x00000000003078b0 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) - 0x00000000003078b0 ___printf_compute_geometry - 0x0000000000307960 ___printf_load_i - 0x000000000030799c ___printf_load_u - 0x00000000003079d6 ___printf_digits10 - 0x0000000000307a4c ___printf_digits16 - 0x0000000000307a8c ___printf_digits8 - .text 0x0000000000307abc 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(vsnprintf.c.obj) - 0x0000000000307abc _vsnprintf - .text 0x0000000000307b00 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(abort.c.obj) - 0x0000000000307b00 _abort - .text 0x0000000000307b18 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) - 0x0000000000307b18 _exit - .text 0x0000000000307b24 0x16 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strchr.c.obj) - 0x0000000000307b24 _strchr - .text 0x0000000000307b3a 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strcmp.c.obj) - 0x0000000000307b3a _strcmp - .text 0x0000000000307b52 0x34 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strncpy.c.obj) - 0x0000000000307b52 _strncpy - *fill* 0x0000000000307b86 0x2 - .text 0x0000000000307b88 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setjmp.S.obj) - 0x0000000000307b88 _setjmp - .text 0x0000000000307bac 0x2c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(longjmp.S.obj) - 0x0000000000307bac _longjmp - *fill* 0x0000000000307bd8 0x8 - .text 0x0000000000307be0 0xa0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) - 0x0000000000307be0 _memcmp - .text 0x0000000000307c80 0xc0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcpy.S.obj) - 0x0000000000307c80 _memcpy - .text 0x0000000000307d40 0x56 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memset.S.obj) - 0x0000000000307d40 _memset - .text 0x0000000000307d96 0x2e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strlen.S.obj) - 0x0000000000307d96 _strlen - .text 0x0000000000307dc4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(cpucap.c.obj) - .text 0x0000000000307dc4 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(free.c.obj) - 0x0000000000307dc4 _free - .text 0x0000000000307dd0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) - 0x0000000000307dd0 _malloc - .text 0x0000000000307df0 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(realloc.c.obj) - 0x0000000000307df0 _realloc - .text 0x0000000000307dfc 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) - 0x0000000000307dfc _clock - .text.startup 0x0000000000307e38 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) - .text 0x0000000000307e70 0x56c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) - 0x0000000000307e70 _grisu_round - 0x0000000000307efa _digit_gen - 0x00000000003080fc _grisu2 - .text 0x00000000003083dc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(errno.c.obj) - .text 0x00000000003083dc 0x78 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(raise.c.obj) - 0x00000000003083dc _raise - .text 0x0000000000308454 0x120 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fwrite.c.obj) - 0x0000000000308454 _fwrite - .text 0x0000000000308574 0x548 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) - 0x00000000003085d8 ___printf_format_c - 0x00000000003086cc ___printf_format_s - 0x0000000000308768 ___printf_format_di - 0x0000000000308860 ___printf_format_ouxX - 0x00000000003089c0 ___printf_format_p - 0x0000000000308a28 ___printf_format_m - 0x0000000000308a7c ___printf_format_n - .text 0x0000000000308abc 0x26 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memrchr.c.obj) - 0x0000000000308abc _memrchr - *fill* 0x0000000000308ae2 0x2 - .text 0x0000000000308ae4 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) - 0x0000000000308ae4 _strerror - .text 0x0000000000308b00 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(signal.c.obj) - 0x0000000000308b00 _signal - .text 0x0000000000308b1c 0x488 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fileutil.c.obj) - 0x0000000000308b1c ___fp_open - 0x0000000000308b48 ___fp_close - 0x0000000000308b9c ___fp_remove_buffer - 0x0000000000308bcc ___fp_set_buffer - 0x0000000000308c10 ___fp_buffer_mode_read - 0x0000000000308c50 ___fp_buffer_mode_write - 0x0000000000308c94 ___fp_buffered_read - 0x0000000000308d4c ___fp_read - 0x0000000000308da8 ___fp_fread2 - 0x0000000000308eac ___fp_write - 0x0000000000308f04 ___fp_parse_mode - .text 0x0000000000308fa4 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fseek.c.obj) - 0x0000000000308fa4 _fseek - .text 0x0000000000308fec 0x8c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setvbuf.c.obj) - 0x0000000000308fec _setvbuf - *fill* 0x0000000000309078 0x8 - .text 0x0000000000309080 0xa0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memchr.S.obj) - 0x0000000000309080 _memchr - .text 0x0000000000309120 0x94 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fflush.c.obj) - 0x0000000000309120 _fflush - .text 0x00000000003091b4 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(close.c.obj) - 0x00000000003091b4 _close - .text 0x00000000003091fc 0xf8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) - 0x00000000003091fc _fs_get_descriptor - 0x0000000000309224 _fs_create_descriptor - 0x000000000030925c _fs_free_descriptor - 0x0000000000309280 _open_generic - .text.startup 0x00000000003092f4 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) - .text 0x000000000030932c 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(lseek.c.obj) - 0x000000000030932c _lseek - .text 0x0000000000309384 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(read.c.obj) - 0x0000000000309384 _read - .text 0x00000000003093c8 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) - 0x00000000003093c8 _write - .text 0x000000000030940c 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) - 0x000000000030940c _rtc_ticks - .text 0x0000000000309450 0x3e0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) - 0x0000000000309530 _rtc_get_time - 0x0000000000309618 _rtc_set_time - 0x0000000000309700 _rtc_periodic_disable - 0x0000000000309710 _rtc_periodic_enable - 0x0000000000309788 _rtc_periodic_interrupt - 0x00000000003097c4 _rtc_start_timer - 0x0000000000309824 _rtc_stop_timer - .text 0x0000000000309830 0x158 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) - 0x0000000000309830 _ceil - 0x0000000000309830 _ceill - .text 0x0000000000309988 0x78 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) - 0x0000000000309988 ___movstr - 0x0000000000309988 ___movmem - 0x00000000003099bc ___movmemSI64 - 0x00000000003099bc ___movstrSI64 - 0x00000000003099c0 ___movstrSI60 - 0x00000000003099c0 ___movmemSI60 - 0x00000000003099c4 ___movmemSI56 - 0x00000000003099c4 ___movstrSI56 - 0x00000000003099c8 ___movstrSI52 - 0x00000000003099c8 ___movmemSI52 - 0x00000000003099cc ___movstrSI48 - 0x00000000003099cc ___movmemSI48 - 0x00000000003099d0 ___movstrSI44 - 0x00000000003099d0 ___movmemSI44 - 0x00000000003099d4 ___movstrSI40 - 0x00000000003099d4 ___movmemSI40 - 0x00000000003099d8 ___movstrSI36 - 0x00000000003099d8 ___movmemSI36 - 0x00000000003099dc ___movmemSI32 - 0x00000000003099dc ___movstrSI32 - 0x00000000003099e0 ___movmemSI28 - 0x00000000003099e0 ___movstrSI28 - 0x00000000003099e4 ___movstrSI24 - 0x00000000003099e4 ___movmemSI24 - 0x00000000003099e8 ___movmemSI20 - 0x00000000003099e8 ___movstrSI20 - 0x00000000003099ec ___movstrSI16 - 0x00000000003099ec ___movmemSI16 - 0x00000000003099f0 ___movmemSI12 - 0x00000000003099f0 ___movstrSI12 - 0x00000000003099f4 ___movmemSI8 - 0x00000000003099f4 ___movstrSI8 - 0x00000000003099f8 ___movmemSI4 - 0x00000000003099f8 ___movstrSI4 - .text 0x0000000000309a00 0x6c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) - 0x0000000000309a22 ___udivsi3 - .text 0x0000000000309a6c 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - 0x0000000000309a6c ___lshrdi3 - .text 0x0000000000309a9c 0x2c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - 0x0000000000309a9c ___ashldi3 - .text 0x0000000000309ac8 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) - 0x0000000000309ac8 ___udivdi3 - .text 0x0000000000309cd4 0x24c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) - 0x0000000000309cd4 ___umoddi3 - .text 0x0000000000309f20 0x330 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - 0x000000000030a1ac ___adddf3 - 0x000000000030a1fc ___subdf3 - .text 0x000000000030a250 0x208 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - 0x000000000030a250 ___muldf3 - .text 0x000000000030a458 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - 0x000000000030a458 ___eqdf2 - .text 0x000000000030a4b0 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - 0x000000000030a4b0 ___gtdf2 - .text 0x000000000030a508 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - 0x000000000030a508 ___ltdf2 - .text 0x000000000030a560 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - 0x000000000030a560 ___ledf2 - .text 0x000000000030a5b8 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - 0x000000000030a5b8 ___unorddf2 - .text 0x000000000030a600 0x98 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - 0x000000000030a600 ___floatsidf - .text 0x000000000030a698 0x8c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - 0x000000000030a698 ___fixdfsi - .text 0x000000000030a724 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - *fill* 0x000000000030a724 0x4 - .text 0x000000000030a728 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udiv_qrnnd_16.o) - 0x000000000030a728 ___udiv_qrnnd_16 - .text 0x000000000030a788 0xcc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - 0x000000000030a788 ___unpack_d - .text 0x000000000030a854 0xc8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) - 0x000000000030a854 ___fpcmp_parts_d + .text 0x0000000000300180 0xd0 CMakeFiles/shmup.dir/src/main.cpp.obj + 0x0000000000300180 __Z16Create_Explosionv + .text._ZNSt6vectorIP8ParticleSaIS1_EED2Ev + 0x0000000000300250 0x18 CMakeFiles/shmup.dir/src/main.cpp.obj + 0x0000000000300250 __ZNSt6vectorIP8ParticleSaIS1_EED1Ev + 0x0000000000300250 __ZNSt6vectorIP8ParticleSaIS1_EED2Ev + .text._ZNSt6vectorIP8ParticleSaIS1_EE17_M_realloc_insertIJRKS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_ + 0x0000000000300268 0xd0 CMakeFiles/shmup.dir/src/main.cpp.obj + 0x0000000000300268 __ZNSt6vectorIP8ParticleSaIS1_EE17_M_realloc_insertIJRKS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_ + .text.startup 0x0000000000300338 0x33c CMakeFiles/shmup.dir/src/main.cpp.obj + 0x0000000000300338 _main + .text 0x0000000000300674 0xa4 CMakeFiles/shmup.dir/src/utilities.cpp.obj + 0x0000000000300674 __Z14Azur_draw_textiiPKcz + .text 0x0000000000300718 0x254 CMakeFiles/shmup.dir/src/particles.cpp.obj + 0x0000000000300718 __ZN8ParticleC1Ett + 0x0000000000300718 __ZN8ParticleC2Ett + 0x0000000000300808 __ZN8ParticleD1Ev + 0x0000000000300808 __ZN8ParticleD2Ev + 0x000000000030080c __ZN8Particle6UpdateEv + 0x00000000003008b4 __ZN8Particle6RenderEv + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/font.png.o + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o + .text 0x000000000030096c 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o + .text 0x000000000030096c 0x4c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + 0x000000000030096c ___fixunssfsi + .text 0x00000000003009b8 0x1ec /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + 0x0000000000300b08 ___addsf3 + 0x0000000000300b54 ___subsf3 + .text 0x0000000000300ba4 0x130 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + 0x0000000000300ba4 ___mulsf3 + .text 0x0000000000300cd4 0xd8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + 0x0000000000300cd4 ___divsf3 + .text 0x0000000000300dac 0x54 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + 0x0000000000300dac ___gesf2 + .text 0x0000000000300e00 0x78 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + 0x0000000000300e00 ___floatsisf + .text 0x0000000000300e78 0x68 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + 0x0000000000300e78 ___fixsfsi + .text 0x0000000000300ee0 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + 0x0000000000300ee0 ___extendsfdf2 + .text 0x0000000000300f18 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + .text 0x0000000000300f18 0x88 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + 0x0000000000300f18 ___floatunsisf + .text 0x0000000000300fa0 0x208 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + 0x0000000000300fa0 ___muldf3 + .text 0x00000000003011a8 0x28 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + 0x00000000003011a8 ___make_dp + .text 0x00000000003011d0 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + 0x00000000003011d0 ___truncdfsf2 + .text 0x0000000000301218 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + .text 0x0000000000301218 0x242c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + 0x0000000000302f40 __Unwind_GetGR + 0x0000000000302f90 __Unwind_GetCFA + 0x0000000000302f9c __Unwind_SetGR + 0x0000000000302ff8 __Unwind_GetIP + 0x0000000000303004 __Unwind_GetIPInfo + 0x000000000030301c __Unwind_SetIP + 0x0000000000303028 __Unwind_GetLanguageSpecificData + 0x0000000000303034 __Unwind_GetRegionStart + 0x0000000000303040 __Unwind_FindEnclosingFunction + 0x0000000000303060 __Unwind_GetDataRelBase + 0x000000000030306c __Unwind_GetTextRelBase + 0x0000000000303078 ___frame_state_for + 0x0000000000303154 __Unwind_RaiseException + 0x00000000003032f0 __Unwind_ForcedUnwind + 0x00000000003033a8 __Unwind_Resume + 0x0000000000303474 __Unwind_Resume_or_Rethrow + 0x0000000000303540 __Unwind_DeleteException + 0x0000000000303550 __Unwind_Backtrace + .text 0x0000000000303644 0x13e0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + 0x00000000003046f4 ___register_frame_info_bases + 0x0000000000304720 ___register_frame_info + 0x0000000000304750 ___register_frame + 0x0000000000304790 ___register_frame_info_table_bases + 0x00000000003047b0 ___register_frame_info_table + 0x00000000003047d4 ___register_frame_table + 0x000000000030480c ___deregister_frame_info_bases + 0x00000000003048a0 ___deregister_frame_info + 0x00000000003048ac ___deregister_frame + 0x00000000003048d0 __Unwind_Find_FDE + .text 0x0000000000304a24 0x78 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) + 0x0000000000304a24 ___movstr + 0x0000000000304a24 ___movmem + 0x0000000000304a58 ___movmemSI64 + 0x0000000000304a58 ___movstrSI64 + 0x0000000000304a5c ___movstrSI60 + 0x0000000000304a5c ___movmemSI60 + 0x0000000000304a60 ___movmemSI56 + 0x0000000000304a60 ___movstrSI56 + 0x0000000000304a64 ___movstrSI52 + 0x0000000000304a64 ___movmemSI52 + 0x0000000000304a68 ___movstrSI48 + 0x0000000000304a68 ___movmemSI48 + 0x0000000000304a6c ___movstrSI44 + 0x0000000000304a6c ___movmemSI44 + 0x0000000000304a70 ___movstrSI40 + 0x0000000000304a70 ___movmemSI40 + 0x0000000000304a74 ___movstrSI36 + 0x0000000000304a74 ___movmemSI36 + 0x0000000000304a78 ___movmemSI32 + 0x0000000000304a78 ___movstrSI32 + 0x0000000000304a7c ___movmemSI28 + 0x0000000000304a7c ___movstrSI28 + 0x0000000000304a80 ___movstrSI24 + 0x0000000000304a80 ___movmemSI24 + 0x0000000000304a84 ___movmemSI20 + 0x0000000000304a84 ___movstrSI20 + 0x0000000000304a88 ___movstrSI16 + 0x0000000000304a88 ___movmemSI16 + 0x0000000000304a8c ___movmemSI12 + 0x0000000000304a8c ___movstrSI12 + 0x0000000000304a90 ___movmemSI8 + 0x0000000000304a90 ___movstrSI8 + 0x0000000000304a94 ___movmemSI4 + 0x0000000000304a94 ___movstrSI4 + .text 0x0000000000304a9c 0xa0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sdivsi3.o) + 0x0000000000304a9c ___sdivsi3 + .text 0x0000000000304b3c 0x6c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) + 0x0000000000304b5e ___udivsi3 + .text 0x0000000000304ba8 0x64 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + 0x0000000000304ba8 ___clzsi2 + .text 0x0000000000304c0c 0x108 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + 0x0000000000304c0c ___pack_f + .text 0x0000000000304d14 0x94 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + 0x0000000000304d14 ___unpack_f + .text 0x0000000000304da8 0xac /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + 0x0000000000304da8 ___fpcmp_parts_f + .text 0x0000000000304e54 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + 0x0000000000304e54 ___make_fp + .text 0x0000000000304e74 0x24c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + 0x0000000000304e74 ___pack_d + .text 0x00000000003050c0 0xcc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + 0x00000000003050c0 ___unpack_d + .text 0x000000000030518c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .text 0x000000000030518c 0x43c /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) + 0x0000000000305240 _azrp_clear_commands + 0x0000000000305254 _azrp_sort_commands + 0x0000000000305294 _azrp_render_fragments + 0x0000000000305424 _azrp_update + 0x0000000000305444 _azrp_config_scale + 0x00000000003054b4 _azrp_config_frag_offset + 0x00000000003054d0 _azrp_hook_get_prefrag + 0x00000000003054dc _azrp_hook_set_prefrag + 0x00000000003054e8 _azrp_register_shader + 0x0000000000305514 _azrp_set_uniforms + 0x0000000000305538 _azrp_queue_command + .text.startup 0x00000000003055c8 0x44 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) + 0x00000000003055d4 _azrp_perf_clear + .text 0x000000000030560c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(r61524.s.obj) + .text 0x000000000030560c 0x98 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) + 0x000000000030560c _azrp_shader_clear_configure + 0x000000000030563c _azrp_clear + .text.startup 0x00000000003056a4 0x20 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) + *fill* 0x00000000003056c4 0xc + .text 0x00000000003056d0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.S.obj) + 0x00000000003056d0 _azrp_shader_clear + .text 0x00000000003056f0 0x130 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) + 0x00000000003056f0 _azrp_queue_image + 0x0000000000305790 _azrp_subimage + 0x00000000003057f8 _azrp_image + .text 0x0000000000305820 0x25c /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) + 0x0000000000305868 _azrp_shader_image_rgb16_configure + 0x0000000000305884 _azrp_subimage_rgb16_clearbg + 0x0000000000305934 _azrp_subimage_rgb16 + 0x0000000000305a28 _azrp_image_rgb16 + 0x0000000000305a50 _azrp_image_rgb16_clearbg + .text.startup 0x0000000000305a7c 0x20 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) + .text 0x0000000000305a9c 0x25c /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) + 0x0000000000305ae4 _azrp_shader_image_p8_configure + 0x0000000000305b00 _azrp_subimage_p8_clearbg + 0x0000000000305bb0 _azrp_subimage_p8 + 0x0000000000305ca4 _azrp_image_p8 + 0x0000000000305ccc _azrp_image_p8_clearbg + .text.startup 0x0000000000305cf8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) + .text 0x0000000000305d18 0x25c /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) + 0x0000000000305d60 _azrp_shader_image_p4_configure + 0x0000000000305d7c _azrp_subimage_p4_clearbg + 0x0000000000305e2c _azrp_subimage_p4 + 0x0000000000305f20 _azrp_image_p4 + 0x0000000000305f48 _azrp_image_p4_clearbg + .text.startup 0x0000000000305f74 0x20 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) + .text 0x0000000000305f94 0xf0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_normal.S.obj) + 0x0000000000305f94 _azrp_image_shader_rgb16_normal + .text 0x0000000000306084 0xf8 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_clearbg.S.obj) + 0x0000000000306084 _azrp_image_shader_rgb16_clearbg + .text 0x000000000030617c 0xdc /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8_normal.S.obj) + 0x000000000030617c _azrp_image_shader_p8_normal + .text 0x0000000000306258 0x104 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4_normal.S.obj) + 0x0000000000306258 _azrp_image_shader_p4_normal + .text 0x000000000030635c 0x108 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) + 0x0000000000306360 _prof_quit + 0x0000000000306388 _prof_init + 0x0000000000306430 _prof_time + .text 0x0000000000306464 0x108 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) + 0x0000000000306554 _clock_freq + 0x0000000000306560 _cpg_compute_freq + .text 0x000000000030656c 0x200 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) + 0x000000000030656c _cpg_get_overclock_setting + 0x00000000003065a8 _cpg_set_overclock_setting + 0x0000000000306674 _clock_get_speed + 0x0000000000306710 _clock_set_speed + .text 0x000000000030676c 0x84 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(atomic.c.obj) + 0x000000000030676c _cpu_atomic_start + 0x00000000003067b0 _cpu_atomic_end + .text 0x00000000003067f0 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(registers.s.obj) + 0x00000000003067f0 _cpu_setVBR + 0x00000000003067f6 _cpu_getVBR + 0x00000000003067fc _cpu_setCPUOPM + 0x000000000030680e _cpu_getCPUOPM + 0x0000000000306824 _cpu_getSR + 0x000000000030682a _cpu_setSR + .text 0x0000000000306850 0x84 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) + 0x0000000000306850 _hw_detect + .text 0x00000000003068d4 0x178 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) + 0x0000000000306a24 _gint_setrestart + 0x0000000000306a30 __Exit + .text 0x0000000000306a4c 0x384 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) + 0x0000000000306a4c _gint_world_alloc + 0x0000000000306ad8 _gint_world_free + 0x0000000000306ae4 _gint_world_sync + 0x0000000000306b30 _gint_world_switch_in + 0x0000000000306c34 _gint_world_switch_out + 0x0000000000306d10 _gint_world_switch + 0x0000000000306d9c _gint_switch + .text 0x0000000000306dd0 0x1e4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) + 0x0000000000306f04 _keydev_std + 0x0000000000306f10 _pollevent + 0x0000000000306f20 _waitevent + 0x0000000000306f78 _clearevents + 0x0000000000306f98 _keydown + .text 0x0000000000306fb4 0x218 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) + 0x0000000000306fe8 _mmu_is_rom + 0x0000000000307014 _utlb_addr + 0x0000000000307024 _utlb_data + 0x0000000000307034 _utlb_mapped_memory + 0x00000000003070f4 _utlb_translate + 0x000000000030716c _mmu_translate + 0x0000000000307178 _mmu_uram + 0x0000000000307198 _mmu_uram_size + .text 0x00000000003071cc 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) + 0x00000000003071cc _rtc_ticks + .text 0x0000000000307210 0x7dc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) + 0x00000000003074c4 _timer_delay + 0x0000000000307570 _timer_configure + 0x000000000030777c _timer_start + 0x0000000000307788 _timer_reload + 0x00000000003077b4 _timer_pause + 0x00000000003077c0 _timer_stop + 0x0000000000307838 _timer_wait + 0x00000000003078ac _timer_spinwait + 0x0000000000307910 _timer_rescale + 0x0000000000307978 _timer_setup + 0x00000000003079dc _timer_timeout + .text 0x00000000003079ec 0x214 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + 0x00000000003079ec _usb_ff_bulk_output + 0x0000000000307a00 _usb_fxlink_fill_header + 0x0000000000307b3c _usb_fxlink_screenshot + 0x0000000000307b4c _usb_fxlink_text + 0x0000000000307bf0 _usb_fxlink_videocapture + .text.startup 0x0000000000307c00 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + .text 0x0000000000307c20 0x2fc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) + 0x0000000000307c20 _usb_configure_endpoint + 0x0000000000307c5c _usb_configure_address + 0x0000000000307c98 _usb_configure_solve + 0x0000000000307e5a _usb_configure_log + 0x0000000000307e5e _usb_configure + 0x0000000000307ea8 _usb_configure_clear_pipes + 0x0000000000307ee4 _usb_configure_interfaces + 0x0000000000307ef0 _usb_interface_pipe + .text.startup 0x0000000000307f1c 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) + .text 0x0000000000307f3c 0xcc4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) + 0x000000000030852c _usb_pipe_configure + 0x0000000000308608 _usb_pipe_clear + 0x0000000000308828 _usb_pipe_init_transfers + 0x000000000030883c _usb_write_async + 0x0000000000308920 _usb_write_sync_timeout + 0x00000000003089e8 _usb_write_sync + 0x0000000000308a08 _usb_commit_async + 0x0000000000308af8 _usb_commit_sync_timeout + 0x0000000000308ba4 _usb_commit_sync + 0x0000000000308bb0 _usb_pipe_write_bemp + .text 0x0000000000308c00 0x110 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) + 0x0000000000308c00 _usb_dc_string + 0x0000000000308ce4 _usb_dc_string_get + .text 0x0000000000308d10 0x58c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) + 0x0000000000308d4c _hsave + 0x0000000000309040 _usb_set_log + 0x000000000030904c _usb_log + 0x0000000000309074 _usb_set_trace + 0x0000000000309080 _usb_trace + 0x00000000003090bc _usb_open + 0x000000000030922c _usb_is_open + 0x0000000000309238 _usb_open_wait + 0x0000000000309260 _usb_close + .text 0x000000000030929c 0x380 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + 0x000000000030929c _r61524_get + 0x00000000003092c4 _r61524_set + 0x00000000003092f0 _r61524_win_get + 0x0000000000309384 _r61524_win_set + 0x0000000000309424 _r61524_start_frame + 0x00000000003094a4 _r61524_display + 0x0000000000309590 _r61524_display_rect + .text 0x000000000030961c 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_alpha.c.obj) + 0x000000000030961c _image_alpha + .text 0x0000000000309640 0xe0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) + 0x0000000000309640 _dvram_init + 0x000000000030969c _dsetvram + 0x00000000003096e0 _dgetvram + 0x0000000000309700 _dvram_switch + .text 0x0000000000309720 0x248 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image.c.obj) + 0x0000000000309720 _gint_image_clip_input + 0x00000000003097a2 _gint_image_clip_output + 0x00000000003097f8 _gint_image_mkcmd + .text 0x0000000000309968 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_rgb16.S.obj) + 0x0000000000309968 _gint_image_rgb16_loop + .text 0x00000000003099a0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8.S.obj) + 0x00000000003099a0 _gint_image_p8_loop + .text 0x00000000003099d0 0x124 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8_clearbg.S.obj) + 0x00000000003099d0 _gint_image_p8_clearbg + .text 0x0000000000309af4 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4.S.obj) + 0x0000000000309af4 _gint_image_p4_loop + .text 0x0000000000309b2c 0x15c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4_clearbg_alt.S.obj) + 0x0000000000309b2c _gint_image_p4_clearbg_alt + .text 0x0000000000309c88 0x5c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) + 0x0000000000309c88 _sleep + 0x0000000000309c9c _sleep_block + 0x0000000000309cc0 _sleep_unblock + .text 0x0000000000309ce4 0x6b8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) + 0x000000000030a1d4 _dma_transfer_async + 0x000000000030a24c _dma_transfer_wait + 0x000000000030a258 _dma_transfer_sync + 0x000000000030a2d0 _dma_transfer_atomic + 0x000000000030a338 _dma_transfer + .text 0x000000000030a39c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + .text 0x000000000030a39c 0x194 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) + 0x000000000030a418 _intc_priority + 0x000000000030a48c _intc_handler + 0x000000000030a4e4 _intc_handler_function + .text 0x000000000030a530 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + .text 0x000000000030a530 0x318 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) + 0x000000000030a80c _gint_panic + 0x000000000030a81c _gint_panic_set + 0x000000000030a830 _gint_exc_catch + 0x000000000030a83c _gint_exc_skip + .text 0x000000000030a848 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) + .text 0x000000000030a848 0x220 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) + 0x000000000030a848 _kinit + 0x000000000030aa18 _kquit + .text 0x000000000030aa68 0x198 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(osmenu.c.obj) + 0x000000000030aa68 _gint_osmenu_native + 0x000000000030ab6c _gint_osmenu + 0x000000000030aba0 _gint_set_quit_handler + .text 0x000000000030ac00 0x1c0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(syscalls.S.obj) + 0x000000000030ac00 ___malloc + 0x000000000030ac14 ___free + 0x000000000030ac24 ___realloc + 0x000000000030ac34 _BFile_Remove + 0x000000000030ac44 _BFile_Rename + 0x000000000030ac54 _BFile_Create + 0x000000000030ac64 _BFile_Open + 0x000000000030ac74 _BFile_Close + 0x000000000030ac84 _BFile_Size + 0x000000000030ac94 _BFile_Seek + 0x000000000030aca4 _BFile_GetPos + 0x000000000030acb4 _BFile_Write + 0x000000000030acc4 _BFile_Read + 0x000000000030acd4 _BFile_FindFirst + 0x000000000030ace4 _BFile_FindNext + 0x000000000030acf4 _BFile_FindClose + 0x000000000030ad04 ___Timer_Install + 0x000000000030ad14 ___Timer_Start + 0x000000000030ad24 ___Timer_Stop + 0x000000000030ad34 ___Timer_Deinstall + 0x000000000030ad44 ___PutKeyCode + 0x000000000030ad54 ___GetKeyWait + 0x000000000030ad64 ___ClearKeyBuffer + 0x000000000030ad74 ___GetVRAMAddress + 0x000000000030ad84 ___ConfigureStatusArea + 0x000000000030ad94 ___SetQuitHandler + 0x000000000030ada4 ___SpecialMatrixCodeProcessing + .text 0x000000000030adc0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) + .text 0x000000000030adc0 0x608 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keydev.c.obj) + 0x000000000030ae0a _keydev_init + 0x000000000030ae18 _keydev_queue_push + 0x000000000030ae74 _keydev_process_state + 0x000000000030af4c _keydev_repeat_event + 0x000000000030afc0 _keydev_tick + 0x000000000030b010 _keydev_async_filter + 0x000000000030b014 _keydev_set_async_filter + 0x000000000030b018 _keydev_unqueue_event + 0x000000000030b0f0 _keydev_keydown + 0x000000000030b112 _keydev_transform + 0x000000000030b12c _keydev_set_transform + 0x000000000030b168 _keydev_set_standard_repeats + 0x000000000030b17c _keydev_read + .text 0x000000000030b3c8 0x7f8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_gint.c.obj) + 0x000000000030bab8 _kmalloc_init_arena + 0x000000000030bba8 _kmalloc_get_gint_stats + .text 0x000000000030bbc0 0x2a0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) + 0x000000000030bbf0 _kmalloc_init + 0x000000000030bc00 _kmalloc_get_arena + 0x000000000030bc54 _kmalloc + 0x000000000030bce8 _kfree + 0x000000000030bd1c _krealloc + 0x000000000030bdb0 _kmalloc_max + 0x000000000030be3c _kmalloc_add_arena + .text 0x000000000030be60 0xc0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) + 0x000000000030be60 _dprint_opt + 0x000000000030bed0 _dprint + .text 0x000000000030bf20 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) + 0x000000000030bf20 _dtext + .text 0x000000000030bf44 0x2d4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + 0x000000000030bf44 _dfont + 0x000000000030bf5c _dfont_default + 0x000000000030bf68 _topti_glyph_index + 0x000000000030bfb2 _topti_offset + 0x000000000030c00a _topti_utf8_next + 0x000000000030c0a6 _dnsize + 0x000000000030c16c _dsize + 0x000000000030c188 _drsize + .text 0x000000000030c218 0x3e0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) + 0x000000000030c2f8 _rtc_get_time + 0x000000000030c3e0 _rtc_set_time + 0x000000000030c4c8 _rtc_periodic_disable + 0x000000000030c4d8 _rtc_periodic_enable + 0x000000000030c550 _rtc_periodic_interrupt + 0x000000000030c58c _rtc_start_timer + 0x000000000030c5ec _rtc_stop_timer + .text 0x000000000030c5f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) + .text 0x000000000030c5f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) + .text 0x000000000030c5f8 0xb4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) + 0x000000000030c694 _sleep_us + 0x000000000030c6a0 _sleep_us_spin + .text 0x000000000030c6ac 0x29c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) + 0x000000000030c6b4 _usb_req_setup + .text.startup 0x000000000030c948 0x5c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) + .text 0x000000000030c9a4 0x74 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) + 0x000000000030c9a4 _dclear + .text 0x000000000030ca18 0x120 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) + 0x000000000030ca18 _drect + .text 0x000000000030cb38 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) + 0x000000000030cb38 _dupdate + .text 0x000000000030cb98 0x228 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + 0x000000000030cb98 _dtext_opt + .text 0x000000000030cdc0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) + .text 0x000000000030cdc0 0xac /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) + 0x000000000030ce60 _cpu_configure_VBR + *fill* 0x000000000030ce6c 0x4 + .text 0x000000000030ce70 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ics.s.obj) + 0x000000000030ce70 _cpu_csleep_init + 0x000000000030ce84 _cpu_csleep + 0x000000000030cea8 _cpu_csleep_cancel + .text 0x000000000030cee0 0x5c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) + 0x000000000030cee0 _dma_memset + .text 0x000000000030cf3c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) + .text 0x000000000030cf3c 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) + .text 0x000000000030cf60 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) + 0x000000000030cf60 _dupdate_set_hook + 0x000000000030cf88 _dupdate_get_hook + .text 0x000000000030cfa4 0x74 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) + 0x000000000030cfa4 _dwindow_set + *fill* 0x000000000030d018 0x8 + .text 0x000000000030d020 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) + 0x000000000030d020 _topti_glyph_fg_bg + 0x000000000030d05e _topti_glyph_fg + 0x000000000030d098 _topti_glyph_bg + .text 0x000000000030d0f0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_ops.o) + .text._ZdlPvj 0x000000000030d0f0 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_ops.o) + 0x000000000030d0f0 __ZdlPvj + .text 0x000000000030d0fc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .text._ZL16get_adjusted_ptrPKSt9type_infoS1_PPv + 0x000000000030d0fc 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .text._ZL28read_encoded_value_with_basehjPKhPj + 0x000000000030d144 0x148 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .text._ZL15get_ttype_entryP16lsda_header_infom + 0x000000000030d28c 0x90 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .text._ZL21base_of_encoded_valuehP15_Unwind_Context + 0x000000000030d31c 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .text._ZL17parse_lsda_headerP15_Unwind_ContextPKhP16lsda_header_info + 0x000000000030d37c 0xb8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .text.__gxx_personality_v0 + 0x000000000030d434 0x4f8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + 0x000000000030d434 ___gxx_personality_v0 + .text.__cxa_call_unexpected + 0x000000000030d92c 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + 0x000000000030d92c ___cxa_call_unexpected + .text 0x000000000030d948 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x000000000030d948 0x10 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d948 __ZN10__cxxabiv111__terminateEPFvvE + .text._ZSt9terminatev + 0x000000000030d958 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d958 __ZSt9terminatev + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x000000000030d96c 0x10 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d96c __ZN10__cxxabiv112__unexpectedEPFvvE + .text._ZSt10unexpectedv + 0x000000000030d97c 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d97c __ZSt10unexpectedv + .text._ZSt13set_terminatePFvvE + 0x000000000030d990 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d990 __ZSt13set_terminatePFvvE + .text._ZSt13get_terminatev + 0x000000000030d9b0 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d9b0 __ZSt13get_terminatev + .text._ZSt14set_unexpectedPFvvE + 0x000000000030d9bc 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d9bc __ZSt14set_unexpectedPFvvE + .text._ZSt14get_unexpectedv + 0x000000000030d9dc 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + 0x000000000030d9dc __ZSt14get_unexpectedv + .text 0x000000000030d9e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_unex_handler.o) + .text 0x000000000030d9e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_op.o) + .text._Znwj 0x000000000030d9e8 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_op.o) + 0x000000000030d9e8 __Znwj + .text 0x000000000030da30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + .text.unlikely._ZSt21__throw_bad_exceptionv + 0x000000000030da30 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da30 __ZSt21__throw_bad_exceptionv + .text.unlikely._ZSt17__throw_bad_allocv + 0x000000000030da3c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da3c __ZSt17__throw_bad_allocv + .text.unlikely._ZSt28__throw_bad_array_new_lengthv + 0x000000000030da48 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da48 __ZSt28__throw_bad_array_new_lengthv + .text.unlikely._ZSt16__throw_bad_castv + 0x000000000030da54 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da54 __ZSt16__throw_bad_castv + .text.unlikely._ZSt18__throw_bad_typeidv + 0x000000000030da60 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da60 __ZSt18__throw_bad_typeidv + .text.unlikely._ZSt19__throw_logic_errorPKc + 0x000000000030da6c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da6c __ZSt19__throw_logic_errorPKc + .text.unlikely._ZSt20__throw_domain_errorPKc + 0x000000000030da78 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da78 __ZSt20__throw_domain_errorPKc + .text.unlikely._ZSt24__throw_invalid_argumentPKc + 0x000000000030da84 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da84 __ZSt24__throw_invalid_argumentPKc + .text.unlikely._ZSt20__throw_length_errorPKc + 0x000000000030da90 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da90 __ZSt20__throw_length_errorPKc + .text.unlikely._ZSt20__throw_out_of_rangePKc + 0x000000000030da9c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030da9c __ZSt20__throw_out_of_rangePKc + .text._ZSt24__throw_out_of_range_fmtPKcz + 0x000000000030daa8 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030daa8 __ZSt24__throw_out_of_range_fmtPKcz + .text.unlikely._ZSt21__throw_runtime_errorPKc + 0x000000000030db18 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030db18 __ZSt21__throw_runtime_errorPKc + .text.unlikely._ZSt19__throw_range_errorPKc + 0x000000000030db24 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030db24 __ZSt19__throw_range_errorPKc + .text.unlikely._ZSt22__throw_overflow_errorPKc + 0x000000000030db30 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030db30 __ZSt22__throw_overflow_errorPKc + .text.unlikely._ZSt23__throw_underflow_errorPKc + 0x000000000030db3c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + 0x000000000030db3c __ZSt23__throw_underflow_errorPKc + .text 0x000000000030db48 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + .text._ZN9__gnu_cxx26__throw_insufficient_spaceEPKcS1_ + 0x000000000030db48 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + 0x000000000030db48 __ZN9__gnu_cxx26__throw_insufficient_spaceEPKcS1_ + .text._ZN9__gnu_cxx15__concat_size_tEPcjj + 0x000000000030dba8 0x74 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + 0x000000000030dba8 __ZN9__gnu_cxx15__concat_size_tEPcjj + .text._ZN9__gnu_cxx15__snprintf_liteEPcjPKcPv + 0x000000000030dc1c 0xd8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + 0x000000000030dc1c __ZN9__gnu_cxx15__snprintf_liteEPcjPKcPv + .text 0x000000000030dcf4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_op.o) + .text._ZdlPv 0x000000000030dcf4 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_op.o) + 0x000000000030dcf4 __ZdlPv + .text 0x000000000030dd00 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_call.o) + .text.__cxa_call_terminate + 0x000000000030dd00 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_call.o) + 0x000000000030dd00 ___cxa_call_terminate + .text 0x000000000030dd48 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + .text.__cxa_get_exception_ptr + 0x000000000030dd48 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + 0x000000000030dd48 ___cxa_get_exception_ptr + .text.__cxa_begin_catch + 0x000000000030dd50 0x78 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + 0x000000000030dd50 ___cxa_begin_catch + .text.__cxa_end_catch + 0x000000000030ddc8 0x78 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + 0x000000000030ddc8 ___cxa_end_catch + .text._ZSt18uncaught_exceptionv + 0x000000000030de40 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + 0x000000000030de40 __ZSt18uncaught_exceptionv + .text._ZSt19uncaught_exceptionsv + 0x000000000030de44 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + 0x000000000030de44 __ZSt19uncaught_exceptionsv + .text 0x000000000030de48 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .text._ZNSt9exceptionD2Ev + 0x000000000030de48 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de48 __ZNSt9exceptionD2Ev + 0x000000000030de48 __ZNSt9exceptionD1Ev + .text._ZNSt13bad_exceptionD2Ev + 0x000000000030de4c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de4c __ZNSt13bad_exceptionD1Ev + 0x000000000030de4c __ZNSt13bad_exceptionD2Ev + .text._ZNKSt9exception4whatEv + 0x000000000030de50 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de50 __ZNKSt9exception4whatEv + 0x000000000030de50 __ZGTtNKSt9exception4whatEv + .text._ZNKSt13bad_exception4whatEv + 0x000000000030de5c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de5c __ZNKSt13bad_exception4whatEv + 0x000000000030de5c __ZGTtNKSt13bad_exception4whatEv + .text._ZNSt9exceptionD0Ev + 0x000000000030de68 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de68 __ZNSt9exceptionD0Ev + .text._ZNSt13bad_exceptionD0Ev + 0x000000000030de74 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de74 __ZNSt13bad_exceptionD0Ev + .text._ZN10__cxxabiv115__forced_unwindD2Ev + 0x000000000030de80 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de80 __ZN10__cxxabiv115__forced_unwindD1Ev + 0x000000000030de80 __ZN10__cxxabiv115__forced_unwindD2Ev + .text._ZN10__cxxabiv115__forced_unwindD0Ev + 0x000000000030de84 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de84 __ZN10__cxxabiv115__forced_unwindD0Ev + .text._ZN10__cxxabiv119__foreign_exceptionD2Ev + 0x000000000030de90 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de90 __ZN10__cxxabiv119__foreign_exceptionD1Ev + 0x000000000030de90 __ZN10__cxxabiv119__foreign_exceptionD2Ev + .text._ZN10__cxxabiv119__foreign_exceptionD0Ev + 0x000000000030de94 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030de94 __ZN10__cxxabiv119__foreign_exceptionD0Ev + .text._ZGTtNKSt9exceptionD1Ev + 0x000000000030dea0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030dea0 __ZGTtNKSt9exceptionD1Ev + .text._ZGTtNKSt13bad_exceptionD1Ev + 0x000000000030dea4 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000030dea4 __ZGTtNKSt13bad_exceptionD1Ev + .text 0x000000000030dea8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + .text.__cxa_get_globals_fast + 0x000000000030dea8 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + 0x000000000030dea8 ___cxa_get_globals_fast + .text.__cxa_get_globals + 0x000000000030deb4 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + 0x000000000030deb4 ___cxa_get_globals + .text 0x000000000030dec0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_term_handler.o) + .text 0x000000000030dec0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x000000000030dec0 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + 0x000000000030dec0 __ZSt15set_new_handlerPFvvE + .text._ZSt15get_new_handlerv + 0x000000000030decc 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + 0x000000000030decc __ZSt15get_new_handlerv + .text 0x000000000030ded8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x000000000030ded8 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x000000000030ded8 __ZN10__cxxabiv120__si_class_type_infoD1Ev + 0x000000000030ded8 __ZN10__cxxabiv120__si_class_type_infoD2Ev + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x000000000030deec 0x28 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x000000000030deec __ZN10__cxxabiv120__si_class_type_infoD0Ev + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x000000000030df14 0x108 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x000000000030df14 __ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x000000000030e01c 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x000000000030e01c __ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x000000000030e08c 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x000000000030e08c __ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + .text 0x000000000030e0d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD2Ev + 0x000000000030e0d0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x000000000030e0d0 __ZNSt9type_infoD1Ev + 0x000000000030e0d0 __ZNSt9type_infoD2Ev + .text._ZNKSt9type_info14__is_pointer_pEv + 0x000000000030e0d4 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x000000000030e0d4 __ZNKSt9type_info14__is_pointer_pEv + 0x000000000030e0d4 __ZNKSt9type_info15__is_function_pEv + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x000000000030e0d8 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x000000000030e0d8 __ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + .text._ZNSt9type_infoD0Ev + 0x000000000030e0dc 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x000000000030e0dc __ZNSt9type_infoD0Ev + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x000000000030e0e8 0x54 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x000000000030e0e8 __ZNKSt9type_info10__do_catchEPKS_PPvj + .text 0x000000000030e13c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x000000000030e13c 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x000000000030e13c __ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x000000000030e174 0x10 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x000000000030e174 __ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x000000000030e184 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x000000000030e184 __ZN10__cxxabiv117__class_type_infoD2Ev + 0x000000000030e184 __ZN10__cxxabiv117__class_type_infoD1Ev + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x000000000030e198 0x28 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x000000000030e198 __ZN10__cxxabiv117__class_type_infoD0Ev + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x000000000030e1c0 0x5c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x000000000030e1c0 __ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x000000000030e21c 0x84 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x000000000030e21c __ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x000000000030e2a0 0xd4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x000000000030e2a0 __ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + .text 0x000000000030e374 0x34 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(rand.c.obj) + 0x000000000030e374 _srand + 0x000000000030e388 _rand + .text 0x000000000030e3a8 0x110 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(tinymt32.c.obj) + 0x000000000030e3f4 _tinymt32_generate_uint32 + 0x000000000030e420 _tinymt32_init + .text 0x000000000030e4b8 0x108 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj) + 0x000000000030e528 ___cxa_atexit + 0x000000000030e560 ___cxa_finalize + .text.startup 0x000000000030e5c0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj) + .text 0x000000000030e5e0 0x144 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) + 0x000000000030e610 ___printf_format_D + 0x000000000030e714 ___printf_enable_fixed + .text 0x000000000030e724 0x680 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) + 0x000000000030ed64 ___printf_enable_fp + .text 0x000000000030eda4 0x368 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) + 0x000000000030eda4 ___printf_register + 0x000000000030eddc ___printf_flush + 0x000000000030ee50 ___printf + .text 0x000000000030f10c 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) + 0x000000000030f10c ___printf_compute_geometry + 0x000000000030f1bc ___printf_load_i + 0x000000000030f1f8 ___printf_load_u + 0x000000000030f232 ___printf_digits10 + 0x000000000030f2a8 ___printf_digits16 + 0x000000000030f2e8 ___printf_digits8 + .text 0x000000000030f318 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(vsnprintf.c.obj) + 0x000000000030f318 _vsnprintf + .text 0x000000000030f35c 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(abort.c.obj) + 0x000000000030f35c _abort + .text 0x000000000030f374 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) + 0x000000000030f374 _exit + .text 0x000000000030f390 0x16 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strchr.c.obj) + 0x000000000030f390 _strchr + .text 0x000000000030f3a6 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strcmp.c.obj) + 0x000000000030f3a6 _strcmp + .text 0x000000000030f3ba 0x34 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strncpy.c.obj) + 0x000000000030f3ba _strncpy + *fill* 0x000000000030f3ee 0x2 + .text 0x000000000030f3f0 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setjmp.S.obj) + 0x000000000030f3f0 _setjmp + .text 0x000000000030f414 0x2c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(longjmp.S.obj) + 0x000000000030f414 _longjmp + .text 0x000000000030f440 0xa0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) + 0x000000000030f440 _memcmp + .text 0x000000000030f4e0 0xc0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcpy.S.obj) + 0x000000000030f4e0 _memcpy + .text 0x000000000030f5a0 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memmove.S.obj) + 0x000000000030f5a0 _memmove + .text 0x000000000030f600 0x56 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memset.S.obj) + 0x000000000030f600 _memset + .text 0x000000000030f656 0x2e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strlen.S.obj) + 0x000000000030f656 _strlen + .text 0x000000000030f684 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(cpucap.c.obj) + .text 0x000000000030f684 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(free.c.obj) + 0x000000000030f684 _free + .text 0x000000000030f690 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) + 0x000000000030f690 _malloc + .text 0x000000000030f6b0 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(realloc.c.obj) + 0x000000000030f6b0 _realloc + .text 0x000000000030f6bc 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) + 0x000000000030f6bc _clock + .text.startup 0x000000000030f6f8 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) + .text 0x000000000030f730 0x56c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) + 0x000000000030f730 _grisu_round + 0x000000000030f7ba _digit_gen + 0x000000000030f9bc _grisu2 + .text 0x000000000030fc9c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(errno.c.obj) + .text 0x000000000030fc9c 0x78 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(raise.c.obj) + 0x000000000030fc9c _raise + .text 0x000000000030fd14 0x120 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fwrite.c.obj) + 0x000000000030fd14 _fwrite + .text 0x000000000030fe34 0x548 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) + 0x000000000030fe98 ___printf_format_c + 0x000000000030ff8c ___printf_format_s + 0x0000000000310028 ___printf_format_di + 0x0000000000310120 ___printf_format_ouxX + 0x0000000000310280 ___printf_format_p + 0x00000000003102e8 ___printf_format_m + 0x000000000031033c ___printf_format_n + .text 0x000000000031037c 0x26 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memrchr.c.obj) + 0x000000000031037c _memrchr + *fill* 0x00000000003103a2 0x2 + .text 0x00000000003103a4 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) + 0x00000000003103a4 _strerror + .text 0x00000000003103c0 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(signal.c.obj) + 0x00000000003103c0 _signal + .text 0x00000000003103dc 0x488 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fileutil.c.obj) + 0x00000000003103dc ___fp_open + 0x0000000000310408 ___fp_close + 0x000000000031045c ___fp_remove_buffer + 0x000000000031048c ___fp_set_buffer + 0x00000000003104d0 ___fp_buffer_mode_read + 0x0000000000310510 ___fp_buffer_mode_write + 0x0000000000310554 ___fp_buffered_read + 0x000000000031060c ___fp_read + 0x0000000000310668 ___fp_fread2 + 0x000000000031076c ___fp_write + 0x00000000003107c4 ___fp_parse_mode + .text 0x0000000000310864 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fseek.c.obj) + 0x0000000000310864 _fseek + .text 0x00000000003108ac 0x8c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setvbuf.c.obj) + 0x00000000003108ac _setvbuf + *fill* 0x0000000000310938 0x8 + .text 0x0000000000310940 0xa0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memchr.S.obj) + 0x0000000000310940 _memchr + .text 0x00000000003109e0 0x94 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fflush.c.obj) + 0x00000000003109e0 _fflush + .text 0x0000000000310a74 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(close.c.obj) + 0x0000000000310a74 _close + .text 0x0000000000310abc 0xf8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) + 0x0000000000310abc _fs_get_descriptor + 0x0000000000310ae4 _fs_create_descriptor + 0x0000000000310b1c _fs_free_descriptor + 0x0000000000310b40 _open_generic + .text.startup 0x0000000000310bb4 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) + .text 0x0000000000310bec 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(lseek.c.obj) + 0x0000000000310bec _lseek + .text 0x0000000000310c44 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(read.c.obj) + 0x0000000000310c44 _read + .text 0x0000000000310c88 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) + 0x0000000000310c88 _write + .text 0x0000000000310ccc 0x158 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) + 0x0000000000310ccc _ceil + 0x0000000000310ccc _ceill + .text 0x0000000000310e24 0x424 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_table.o) + 0x0000000000310e24 ___udivsi3_i4i + 0x0000000000310ef4 ___sdivsi3_i4i + .text 0x0000000000311248 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + 0x0000000000311248 ___lshrdi3 + .text 0x0000000000311278 0x2c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + 0x0000000000311278 ___ashldi3 + .text 0x00000000003112a4 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + 0x00000000003112a4 ___udivdi3 + .text 0x00000000003114b0 0x24c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + 0x00000000003114b0 ___umoddi3 + .text 0x00000000003116fc 0x330 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + 0x0000000000311988 ___adddf3 + 0x00000000003119d8 ___subdf3 + .text 0x0000000000311a2c 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + 0x0000000000311a2c ___eqdf2 + .text 0x0000000000311a84 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + 0x0000000000311a84 ___gtdf2 + .text 0x0000000000311adc 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + 0x0000000000311adc ___ltdf2 + .text 0x0000000000311b34 0x58 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + 0x0000000000311b34 ___ledf2 + .text 0x0000000000311b8c 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + 0x0000000000311b8c ___unorddf2 + .text 0x0000000000311bd4 0x98 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + 0x0000000000311bd4 ___floatsidf + .text 0x0000000000311c6c 0x8c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + 0x0000000000311c6c ___fixdfsi + .text 0x0000000000311cf8 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udiv_qrnnd_16.o) + 0x0000000000311cf8 ___udiv_qrnnd_16 + .text 0x0000000000311d58 0xc8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + 0x0000000000311d58 ___fpcmp_parts_d -.gint.blocks 0x000000000030a920 0x160 +.gint.blocks 0x0000000000311e20 0x160 *(.gint.blocks) - .gint.blocks 0x000000000030a920 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - 0x000000000030a920 _inth_dma_ae - .gint.blocks 0x000000000030a940 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - 0x000000000030a940 _intc_generic_handler - .gint.blocks 0x000000000030a960 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) - 0x000000000030a960 _gint_inth_7305 - .gint.blocks 0x000000000030a9a0 0x80 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) - 0x000000000030a9a0 _inth_etmu4 - 0x000000000030aa00 _inth_etmux - .gint.blocks 0x000000000030aa20 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) - 0x000000000030aa20 _inth_tmu + .gint.blocks 0x0000000000311e20 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + 0x0000000000311e20 _inth_dma_ae + .gint.blocks 0x0000000000311e40 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + 0x0000000000311e40 _intc_generic_handler + .gint.blocks 0x0000000000311e60 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) + 0x0000000000311e60 _gint_inth_7305 + .gint.blocks 0x0000000000311ea0 0x80 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) + 0x0000000000311ea0 _inth_etmu4 + 0x0000000000311f00 _inth_etmux + .gint.blocks 0x0000000000311f20 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) + 0x0000000000311f20 _inth_tmu -.gint.drivers 0x000000000030aa80 0x1e0 - 0x000000000030aa80 _gint_drivers = . +.gint.drivers 0x0000000000311f80 0x1e0 + 0x0000000000311f80 _gint_drivers = . *(SORT_BY_NAME(.gint.drivers.*)) .gint.drivers.00 - 0x000000000030aa80 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) - 0x000000000030aa80 _drv_cpu + 0x0000000000311f80 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) + 0x0000000000311f80 _drv_cpu .gint.drivers.01 - 0x000000000030aab0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) - 0x000000000030aab0 _drv_intc + 0x0000000000311fb0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) + 0x0000000000311fb0 _drv_intc .gint.drivers.02 - 0x000000000030aae0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) - 0x000000000030aae0 _drv_mmu + 0x0000000000311fe0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) + 0x0000000000311fe0 _drv_mmu .gint.drivers.05 - 0x000000000030ab10 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) - 0x000000000030ab10 _drv_cpg + 0x0000000000312010 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) + 0x0000000000312010 _drv_cpg .gint.drivers.05 - 0x000000000030ab40 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) - 0x000000000030ab40 _drv_dma0 + 0x0000000000312040 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) + 0x0000000000312040 _drv_dma0 .gint.drivers.13 - 0x000000000030ab70 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) - 0x000000000030ab70 _drv_tmu + 0x0000000000312070 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) + 0x0000000000312070 _drv_tmu .gint.drivers.13 - 0x000000000030aba0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) - 0x000000000030aba0 _drv_rtc + 0x00000000003120a0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) + 0x00000000003120a0 _drv_rtc .gint.drivers.16 - 0x000000000030abd0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) - 0x000000000030abd0 _drv_usb + 0x00000000003120d0 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) + 0x00000000003120d0 _drv_usb .gint.drivers.23 - 0x000000000030ac00 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) - 0x000000000030ac00 _drv_keysc + 0x0000000000312100 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) + 0x0000000000312100 _drv_keysc .gint.drivers.26 - 0x000000000030ac30 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) - 0x000000000030ac30 _drv_r61524 - 0x000000000030ac60 _gint_drivers_end = . + 0x0000000000312130 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + 0x0000000000312130 _drv_r61524 + 0x0000000000312160 _gint_drivers_end = . -.rodata 0x000000000030ac60 0x3030 +.rodata 0x0000000000312160 0x64ac *(.rodata.4) *(.rodata .rodata.*) + .rodata._ZNSt6vectorIP8ParticleSaIS1_EE17_M_realloc_insertIJRKS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_.str1.4 + 0x0000000000312160 0x1a CMakeFiles/shmup.dir/src/main.cpp.obj + *fill* 0x000000000031217a 0x2 .rodata.str1.4 - 0x000000000030ac60 0x5f CMakeFiles/myaddin.dir/src/main.cc.obj - *fill* 0x000000000030acbf 0x1 - .rodata 0x000000000030acc0 0x10 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - 0x000000000030acc0 ___thenan_sf - .rodata 0x000000000030acd0 0x100 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - 0x000000000030acd0 ___clz_tab + 0x000000000031217c 0x6f CMakeFiles/shmup.dir/src/main.cpp.obj + *fill* 0x00000000003121eb 0x1 + .rodata 0x00000000003121ec 0x17bc CMakeFiles/shmup.dir/assets-cg/font.png.o + 0x00000000003121ec _img_font + .rodata 0x00000000003139a8 0x3b8 CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o + 0x00000000003139a8 _img_emp_circ + .rodata 0x0000000000313d60 0x3b8 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o + 0x0000000000313d60 _img_fill_circ_0 + .rodata 0x0000000000314118 0x3b8 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o + 0x0000000000314118 _img_fill_circ_1 + .rodata 0x00000000003144d0 0x3b8 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o + 0x00000000003144d0 _img_fill_circ_2 + .rodata 0x0000000000314888 0x3b8 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o + 0x0000000000314888 _img_fill_circ_3 + .rodata 0x0000000000314c40 0x3b8 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o + 0x0000000000314c40 _img_fill_circ_4 + .rodata 0x0000000000314ff8 0x3b8 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o + 0x0000000000314ff8 _img_fill_circ_5 + .rodata 0x00000000003153b0 0x10 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + 0x00000000003153b0 ___thenan_sf + .rodata 0x00000000003153c0 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + 0x00000000003153c0 ___thenan_df + .rodata 0x00000000003153d4 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + .rodata 0x00000000003153dc 0x100 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + 0x00000000003153dc ___clz_tab .rodata.str1.4 - 0x000000000030add0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) - .rodata 0x000000000030add4 0x190 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) + 0x00000000003154dc 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) + .rodata 0x00000000003154e0 0x190 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) .rodata.str1.4 - 0x000000000030af64 0x9 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) - *fill* 0x000000000030af6d 0x3 + 0x0000000000315670 0x9 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) + *fill* 0x0000000000315679 0x3 .rodata.str1.4 - 0x000000000030af70 0x6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) - *fill* 0x000000000030af76 0x2 + 0x000000000031567c 0x6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) + *fill* 0x0000000000315682 0x2 .rodata.str1.4 - 0x000000000030af78 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) - .rodata 0x000000000030af7c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) + 0x0000000000315684 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) + .rodata 0x0000000000315688 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) .rodata.str1.4 - 0x000000000030af88 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) + 0x0000000000315694 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) .rodata.str2.4 - 0x000000000030af8c 0x16 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - *fill* 0x000000000030afa2 0x2 + 0x0000000000315698 0x16 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + *fill* 0x00000000003156ae 0x2 .rodata.str1.4 - 0x000000000030afa4 0x1e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - *fill* 0x000000000030afc2 0x2 - .rodata 0x000000000030afc4 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - 0x000000000030afc4 _usb_ff_bulk - .rodata 0x000000000030afcc 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) + 0x00000000003156b0 0x1e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + *fill* 0x00000000003156ce 0x2 + .rodata 0x00000000003156d0 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + 0x00000000003156d0 _usb_ff_bulk + .rodata 0x00000000003156d8 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) .rodata.str1.4 - 0x000000000030afd0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) + 0x00000000003156dc 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) .rodata.str1.4 - 0x000000000030afd4 0x6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) - *fill* 0x000000000030afda 0x2 - .rodata 0x000000000030afdc 0x4b8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) - 0x000000000030afdc _gint_font8x9 - .rodata 0x000000000030b494 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) + 0x00000000003156e0 0x7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + *fill* 0x00000000003156e7 0x1 + .rodata 0x00000000003156e8 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_alpha.c.obj) .rodata.str1.4 - 0x000000000030b4c4 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) + 0x00000000003156fc 0x6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) + *fill* 0x0000000000315702 0x2 + .rodata 0x0000000000315704 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) .rodata.str1.4 - 0x000000000030b4c8 0x5 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) - *fill* 0x000000000030b4cd 0x3 - .rodata 0x000000000030b4d0 0x118 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) - 0x000000000030b5d8 _SH7305_INTC + 0x0000000000315734 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) .rodata.str1.4 - 0x000000000030b5e8 0x2ef /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) + 0x0000000000315738 0x5 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) + *fill* 0x000000000031573d 0x3 + .rodata 0x0000000000315740 0x118 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) + 0x0000000000315848 _SH7305_INTC + .rodata.str1.4 + 0x0000000000315858 0x2ef /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) 0x2f3 (taille avant relaxe) - *fill* 0x000000000030b8d7 0x1 + *fill* 0x0000000000315b47 0x1 .rodata.str1.4 - 0x000000000030b8d8 0x6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) + 0x0000000000315b48 0x6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) 0xe (taille avant relaxe) - *fill* 0x000000000030b8de 0x2 + *fill* 0x0000000000315b4e 0x2 + .rodata.str1.4 + 0x0000000000315b50 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) .rodata.str2.4 - 0x000000000030b8e0 0x6c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) + 0x0000000000315b54 0x6c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) .rodata.str1.4 - 0x000000000030b94c 0x2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) - *fill* 0x000000000030b94e 0x2 + 0x0000000000315bc0 0x2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) + *fill* 0x0000000000315bc2 0x2 + .rodata 0x0000000000315bc4 0x4b8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) + 0x0000000000315bc4 _gint_font8x9 .rodata.str1.4 - 0x000000000030b950 0x7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) - *fill* 0x000000000030b957 0x1 + 0x000000000031607c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) .rodata.str1.4 - 0x000000000030b958 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) + 0x0000000000316080 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) + .rodata._ZN9__gnu_cxx26__throw_insufficient_spaceEPKcS1_.str1.4 + 0x0000000000316084 0x69 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + *fill* 0x00000000003160ed 0x3 + .rodata._ZN9__gnu_cxx15__concat_size_tEPcjj.str1.4 + 0x00000000003160f0 0xb /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + *fill* 0x00000000003160fb 0x1 + .rodata._ZNKSt9exception4whatEv.str1.4 + 0x00000000003160fc 0xf /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + *fill* 0x000000000031610b 0x1 + .rodata._ZNKSt13bad_exception4whatEv.str1.4 + 0x000000000031610c 0x13 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + *fill* 0x000000000031611f 0x1 + .rodata._ZTSSt9exception + 0x0000000000316120 0xd /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x0000000000316120 __ZTSSt9exception + *fill* 0x000000000031612d 0x3 + .rodata._ZTISt9exception + 0x0000000000316130 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x0000000000316130 __ZTISt9exception + .rodata._ZTSSt13bad_exception + 0x0000000000316138 0x12 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x0000000000316138 __ZTSSt13bad_exception + *fill* 0x000000000031614a 0x2 + .rodata._ZTISt13bad_exception + 0x000000000031614c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x000000000031614c __ZTISt13bad_exception + .rodata._ZTSN10__cxxabiv115__forced_unwindE + 0x0000000000316158 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x0000000000316158 __ZTSN10__cxxabiv115__forced_unwindE + .rodata._ZTIN10__cxxabiv115__forced_unwindE + 0x0000000000316178 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x0000000000316178 __ZTIN10__cxxabiv115__forced_unwindE + .rodata._ZTSN10__cxxabiv119__foreign_exceptionE + 0x0000000000316180 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x0000000000316180 __ZTSN10__cxxabiv119__foreign_exceptionE + .rodata._ZTIN10__cxxabiv119__foreign_exceptionE + 0x00000000003161a4 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x00000000003161a4 __ZTIN10__cxxabiv119__foreign_exceptionE + .rodata._ZTVSt9exception + 0x00000000003161ac 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x00000000003161ac __ZTVSt9exception + .rodata._ZTVSt13bad_exception + 0x00000000003161c0 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x00000000003161c0 __ZTVSt13bad_exception + .rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x00000000003161d4 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x00000000003161d4 __ZTVN10__cxxabiv115__forced_unwindE + .rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x00000000003161e8 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + 0x00000000003161e8 __ZTVN10__cxxabiv119__foreign_exceptionE + .rodata._ZSt7nothrow + 0x00000000003161fc 0x1 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + 0x00000000003161fc __ZSt7nothrow + *fill* 0x00000000003161fd 0x3 + .rodata._ZTSN10__cxxabiv120__si_class_type_infoE + 0x0000000000316200 0x25 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x0000000000316200 __ZTSN10__cxxabiv120__si_class_type_infoE + *fill* 0x0000000000316225 0x3 + .rodata._ZTIN10__cxxabiv120__si_class_type_infoE + 0x0000000000316228 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x0000000000316228 __ZTIN10__cxxabiv120__si_class_type_infoE + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000316234 0x2c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + 0x0000000000316234 __ZTVN10__cxxabiv120__si_class_type_infoE + .rodata._ZTSSt9type_info + 0x0000000000316260 0xd /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x0000000000316260 __ZTSSt9type_info + *fill* 0x000000000031626d 0x3 + .rodata._ZTISt9type_info + 0x0000000000316270 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x0000000000316270 __ZTISt9type_info + .rodata._ZTVSt9type_info + 0x0000000000316278 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + 0x0000000000316278 __ZTVSt9type_info + .rodata._ZTSN10__cxxabiv117__class_type_infoE + 0x0000000000316298 0x22 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x0000000000316298 __ZTSN10__cxxabiv117__class_type_infoE + *fill* 0x00000000003162ba 0x2 + .rodata._ZTIN10__cxxabiv117__class_type_infoE + 0x00000000003162bc 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x00000000003162bc __ZTIN10__cxxabiv117__class_type_infoE + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x00000000003162c8 0x2c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + 0x00000000003162c8 __ZTVN10__cxxabiv117__class_type_infoE .rodata.str1.4 - 0x000000000030b95c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) + 0x00000000003162f4 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) .rodata.str1.4 - 0x000000000030b960 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) + 0x0000000000316314 0x7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) + *fill* 0x000000000031631b 0x1 .rodata.str1.4 - 0x000000000030b980 0x7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) - *fill* 0x000000000030b987 0x1 + 0x000000000031631c 0x25 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) + *fill* 0x0000000000316341 0x3 + .rodata 0x0000000000316344 0x2034 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) .rodata.str1.4 - 0x000000000030b988 0x25 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) - *fill* 0x000000000030b9ad 0x3 - .rodata 0x000000000030b9b0 0x2034 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) + 0x0000000000318378 0x9 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) + *fill* 0x0000000000318381 0x3 .rodata.str1.4 - 0x000000000030d9e4 0x9 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) - *fill* 0x000000000030d9ed 0x3 - .rodata.str1.4 - 0x000000000030d9f0 0x226 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) - *fill* 0x000000000030dc16 0x2 - .rodata 0x000000000030dc18 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) - .rodata.str1.4 - 0x000000000030dc78 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) - .rodata 0x000000000030dc7c 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - 0x000000000030dc7c ___thenan_df + 0x0000000000318384 0x226 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) + *fill* 0x00000000003185aa 0x2 + .rodata 0x00000000003185ac 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) -.rela.dyn 0x000000000030dc90 0x0 - .rela.text 0x000000000030dc90 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) +.gcc_except_table + 0x000000000031860c 0x12 + .gcc_except_table + 0x000000000031860c 0x12 CMakeFiles/shmup.dir/src/main.cpp.obj + +.rela.dyn 0x0000000000318620 0x0 + .rela.text 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.text.startup + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj .rela.gint.tlbh - 0x000000000030dc90 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.text.__gxx_personality_v0 + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTISt9exception + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTISt13bad_exception + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTIN10__cxxabiv115__forced_unwindE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTIN10__cxxabiv119__foreign_exceptionE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTVSt9exception + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTVSt13bad_exception + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTVN10__cxxabiv115__forced_unwindE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTVN10__cxxabiv119__foreign_exceptionE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTIN10__cxxabiv120__si_class_type_infoE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTISt9type_info + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTVSt9type_info + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTIN10__cxxabiv117__class_type_infoE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .rela.rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x0000000000318620 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj 0x0000000008101400 . = ORIGIN (ram) -.bss 0x0000000008101400 0x4b0 +.bss 0x0000000008101400 0x36f0 0x0000000008101400 _rbss = . *(.bss .bss.* COMMON) - .bss 0x0000000008101400 0x3 CMakeFiles/myaddin.dir/src/main.cc.obj - 0x0000000008101400 _exitToOS - 0x0000000008101401 _record - 0x0000000008101402 _screenshot - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - .bss 0x0000000008101403 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - *fill* 0x0000000008101403 0x1 - .bss 0x0000000008101404 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) - 0x0000000008101404 _prof_tcnt - .bss 0x0000000008101408 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) - .bss 0x0000000008101408 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) - .bss 0x0000000008101408 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(atomic.c.obj) - .bss 0x0000000008101410 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(registers.s.obj) - .bss 0x0000000008101410 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) - .bss 0x0000000008101410 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) - 0x0000000008101410 _gint_exitbuf - 0x0000000008101444 _gint_restart - .bss 0x000000000810144c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) - .bss 0x000000000810144c 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) - .bss 0x000000000810151c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) - .bss 0x000000000810151c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) - .bss 0x000000000810151c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) - .bss 0x000000000810151c 0xb4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) - 0x000000000810151c _tmu_callbacks - .bss 0x00000000081015d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - .bss 0x00000000081015d0 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) - .bss 0x0000000008101614 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) - .bss 0x0000000008101614 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) - .bss 0x000000000810161c 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) - .bss 0x000000000810163c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) - .bss 0x000000000810163c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) - .bss 0x000000000810163c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) - .bss 0x000000000810163c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) - 0x000000000810163c _gint_vram - .bss 0x0000000008101648 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) - .bss 0x0000000008101648 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) - .bss 0x0000000008101648 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) - 0x0000000008101648 _cpu_sleep_block_counter - .bss 0x000000000810164c 0x98 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) - .bss 0x00000000081016e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - .bss 0x00000000081016e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) - .bss 0x00000000081016e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) - .bss 0x00000000081016e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - .bss 0x00000000081016e4 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) - 0x00000000081016e4 _gint_exc_catcher - .bss 0x00000000081016e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) - .bss 0x00000000081016e8 0x80 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) - 0x00000000081016e8 _gint_stack_top - 0x00000000081016ec _gint_driver_flags - 0x00000000081016f0 _gint_world_addin - 0x00000000081016f4 _gint_world_os - .bss 0x0000000008101768 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(osmenu.c.obj) - .bss 0x0000000008101784 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(syscalls.S.obj) - .bss 0x0000000008101784 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) - .bss 0x0000000008101784 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keydev.c.obj) - .bss 0x0000000008101784 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_gint.c.obj) - .bss 0x0000000008101784 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) - .bss 0x00000000081017a4 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) - .bss 0x00000000081017b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) - .bss 0x00000000081017b8 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) - .bss 0x00000000081017bc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ics.s.obj) - .bss 0x00000000081017bc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) - .bss 0x00000000081017bc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) - .bss 0x00000000081017bc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) - .bss 0x00000000081017bc 0x32 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) - *fill* 0x00000000081017ee 0x2 - .bss 0x00000000081017f0 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(vsnprintf.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(abort.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strchr.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strcmp.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strncpy.c.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setjmp.S.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(longjmp.S.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcpy.S.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memset.S.obj) - .bss 0x0000000008101830 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strlen.S.obj) - .bss 0x0000000008101830 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(cpucap.c.obj) - 0x0000000008101830 ___cpucap - .bss 0x0000000008101834 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(free.c.obj) - .bss 0x0000000008101834 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) - .bss 0x0000000008101834 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(realloc.c.obj) - .bss 0x0000000008101834 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) - .bss 0x000000000810183c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) - .bss 0x000000000810183c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(errno.c.obj) - 0x000000000810183c _errno - .bss 0x0000000008101840 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(raise.c.obj) - .bss 0x0000000008101840 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fwrite.c.obj) - .bss 0x0000000008101840 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) - .bss 0x0000000008101840 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memrchr.c.obj) - .bss 0x0000000008101840 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) - .bss 0x0000000008101840 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(signal.c.obj) - 0x0000000008101840 ___signal_handlers - .bss 0x0000000008101880 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fileutil.c.obj) - .bss 0x0000000008101880 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fseek.c.obj) - .bss 0x0000000008101880 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setvbuf.c.obj) - .bss 0x0000000008101880 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memchr.S.obj) - .bss 0x0000000008101880 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fflush.c.obj) - .bss 0x0000000008101880 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(close.c.obj) - .bss 0x0000000008101880 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) - .bss 0x0000000008101894 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(lseek.c.obj) - .bss 0x0000000008101894 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(read.c.obj) - .bss 0x0000000008101894 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) - .bss 0x0000000008101894 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) - .bss 0x0000000008101894 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udiv_qrnnd_16.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - .bss 0x00000000081018a8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) - 0x00000000081018b0 . = ALIGN (0x10) - *fill* 0x00000000081018a8 0x8 - 0x00000000000004b0 _sbss = SIZEOF (.bss) + .bss 0x0000000008101400 0xf CMakeFiles/shmup.dir/src/main.cpp.obj + 0x0000000008101400 _MyParticles + 0x000000000810140c _exitToOS + 0x000000000810140d _record + 0x000000000810140e _screenshot + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/src/utilities.cpp.obj + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/src/particles.cpp.obj + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/font.png.o + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o + .bss 0x000000000810140f 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + .bss 0x000000000810140f 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + *fill* 0x000000000810140f 0x1 + .bss 0x0000000008101410 0x9a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + *fill* 0x00000000081014aa 0x2 + .bss 0x00000000081014ac 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sdivsi3.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + .bss 0x00000000081014b8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .bss 0x00000000081014b8 0x3164 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) + 0x00000000081014b8 _azrp_commands_total + 0x00000000081014bc _azrp_perf_render + 0x00000000081014c4 _azrp_perf_r61524 + 0x00000000081014cc _azrp_perf_shaders + 0x00000000081014d4 _azrp_perf_sort + 0x00000000081014dc _azrp_perf_cmdgen + 0x00000000081014e4 _azrp_window + 0x00000000081014f4 _azrp_frag_height + 0x00000000081014f8 _azrp_frag_count + 0x00000000081014fc _azrp_frag_offset + 0x0000000008101500 _azrp_height + 0x0000000008101504 _azrp_width + 0x0000000008101508 _azrp_scale + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(r61524.s.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.S.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_normal.S.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_clearbg.S.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8_normal.S.obj) + .bss 0x000000000810461c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4_normal.S.obj) + .bss 0x000000000810461c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) + 0x000000000810461c _prof_tcnt + .bss 0x0000000008104620 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) + .bss 0x0000000008104620 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) + .bss 0x0000000008104620 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(atomic.c.obj) + .bss 0x0000000008104628 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(registers.s.obj) + .bss 0x0000000008104628 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) + .bss 0x0000000008104628 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) + 0x0000000008104628 _gint_exitbuf + 0x000000000810465c _gint_restart + .bss 0x0000000008104664 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) + .bss 0x0000000008104664 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) + .bss 0x0000000008104734 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) + .bss 0x0000000008104734 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) + .bss 0x0000000008104734 0xb4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) + 0x0000000008104734 _tmu_callbacks + .bss 0x00000000081047e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + .bss 0x00000000081047e8 0x44 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) + .bss 0x000000000810482c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) + .bss 0x000000000810482c 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) + .bss 0x0000000008104834 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) + .bss 0x0000000008104854 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + .bss 0x0000000008104854 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_alpha.c.obj) + .bss 0x0000000008104854 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) + 0x0000000008104854 _gint_vram + .bss 0x0000000008104860 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image.c.obj) + .bss 0x0000000008104860 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_rgb16.S.obj) + .bss 0x0000000008104860 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8.S.obj) + .bss 0x0000000008104860 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8_clearbg.S.obj) + .bss 0x0000000008104860 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4.S.obj) + .bss 0x0000000008104860 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4_clearbg_alt.S.obj) + .bss 0x0000000008104860 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) + 0x0000000008104860 _cpu_sleep_block_counter + .bss 0x0000000008104864 0x98 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) + .bss 0x00000000081048fc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + .bss 0x00000000081048fc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) + .bss 0x00000000081048fc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + .bss 0x00000000081048fc 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) + 0x00000000081048fc _gint_exc_catcher + .bss 0x0000000008104900 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) + .bss 0x0000000008104900 0x80 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) + 0x0000000008104900 _gint_stack_top + 0x0000000008104904 _gint_driver_flags + 0x0000000008104908 _gint_world_addin + 0x000000000810490c _gint_world_os + .bss 0x0000000008104980 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(osmenu.c.obj) + .bss 0x000000000810499c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(syscalls.S.obj) + .bss 0x000000000810499c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) + .bss 0x000000000810499c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keydev.c.obj) + .bss 0x000000000810499c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_gint.c.obj) + .bss 0x000000000810499c 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) + .bss 0x00000000081049bc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) + .bss 0x00000000081049bc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) + .bss 0x00000000081049bc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + .bss 0x00000000081049bc 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + .bss 0x00000000081049d0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) + .bss 0x00000000081049d0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) + .bss 0x00000000081049d4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ics.s.obj) + .bss 0x00000000081049d4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) + .bss 0x00000000081049d4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) + .bss 0x00000000081049d4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) + .bss 0x00000000081049d4 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_ops.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_unex_handler.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_op.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_op.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_call.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .bss 0x00000000081049e8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + .bss._ZL10eh_globals + 0x00000000081049e8 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + .bss 0x00000000081049f0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_term_handler.o) + .bss 0x00000000081049f0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + .bss._ZN12_GLOBAL__N_113__new_handlerE + 0x00000000081049f0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + .bss 0x00000000081049f4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + .bss 0x00000000081049f4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + .bss 0x00000000081049f4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + .bss 0x00000000081049f4 0x1c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(rand.c.obj) + .bss 0x0000000008104a10 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(tinymt32.c.obj) + .bss 0x0000000008104a10 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj) + .bss 0x0000000008104a18 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) + .bss 0x0000000008104a18 0x32 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) + *fill* 0x0000000008104a4a 0x2 + .bss 0x0000000008104a4c 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(vsnprintf.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(abort.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strchr.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strcmp.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strncpy.c.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setjmp.S.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(longjmp.S.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcpy.S.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memmove.S.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memset.S.obj) + .bss 0x0000000008104a8c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strlen.S.obj) + .bss 0x0000000008104a8c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(cpucap.c.obj) + 0x0000000008104a8c ___cpucap + .bss 0x0000000008104a90 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(free.c.obj) + .bss 0x0000000008104a90 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) + .bss 0x0000000008104a90 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(realloc.c.obj) + .bss 0x0000000008104a90 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) + .bss 0x0000000008104a98 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) + .bss 0x0000000008104a98 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(errno.c.obj) + 0x0000000008104a98 _errno + .bss 0x0000000008104a9c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(raise.c.obj) + .bss 0x0000000008104a9c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fwrite.c.obj) + .bss 0x0000000008104a9c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) + .bss 0x0000000008104a9c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memrchr.c.obj) + .bss 0x0000000008104a9c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) + .bss 0x0000000008104a9c 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(signal.c.obj) + 0x0000000008104a9c ___signal_handlers + .bss 0x0000000008104adc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fileutil.c.obj) + .bss 0x0000000008104adc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fseek.c.obj) + .bss 0x0000000008104adc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setvbuf.c.obj) + .bss 0x0000000008104adc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memchr.S.obj) + .bss 0x0000000008104adc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fflush.c.obj) + .bss 0x0000000008104adc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(close.c.obj) + .bss 0x0000000008104adc 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(lseek.c.obj) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(read.c.obj) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_table.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udiv_qrnnd_16.o) + .bss 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + 0x0000000008104af0 . = ALIGN (0x10) + 0x00000000000036f0 _sbss = SIZEOF (.bss) -.data 0x00000000081018b0 0x190 address de chargement 0x000000000030dc90 - 0x000000000030dc90 _ldata = LOADADDR (.data) - 0x00000000081018b0 _rdata = . +.data 0x0000000008104af0 0x1a0 address de chargement 0x0000000000318620 + 0x0000000000318620 _ldata = LOADADDR (.data) + 0x0000000008104af0 _rdata = . *(.data .data.*) - .data 0x00000000081018b0 0x0 CMakeFiles/myaddin.dir/src/main.cc.obj - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - .data 0x00000000081018b0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - .data 0x00000000081018b0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) - .data 0x00000000081018b4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) - .data 0x00000000081018b4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) - .data 0x00000000081018b4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(atomic.c.obj) - .data 0x00000000081018b4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(registers.s.obj) - .data 0x00000000081018b4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) - .data 0x00000000081018b4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) - .data 0x00000000081018b4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) - .data 0x00000000081018b4 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) - 0x00000000081018b4 _keysc_tid - 0x00000000081018b8 _keysc_scan_us - 0x00000000081018bc _keysc_scan_Hz - .data 0x00000000081018c0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) - .data 0x00000000081018c0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) - .data 0x00000000081018c0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) - .data 0x00000000081018c0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) - .data 0x00000000081018c0 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) - .data 0x00000000081018e4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) - .data 0x00000000081018e4 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) - 0x00000000081018e4 _topti_font - 0x00000000081018e8 _gint_default_font - .data 0x00000000081018ec 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) - .data 0x00000000081018ec 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) - .data 0x00000000081018ec 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) - .data 0x00000000081018ec 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - .data 0x00000000081018ec 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) - .data 0x00000000081018ec 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) - .data 0x00000000081018ec 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) - .data 0x00000000081018ec 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) - 0x00000000081018ec _gint_exc_panic - .data 0x00000000081018f0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) - .data 0x00000000081018f0 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) - 0x00000000081018f0 _gint_required_intc - 0x00000000081018f4 _gint_required_cpu - .data 0x00000000081018f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(osmenu.c.obj) - .data 0x00000000081018f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(syscalls.S.obj) - .data 0x00000000081018f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) - .data 0x00000000081018f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keydev.c.obj) - .data 0x00000000081018f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_gint.c.obj) - .data 0x00000000081018f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) - .data 0x00000000081018f8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) - .data 0x00000000081018f8 0x10 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) - 0x00000000081018f8 _dwindow - .data 0x0000000008101908 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) - .data 0x0000000008101908 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) - .data 0x0000000008101908 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) - .data 0x0000000008101908 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) - .data 0x0000000008101908 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) - .data 0x0000000008101928 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) - .data 0x0000000008101928 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) - .data 0x0000000008101928 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) - .data 0x0000000008101928 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ics.s.obj) - .data 0x0000000008101928 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) - .data 0x0000000008101928 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) - 0x0000000008101928 _kmalloc_arena_osheap - .data 0x0000000008101960 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) - .data 0x0000000008101960 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) - .data 0x0000000008101960 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(vsnprintf.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(abort.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strchr.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strcmp.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strncpy.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setjmp.S.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(longjmp.S.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcpy.S.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memset.S.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strlen.S.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(cpucap.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(free.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(realloc.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(errno.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(raise.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fwrite.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memrchr.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(signal.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fileutil.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fseek.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setvbuf.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memchr.S.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fflush.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(close.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(lseek.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(read.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udiv_qrnnd_16.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - .data 0x0000000008101a30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/src/main.cpp.obj + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/src/utilities.cpp.obj + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/src/particles.cpp.obj + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/font.png.o + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o + .data 0x0000000008104af0 0x0 CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_movmem.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sdivsi3.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivsi3.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + .data 0x0000000008104af0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .data 0x0000000008104af0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(render.c.obj) + 0x0000000008104af0 _azrp_frag + .data 0x0000000008104af4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(r61524.s.obj) + .data 0x0000000008104af4 0x1 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.c.obj) + 0x0000000008104af4 _AZRP_SHADER_CLEAR + .data 0x0000000008104af5 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(clear.S.obj) + .data 0x0000000008104af5 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image.c.obj) + .data 0x0000000008104af5 0x1 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16.c.obj) + 0x0000000008104af5 _AZRP_SHADER_IMAGE_RGB16 + .data 0x0000000008104af6 0x1 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8.c.obj) + 0x0000000008104af6 _AZRP_SHADER_IMAGE_P8 + .data 0x0000000008104af7 0x1 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4.c.obj) + 0x0000000008104af7 _AZRP_SHADER_IMAGE_P4 + .data 0x0000000008104af8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_normal.S.obj) + .data 0x0000000008104af8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_rgb16_clearbg.S.obj) + .data 0x0000000008104af8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p8_normal.S.obj) + .data 0x0000000008104af8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(image_p4_normal.S.obj) + .data 0x0000000008104af8 0x4 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a(libprof.c.obj) + .data 0x0000000008104afc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) + .data 0x0000000008104afc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(overclock.c.obj) + .data 0x0000000008104afc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(atomic.c.obj) + .data 0x0000000008104afc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(registers.s.obj) + .data 0x0000000008104afc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) + .data 0x0000000008104afc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(start.c.obj) + .data 0x0000000008104afc 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(world.c.obj) + .data 0x0000000008104afc 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keysc.c.obj) + 0x0000000008104afc _keysc_tid + 0x0000000008104b00 _keysc_scan_us + 0x0000000008104b04 _keysc_scan_Hz + .data 0x0000000008104b08 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(mmu.c.obj) + .data 0x0000000008104b08 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc_ticks.c.obj) + .data 0x0000000008104b08 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tmu.c.obj) + .data 0x0000000008104b08 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ff-bulk.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(configure.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(string.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(usb.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(r61524.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_alpha.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dvram.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_rgb16.S.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8.S.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p8_clearbg.S.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4.S.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(image_p4_clearbg_alt.S.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dma.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(intc.c.obj) + .data 0x0000000008104b2c 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.s.obj) + .data 0x0000000008104b2c 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.c.obj) + 0x0000000008104b2c _gint_exc_panic + .data 0x0000000008104b30 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) + .data 0x0000000008104b30 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kernel.c.obj) + 0x0000000008104b30 _gint_required_intc + 0x0000000008104b34 _gint_required_cpu + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(osmenu.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(syscalls.S.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(tlbh.S.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(keydev.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_gint.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(kmalloc.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dprint.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dtext.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(rtc.c.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-etmu.s.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth-tmu.s.obj) + .data 0x0000000008104b38 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(sleep.c.obj) + .data 0x0000000008104b38 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(setup.c.obj) + .data 0x0000000008104b58 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dclear.c.obj) + .data 0x0000000008104b58 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(drect.c.obj) + .data 0x0000000008104b58 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate.c.obj) + .data 0x0000000008104b58 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti.c.obj) + 0x0000000008104b58 _topti_font + 0x0000000008104b5c _gint_default_font + .data 0x0000000008104b60 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(font8x9.png.o) + .data 0x0000000008104b60 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpu.c.obj) + .data 0x0000000008104b60 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(ics.s.obj) + .data 0x0000000008104b60 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) + .data 0x0000000008104b60 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(exch.s.obj) + .data 0x0000000008104b60 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(arena_osheap.c.obj) + 0x0000000008104b60 _kmalloc_arena_osheap + .data 0x0000000008104b98 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dupdate_hook.c.obj) + .data 0x0000000008104b98 0x10 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(dwindow.c.obj) + 0x0000000008104b98 _dwindow + .data 0x0000000008104ba8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(topti-asm.s.obj) + .data 0x0000000008104ba8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_ops.o) + .data 0x0000000008104ba8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_personality.o) + .data 0x0000000008104ba8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_terminate.o) + .data 0x0000000008104ba8 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_unex_handler.o) + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x0000000008104ba8 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_unex_handler.o) + 0x0000000008104ba8 __ZN10__cxxabiv120__unexpected_handlerE + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_op.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(functexcept.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(snprintf_lite.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(del_op.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_call.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_catch.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_exception.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_globals.o) + .data 0x0000000008104bac 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_term_handler.o) + .data._ZN10__cxxabiv119__terminate_handlerE + 0x0000000008104bac 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(eh_term_handler.o) + 0x0000000008104bac __ZN10__cxxabiv119__terminate_handlerE + .data 0x0000000008104bb0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(new_handler.o) + .data 0x0000000008104bb0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(si_class_type_info.o) + .data 0x0000000008104bb0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(tinfo.o) + .data 0x0000000008104bb0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libstdc++.a(class_type_info.o) + .data 0x0000000008104bb0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(rand.c.obj) + .data 0x0000000008104bb0 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(tinymt32.c.obj) + .data 0x0000000008104bb0 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj) + 0x0000000008104bb0 ___dso_handle + .data 0x0000000008104bb4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fixed.c.obj) + .data 0x0000000008104bb4 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_fp.c.obj) + .data 0x0000000008104bb4 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(print.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(util.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(vsnprintf.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(abort.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strchr.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strcmp.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strncpy.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setjmp.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(longjmp.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcmp.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memcpy.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memmove.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memset.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strlen.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(cpucap.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(free.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(realloc.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(clock.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(grisu2b_59_56.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(errno.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(raise.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fwrite.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(format_usual.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memrchr.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(strerror.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(signal.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fileutil.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fseek.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(setvbuf.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(memchr.S.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(fflush.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(close.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(fs.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(lseek.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(read.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(write.c.obj) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libopenlibm.a(s_ceil.c.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_table.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udiv_qrnnd_16.o) + .data 0x0000000008104c84 0x0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) *(.gint.mappedrel) .gint.mappedrel - 0x0000000008101a30 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) - 0x0000000008101a30 _gint_inth_callback - 0x0000000008101a40 . = ALIGN (0x10) - *fill* 0x0000000008101a34 0xc + 0x0000000008104c84 0x4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) + 0x0000000008104c84 _gint_inth_callback + 0x0000000008104c90 . = ALIGN (0x10) + *fill* 0x0000000008104c88 0x8 -.data.4 0x0000000008101a40 0x0 address de chargement 0x000000000030de20 +.data.4 0x0000000008104c90 0x0 address de chargement 0x00000000003187c0 *(.data.4) - 0x0000000008101a40 . = ALIGN (0x10) - 0x0000000000000190 _sdata = (SIZEOF (.data) + SIZEOF (.data.4)) + 0x0000000008104c90 . = ALIGN (0x10) + 0x00000000000001a0 _sdata = (SIZEOF (.data) + SIZEOF (.data.4)) 0x00000000e5200000 . = ORIGIN (ilram) -.ilram 0x00000000e5200000 0xa0 address de chargement 0x000000000030de20 - 0x000000000030de20 _lilram = LOADADDR (.ilram) +.ilram 0x00000000e5200000 0x100 address de chargement 0x00000000003187c0 + 0x00000000003187c0 _lilram = LOADADDR (.ilram) 0x00000000e5200000 _rilram = . *(.ilram) - .ilram 0x00000000e5200000 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) + .ilram 0x00000000e5200000 0x50 /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a(r61524.s.obj) + 0x00000000e5200000 _azrp_r61524_fragment_x1 + 0x00000000e5200014 _azrp_r61524_fragment_x2 + *fill* 0x00000000e5200050 0x10 + .ilram 0x00000000e5200060 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(memset.c.obj) *(.gint.mapped) - .gint.mapped 0x00000000e5200020 0x80 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) - 0x00000000e52000a0 . = ALIGN (0x10) + .gint.mapped 0x00000000e5200080 0x80 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(inth.S.obj) + 0x00000000e5200100 . = ALIGN (0x10) 0x00000000e500e000 . = ORIGIN (xyram) -.xyram 0x00000000e500e000 0x0 address de chargement 0x000000000030dec0 - 0x000000000030dec0 _lxyram = LOADADDR (.xyram) +.xyram 0x00000000e500e000 0x0 address de chargement 0x00000000003188c0 + 0x00000000003188c0 _lxyram = LOADADDR (.xyram) 0x00000000e500e000 _rxyram = . *(.xram .yram .xyram) 0x00000000e500e000 . = ALIGN (0x10) - 0x00000000000000a0 _silram = SIZEOF (.ilram) + 0x0000000000000100 _silram = SIZEOF (.ilram) 0x0000000000000000 _sxyram = SIZEOF (.xyram) -.gint.bss 0x0000000008101a40 0x200 +.gint.bss 0x0000000008104c90 0x200 *(.gint.bss) - .gint.bss 0x0000000008101a40 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) - .gint.bss 0x0000000008101a64 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) - 0x0000000008101a64 _gint - .gint.bss 0x0000000008101aa4 0x190 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) - 0x0000000008101c40 . = ALIGN (0x10) - *fill* 0x0000000008101c34 0xc - 0x0000000008101c40 _euram = . + .gint.bss 0x0000000008104c90 0x24 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(cpg.c.obj) + .gint.bss 0x0000000008104cb4 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(hardware.c.obj) + 0x0000000008104cb4 _gint + .gint.bss 0x0000000008104cf4 0x190 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a(pipes.c.obj) + 0x0000000008104e90 . = ALIGN (0x10) + *fill* 0x0000000008104e84 0xc + 0x0000000008104e90 _euram = . 0x0000000000000200 _sgbss = SIZEOF (.gint.bss) /DISCARD/ @@ -1361,285 +2267,400 @@ LOAD /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a *(.eh_frame_hdr) *(.eh_frame) *(.comment) -OUTPUT(myaddin elf32-sh) +OUTPUT(shmup elf32-sh) -.debug_info 0x0000000000000000 0x4441 - .debug_info 0x0000000000000000 0x3cd /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - .debug_info 0x00000000000003cd 0x251 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - .debug_info 0x000000000000061e 0x15b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - .debug_info 0x0000000000000779 0x28f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - .debug_info 0x0000000000000a08 0x1f7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - .debug_info 0x0000000000000bff 0x134 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - .debug_info 0x0000000000000d33 0x28b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - .debug_info 0x0000000000000fbe 0x1f8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - .debug_info 0x00000000000011b6 0x298 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - .debug_info 0x000000000000144e 0xca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - .debug_info 0x0000000000001518 0x193 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - .debug_info 0x00000000000016ab 0x19c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - .debug_info 0x0000000000001847 0x47a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) - .debug_info 0x0000000000001cc1 0x48d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) - .debug_info 0x000000000000214e 0x52c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - .debug_info 0x000000000000267a 0x4d2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - .debug_info 0x0000000000002b4c 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - .debug_info 0x0000000000002e3e 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - .debug_info 0x0000000000003130 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - .debug_info 0x0000000000003422 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - .debug_info 0x0000000000003714 0x2bc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - .debug_info 0x00000000000039d0 0x259 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - .debug_info 0x0000000000003c29 0x2a5 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - .debug_info 0x0000000000003ece 0x15b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - .debug_info 0x0000000000004029 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - .debug_info 0x0000000000004235 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) +.debug_info 0x0000000000000000 0xc45e + .debug_info 0x0000000000000000 0xec /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + .debug_info 0x00000000000000ec 0x517 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + .debug_info 0x0000000000000603 0x402 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + .debug_info 0x0000000000000a05 0x3cd /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + .debug_info 0x0000000000000dd2 0x2e4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + .debug_info 0x00000000000010b6 0x259 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + .debug_info 0x000000000000130f 0x297 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + .debug_info 0x00000000000015a6 0x251 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + .debug_info 0x00000000000017f7 0x15b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + .debug_info 0x0000000000001952 0x28f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + .debug_info 0x0000000000001be1 0x4d2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + .debug_info 0x00000000000020b3 0x1f7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + .debug_info 0x00000000000022aa 0x265 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + .debug_info 0x000000000000250f 0x15b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + .debug_info 0x000000000000266a 0x4329 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + .debug_info 0x0000000000006993 0x24af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + .debug_info 0x0000000000008e42 0x134 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + .debug_info 0x0000000000008f76 0x28b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + .debug_info 0x0000000000009201 0x1f8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .debug_info 0x00000000000093f9 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .debug_info 0x0000000000009605 0x1fb /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + .debug_info 0x0000000000009800 0x298 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .debug_info 0x0000000000009a98 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + .debug_info 0x0000000000009ca4 0xca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .debug_info 0x0000000000009d6e 0x193 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + .debug_info 0x0000000000009f01 0x19c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .debug_info 0x000000000000a09d 0x47a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .debug_info 0x000000000000a517 0x48d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .debug_info 0x000000000000a9a4 0x52c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .debug_info 0x000000000000aed0 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .debug_info 0x000000000000b1c2 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .debug_info 0x000000000000b4b4 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .debug_info 0x000000000000b7a6 0x2f2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .debug_info 0x000000000000ba98 0x2bc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .debug_info 0x000000000000bd54 0x259 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .debug_info 0x000000000000bfad 0x2a5 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .debug_info 0x000000000000c252 0x20c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) -.debug_abbrev 0x0000000000000000 0x2766 - .debug_abbrev 0x0000000000000000 0x263 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - .debug_abbrev 0x0000000000000263 0x164 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - .debug_abbrev 0x00000000000003c7 0xcf /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - .debug_abbrev 0x0000000000000496 0x1bd /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - .debug_abbrev 0x0000000000000653 0x15b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - .debug_abbrev 0x00000000000007ae 0xca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - .debug_abbrev 0x0000000000000878 0x1c2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - .debug_abbrev 0x0000000000000a3a 0x127 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - .debug_abbrev 0x0000000000000b61 0x1ae /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - .debug_abbrev 0x0000000000000d0f 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - .debug_abbrev 0x0000000000000d7f 0x10c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - .debug_abbrev 0x0000000000000e8b 0x11a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - .debug_abbrev 0x0000000000000fa5 0x1e4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) - .debug_abbrev 0x0000000000001189 0x1f5 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) - .debug_abbrev 0x000000000000137e 0x244 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - .debug_abbrev 0x00000000000015c2 0x278 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - .debug_abbrev 0x000000000000183a 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - .debug_abbrev 0x00000000000019e9 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - .debug_abbrev 0x0000000000001b98 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - .debug_abbrev 0x0000000000001d47 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - .debug_abbrev 0x0000000000001ef6 0x198 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - .debug_abbrev 0x000000000000208e 0x1b2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - .debug_abbrev 0x0000000000002240 0x1b2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - .debug_abbrev 0x00000000000023f2 0xcf /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - .debug_abbrev 0x00000000000024c1 0x142 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - .debug_abbrev 0x0000000000002603 0x163 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) +.debug_abbrev 0x0000000000000000 0x4251 + .debug_abbrev 0x0000000000000000 0x6d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + .debug_abbrev 0x000000000000006d 0x256 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + .debug_abbrev 0x00000000000002c3 0x271 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + .debug_abbrev 0x0000000000000534 0x263 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + .debug_abbrev 0x0000000000000797 0x1b0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + .debug_abbrev 0x0000000000000947 0x1b2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + .debug_abbrev 0x0000000000000af9 0x1b3 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + .debug_abbrev 0x0000000000000cac 0x164 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + .debug_abbrev 0x0000000000000e10 0xcf /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + .debug_abbrev 0x0000000000000edf 0x1bd /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + .debug_abbrev 0x000000000000109c 0x278 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + .debug_abbrev 0x0000000000001314 0x15b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + .debug_abbrev 0x000000000000146f 0x174 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + .debug_abbrev 0x00000000000015e3 0xcf /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + .debug_abbrev 0x00000000000016b2 0x6bd /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + .debug_abbrev 0x0000000000001d6f 0x5c6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + .debug_abbrev 0x0000000000002335 0xca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + .debug_abbrev 0x00000000000023ff 0x1c2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + .debug_abbrev 0x00000000000025c1 0x127 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .debug_abbrev 0x00000000000026e8 0x163 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .debug_abbrev 0x000000000000284b 0x148 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + .debug_abbrev 0x0000000000002993 0x1ae /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .debug_abbrev 0x0000000000002b41 0x142 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + .debug_abbrev 0x0000000000002c83 0x70 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .debug_abbrev 0x0000000000002cf3 0x10c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + .debug_abbrev 0x0000000000002dff 0x11a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .debug_abbrev 0x0000000000002f19 0x1e4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000000030fd 0x1f5 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000000032f2 0x244 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .debug_abbrev 0x0000000000003536 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .debug_abbrev 0x00000000000036e5 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .debug_abbrev 0x0000000000003894 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .debug_abbrev 0x0000000000003a43 0x1af /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .debug_abbrev 0x0000000000003bf2 0x198 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .debug_abbrev 0x0000000000003d8a 0x1b2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .debug_abbrev 0x0000000000003f3c 0x1b2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .debug_abbrev 0x00000000000040ee 0x163 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) .debug_loclists - 0x0000000000000000 0x1851 + 0x0000000000000000 0x66f5 .debug_loclists - 0x0000000000000000 0xc8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + 0x0000000000000000 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) .debug_loclists - 0x00000000000000c8 0x22 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + 0x0000000000000030 0x257 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) .debug_loclists - 0x00000000000000ea 0xa1 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + 0x0000000000000287 0x16c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) .debug_loclists - 0x000000000000018b 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + 0x00000000000003f3 0xc8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) .debug_loclists - 0x00000000000001c1 0x72 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + 0x00000000000004bb 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) .debug_loclists - 0x0000000000000233 0x133 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + 0x00000000000004f3 0x86 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) .debug_loclists - 0x0000000000000366 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + 0x0000000000000579 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) .debug_loclists - 0x0000000000000436 0x20b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + 0x00000000000005b1 0x22 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) .debug_loclists - 0x0000000000000641 0x5d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + 0x00000000000005d3 0xa1 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) .debug_loclists - 0x000000000000069e 0x52 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + 0x0000000000000674 0x30c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) .debug_loclists - 0x00000000000006f0 0x424 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + 0x0000000000000980 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) .debug_loclists - 0x0000000000000b14 0x42c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + 0x00000000000009b6 0x27 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) .debug_loclists - 0x0000000000000f40 0x3ca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + 0x00000000000009dd 0x3144 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) .debug_loclists - 0x000000000000130a 0x30c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + 0x0000000000003b21 0x17ee /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) .debug_loclists - 0x0000000000001616 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + 0x000000000000530f 0x72 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) .debug_loclists - 0x000000000000164c 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + 0x0000000000005381 0x133 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) .debug_loclists - 0x0000000000001682 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + 0x00000000000054b4 0xd0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) .debug_loclists - 0x00000000000016b8 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + 0x0000000000005584 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) .debug_loclists - 0x00000000000016ee 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + 0x000000000000559c 0x4a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) .debug_loclists - 0x0000000000001724 0x6c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + 0x00000000000055e6 0x20b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) .debug_loclists - 0x0000000000001790 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + 0x00000000000057f1 0x71 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) .debug_loclists - 0x00000000000017c8 0x71 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + 0x0000000000005862 0x5d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) .debug_loclists - 0x0000000000001839 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + 0x00000000000058bf 0x52 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .debug_loclists + 0x0000000000005911 0x424 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .debug_loclists + 0x0000000000005d35 0x42c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .debug_loclists + 0x0000000000006161 0x3ca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .debug_loclists + 0x000000000000652b 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .debug_loclists + 0x0000000000006561 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .debug_loclists + 0x0000000000006597 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .debug_loclists + 0x00000000000065cd 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .debug_loclists + 0x0000000000006603 0x36 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .debug_loclists + 0x0000000000006639 0x6c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .debug_loclists + 0x00000000000066a5 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .debug_loclists + 0x00000000000066dd 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) -.debug_aranges 0x0000000000000000 0x328 +.debug_aranges 0x0000000000000000 0x488 .debug_aranges - 0x0000000000000000 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + 0x0000000000000000 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) .debug_aranges - 0x0000000000000020 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + 0x0000000000000020 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) .debug_aranges - 0x0000000000000040 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + 0x0000000000000040 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) .debug_aranges - 0x0000000000000058 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + 0x0000000000000060 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) .debug_aranges - 0x0000000000000078 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + 0x0000000000000080 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) .debug_aranges - 0x0000000000000098 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + 0x00000000000000a0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) .debug_aranges - 0x00000000000000b8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + 0x00000000000000c0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) .debug_aranges - 0x00000000000000d8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + 0x00000000000000e0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) .debug_aranges - 0x00000000000000f8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + 0x0000000000000100 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) .debug_aranges - 0x0000000000000118 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + 0x0000000000000118 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) .debug_aranges - 0x0000000000000130 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + 0x0000000000000138 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) .debug_aranges - 0x0000000000000150 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + 0x0000000000000158 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) .debug_aranges - 0x0000000000000170 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + 0x0000000000000178 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) .debug_aranges - 0x0000000000000190 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + 0x0000000000000198 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) .debug_aranges - 0x00000000000001b0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + 0x00000000000001b0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) .debug_aranges - 0x00000000000001d0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + 0x00000000000001d0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) .debug_aranges - 0x00000000000001f0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + 0x00000000000001f0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) .debug_aranges - 0x0000000000000210 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + 0x0000000000000210 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) .debug_aranges - 0x0000000000000230 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + 0x0000000000000230 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) .debug_aranges - 0x0000000000000250 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + 0x0000000000000250 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) .debug_aranges - 0x0000000000000270 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + 0x0000000000000270 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) .debug_aranges - 0x0000000000000290 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + 0x0000000000000290 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) .debug_aranges - 0x00000000000002b0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + 0x00000000000002b0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) .debug_aranges - 0x00000000000002d0 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + 0x00000000000002d0 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) .debug_aranges - 0x00000000000002e8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + 0x00000000000002e8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) .debug_aranges - 0x0000000000000308 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + 0x0000000000000308 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .debug_aranges + 0x0000000000000328 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .debug_aranges + 0x0000000000000348 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .debug_aranges + 0x0000000000000368 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .debug_aranges + 0x0000000000000388 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .debug_aranges + 0x00000000000003a8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .debug_aranges + 0x00000000000003c8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .debug_aranges + 0x00000000000003e8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .debug_aranges + 0x0000000000000408 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .debug_aranges + 0x0000000000000428 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .debug_aranges + 0x0000000000000448 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .debug_aranges + 0x0000000000000468 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + +.debug_line 0x0000000000000000 0x725b + .debug_line 0x0000000000000000 0x8d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + .debug_line 0x000000000000008d 0x2c1 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + .debug_line 0x000000000000034e 0x258 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + .debug_line 0x00000000000005a6 0x1ca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + .debug_line 0x0000000000000770 0xae /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + .debug_line 0x000000000000081e 0x12c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + .debug_line 0x000000000000094a 0xe8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + .debug_line 0x0000000000000a32 0x83 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + .debug_line 0x0000000000000ab5 0x50 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + .debug_line 0x0000000000000b05 0x13e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + .debug_line 0x0000000000000c43 0x2d6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + .debug_line 0x0000000000000f19 0x9a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + .debug_line 0x0000000000000fb3 0xac /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + .debug_line 0x000000000000105f 0x50 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + .debug_line 0x00000000000010af 0x2e6f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + .debug_line 0x0000000000003f1e 0x1828 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + .debug_line 0x0000000000005746 0xac /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + .debug_line 0x00000000000057f2 0x230 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + .debug_line 0x0000000000005a22 0x130 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .debug_line 0x0000000000005b52 0x12f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .debug_line 0x0000000000005c81 0x94 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + .debug_line 0x0000000000005d15 0x318 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .debug_line 0x000000000000602d 0x146 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + .debug_line 0x0000000000006173 0x52 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .debug_line 0x00000000000061c5 0xb2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + .debug_line 0x0000000000006277 0xb2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .debug_line 0x0000000000006329 0x23f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .debug_line 0x0000000000006568 0x29b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .debug_line 0x0000000000006803 0x35c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .debug_line 0x0000000000006b5f 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .debug_line 0x0000000000006c16 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .debug_line 0x0000000000006ccd 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .debug_line 0x0000000000006d84 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .debug_line 0x0000000000006e3b 0xaf /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .debug_line 0x0000000000006eea 0x13d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .debug_line 0x0000000000007027 0xf0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .debug_line 0x0000000000007117 0x144 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + +.debug_str 0x0000000000000000 0x2122 + .debug_str 0x0000000000000000 0x16b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + 0x1a6 (taille avant relaxe) + .debug_str 0x000000000000016b 0x168 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + 0x2cc (taille avant relaxe) + .debug_str 0x00000000000002d3 0x2a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + 0x283 (taille avant relaxe) + .debug_str 0x00000000000002fd 0x35 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + 0x28e (taille avant relaxe) + .debug_str 0x0000000000000332 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + 0x24f (taille avant relaxe) + .debug_str 0x0000000000000352 0x27 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + 0x230 (taille avant relaxe) + .debug_str 0x0000000000000379 0xa /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + 0x247 (taille avant relaxe) + .debug_str 0x0000000000000383 0x1f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + 0x24a (taille avant relaxe) + .debug_str 0x00000000000003a2 0x1ef /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) + .debug_str 0x00000000000003a2 0x14 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + 0x22c (taille avant relaxe) + .debug_str 0x00000000000003b6 0x59 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + 0x2a4 (taille avant relaxe) + .debug_str 0x000000000000040f 0x59 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + 0x20b (taille avant relaxe) + .debug_str 0x000000000000040f 0x1e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + 0x24e (taille avant relaxe) + .debug_str 0x000000000000042d 0x1ef /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) + .debug_str 0x000000000000042d 0x173b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) + 0x18f6 (taille avant relaxe) + .debug_str 0x0000000000001b68 0x448 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) + 0x763 (taille avant relaxe) + .debug_str 0x0000000000001fb0 0x17 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + 0x1b2 (taille avant relaxe) + .debug_str 0x0000000000001fc7 0x7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + 0x23b (taille avant relaxe) + .debug_str 0x0000000000001fce 0x21d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .debug_str 0x0000000000001fce 0x206 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .debug_str 0x0000000000001fce 0x20b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + .debug_str 0x0000000000001fce 0x241 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .debug_str 0x0000000000001fce 0x223 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + .debug_str 0x0000000000001fce 0x195 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) + .debug_str 0x0000000000001fce 0x34 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + 0x1d2 (taille avant relaxe) + .debug_str 0x0000000000002002 0xa /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + 0x1d2 (taille avant relaxe) + .debug_str 0x000000000000200c 0xa9 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + 0x218 (taille avant relaxe) + .debug_str 0x00000000000020b5 0xa /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + 0x218 (taille avant relaxe) + .debug_str 0x00000000000020bf 0x12 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + 0x2d2 (taille avant relaxe) + .debug_str 0x00000000000020d1 0x18 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + 0x255 (taille avant relaxe) + .debug_str 0x00000000000020e9 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + 0x255 (taille avant relaxe) + .debug_str 0x00000000000020f1 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + 0x255 (taille avant relaxe) + .debug_str 0x00000000000020f9 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + 0x255 (taille avant relaxe) + .debug_str 0x0000000000002101 0xb /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + 0x248 (taille avant relaxe) + .debug_str 0x000000000000210c 0xc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + 0x230 (taille avant relaxe) + .debug_str 0x0000000000002118 0xa /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + 0x24d (taille avant relaxe) + .debug_str 0x0000000000002122 0x206 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + +.debug_frame 0x0000000000000000 0x858 + .debug_frame 0x0000000000000000 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fixunssfsi.o) + .debug_frame 0x000000000000003c 0xa4 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) + .debug_frame 0x00000000000000e0 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) + .debug_frame 0x0000000000000128 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + .debug_frame 0x0000000000000164 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ge_sf.o) + .debug_frame 0x00000000000001ac 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) + .debug_frame 0x00000000000001e8 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_si.o) + .debug_frame 0x0000000000000230 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) + .debug_frame 0x0000000000000260 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + .debug_frame 0x00000000000002c0 0x98 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + .debug_frame 0x0000000000000358 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) + .debug_frame 0x0000000000000390 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_sf.o) + .debug_frame 0x00000000000003c0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + .debug_frame 0x00000000000003e0 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + .debug_frame 0x0000000000000400 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) + .debug_frame 0x0000000000000420 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_sf.o) + .debug_frame 0x0000000000000440 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_sf.o) + .debug_frame 0x0000000000000470 0x64 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .debug_frame 0x00000000000004d4 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) + .debug_frame 0x00000000000004f4 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) + .debug_frame 0x0000000000000514 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) + .debug_frame 0x0000000000000534 0x118 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .debug_frame 0x000000000000064c 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) + .debug_frame 0x0000000000000694 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) + .debug_frame 0x00000000000006dc 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) + .debug_frame 0x0000000000000724 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) + .debug_frame 0x000000000000076c 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) + .debug_frame 0x00000000000007b4 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) + .debug_frame 0x00000000000007f0 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) + .debug_frame 0x0000000000000838 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) .debug_rnglists - 0x0000000000000000 0x286 + 0x0000000000000000 0xee5 .debug_rnglists - 0x0000000000000000 0x19 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) + 0x0000000000000000 0x1d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_sf.o) .debug_rnglists - 0x0000000000000019 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) + 0x000000000000001d 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_sf.o) .debug_rnglists - 0x0000000000000039 0x1f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) + 0x000000000000004d 0x19 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) .debug_rnglists - 0x0000000000000058 0x37 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + 0x0000000000000066 0x23 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_sf.o) .debug_rnglists - 0x000000000000008f 0x83 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + 0x0000000000000089 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) .debug_rnglists - 0x0000000000000112 0x72 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + 0x00000000000000a9 0x2e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) .debug_rnglists - 0x0000000000000184 0x69 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + 0x00000000000000d7 0x7d8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2.o) .debug_rnglists - 0x00000000000001ed 0x46 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + 0x00000000000008af 0x417 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(unwind-dw2-fde.o) .debug_rnglists - 0x0000000000000233 0x2e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) + 0x0000000000000cc6 0x1f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) .debug_rnglists - 0x0000000000000261 0x25 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - -.debug_line 0x0000000000000000 0x20ed - .debug_line 0x0000000000000000 0x1ca /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - .debug_line 0x00000000000001ca 0x83 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - .debug_line 0x000000000000024d 0x50 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - .debug_line 0x000000000000029d 0x13e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - .debug_line 0x00000000000003db 0x9a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - .debug_line 0x0000000000000475 0xac /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - .debug_line 0x0000000000000521 0x230 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - .debug_line 0x0000000000000751 0x130 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - .debug_line 0x0000000000000881 0x318 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - .debug_line 0x0000000000000b99 0x52 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - .debug_line 0x0000000000000beb 0xb2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - .debug_line 0x0000000000000c9d 0xb2 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - .debug_line 0x0000000000000d4f 0x23f /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) - .debug_line 0x0000000000000f8e 0x29b /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) - .debug_line 0x0000000000001229 0x35c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - .debug_line 0x0000000000001585 0x2d6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - .debug_line 0x000000000000185b 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - .debug_line 0x0000000000001912 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - .debug_line 0x00000000000019c9 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - .debug_line 0x0000000000001a80 0xb7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - .debug_line 0x0000000000001b37 0xaf /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - .debug_line 0x0000000000001be6 0x13d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - .debug_line 0x0000000000001d23 0xf0 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - .debug_line 0x0000000000001e13 0x50 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - .debug_line 0x0000000000001e63 0x146 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - .debug_line 0x0000000000001fa9 0x144 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) - -.debug_str 0x0000000000000000 0x530 - .debug_str 0x0000000000000000 0x252 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - 0x28e (taille avant relaxe) - .debug_str 0x0000000000000252 0x27 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - 0x24a (taille avant relaxe) - .debug_str 0x0000000000000279 0x1ef /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_sf.o) - .debug_str 0x0000000000000279 0x2a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - 0x22c (taille avant relaxe) - .debug_str 0x00000000000002a3 0x9 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - 0x20b (taille avant relaxe) - .debug_str 0x00000000000002ac 0x65 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - 0x1b2 (taille avant relaxe) - .debug_str 0x0000000000000311 0x7 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - 0x23b (taille avant relaxe) - .debug_str 0x0000000000000318 0x21d /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - .debug_str 0x0000000000000318 0x6 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - 0x241 (taille avant relaxe) - .debug_str 0x000000000000031e 0x195 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clz.o) - .debug_str 0x000000000000031e 0x39 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - 0x1d2 (taille avant relaxe) - .debug_str 0x0000000000000357 0xa /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - 0x1d2 (taille avant relaxe) - .debug_str 0x0000000000000361 0xa9 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) - 0x218 (taille avant relaxe) - .debug_str 0x000000000000040a 0xa /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) - 0x218 (taille avant relaxe) - .debug_str 0x0000000000000414 0x7e /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - 0x2d2 (taille avant relaxe) - .debug_str 0x0000000000000492 0x40 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - 0x2a4 (taille avant relaxe) - .debug_str 0x00000000000004d2 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - 0x255 (taille avant relaxe) - .debug_str 0x00000000000004f2 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - 0x255 (taille avant relaxe) - .debug_str 0x00000000000004fa 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - 0x255 (taille avant relaxe) - .debug_str 0x0000000000000502 0x8 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - 0x255 (taille avant relaxe) - .debug_str 0x000000000000050a 0xb /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - 0x248 (taille avant relaxe) - .debug_str 0x0000000000000515 0x11 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - 0x230 (taille avant relaxe) - .debug_str 0x0000000000000526 0xa /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - 0x24d (taille avant relaxe) - .debug_str 0x0000000000000530 0x1ef /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_thenan_df.o) - .debug_str 0x0000000000000530 0x223 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - .debug_str 0x0000000000000530 0x206 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) - -.debug_frame 0x0000000000000000 0x5e4 - .debug_frame 0x0000000000000000 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_div_sf.o) - .debug_frame 0x000000000000003c 0x30 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_sf_to_df.o) - .debug_frame 0x000000000000006c 0x60 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_usi_to_sf.o) - .debug_frame 0x00000000000000cc 0x38 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_make_df.o) - .debug_frame 0x0000000000000104 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_clzsi2.o) - .debug_frame 0x0000000000000124 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) - .debug_frame 0x0000000000000144 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_sf.o) - .debug_frame 0x0000000000000164 0x64 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) - .debug_frame 0x00000000000001c8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lshrdi3.o) - .debug_frame 0x00000000000001e8 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_ashldi3.o) - .debug_frame 0x0000000000000208 0x118 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) - .debug_frame 0x0000000000000320 0x98 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_mul_df.o) - .debug_frame 0x00000000000003b8 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_eq_df.o) - .debug_frame 0x0000000000000400 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_gt_df.o) - .debug_frame 0x0000000000000448 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_lt_df.o) - .debug_frame 0x0000000000000490 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_le_df.o) - .debug_frame 0x00000000000004d8 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unord_df.o) - .debug_frame 0x0000000000000520 0x3c /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) - .debug_frame 0x000000000000055c 0x48 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_df_to_si.o) - .debug_frame 0x00000000000005a4 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_unpack_df.o) - .debug_frame 0x00000000000005c4 0x20 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_fpcmp_parts_df.o) + 0x0000000000000ce5 0x37 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_sf.o) + .debug_rnglists + 0x0000000000000d1c 0x83 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_pack_df.o) + .debug_rnglists + 0x0000000000000d9f 0x72 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_udivdi3.o) + .debug_rnglists + 0x0000000000000e11 0x69 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_umoddi3.o) + .debug_rnglists + 0x0000000000000e7a 0x46 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_addsub_df.o) + .debug_rnglists + 0x0000000000000ec0 0x25 /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/libgcc.a(_si_to_df.o) diff --git a/build-cg/CMakeCache.txt b/build-cg/CMakeCache.txt index 7807ca3..2ce373a 100644 --- a/build-cg/CMakeCache.txt +++ b/build-cg/CMakeCache.txt @@ -20,6 +20,32 @@ CMAKE_ADDR2LINE:FILEPATH=/home/sylvain/.local/bin/sh-elf-addr2line //Path to a program. CMAKE_AR:FILEPATH=/home/sylvain/.local/bin/sh-elf-ar +//ASM compiler +CMAKE_ASM_COMPILER:FILEPATH=/home/sylvain/.local/bin/sh-elf-gcc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=/home/sylvain/.local/bin/sh-elf-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/sylvain/.local/bin/sh-elf-gcc-ranlib + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + //Choose the type of build, options are: None Debug Release RelWithDebInfo // MinSizeRel ... CMAKE_BUILD_TYPE:STRING= @@ -142,7 +168,22 @@ CMAKE_PROJECT_DESCRIPTION:STATIC= CMAKE_PROJECT_HOMEPAGE_URL:STATIC= //Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=MyShmup +CMAKE_PROJECT_NAME:STATIC=Schmup + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=1.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= //Path to a program. CMAKE_RANLIB:FILEPATH=/home/sylvain/.local/bin/sh-elf-ranlib @@ -216,13 +257,13 @@ FXCONV_COMPILER_PATH:FILEPATH=/home/sylvain/.local/bin/fxconv FXSDK_CMAKE_MODULE_PATH:UNINITIALIZED=/home/sylvain/.local/lib/cmake/fxsdk //Value Computed by CMake -MyShmup_BINARY_DIR:STATIC=/home/sylvain/Programmes/Casio/shmup/build-cg +Schmup_BINARY_DIR:STATIC=/home/sylvain/Programmes/Casio/shmup/build-cg //Value Computed by CMake -MyShmup_IS_TOP_LEVEL:STATIC=ON +Schmup_IS_TOP_LEVEL:STATIC=ON //Value Computed by CMake -MyShmup_SOURCE_DIR:STATIC=/home/sylvain/Programmes/Casio/shmup +Schmup_SOURCE_DIR:STATIC=/home/sylvain/Programmes/Casio/shmup ######################## @@ -233,6 +274,23 @@ MyShmup_SOURCE_DIR:STATIC=/home/sylvain/Programmes/Casio/shmup CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_AR CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER +CMAKE_ASM_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //This is the directory where this CMakeCache.txt was created CMAKE_CACHEFILE_DIR:INTERNAL=/home/sylvain/Programmes/Casio/shmup/build-cg //Major version of cmake used to create the current loaded cache @@ -367,6 +425,8 @@ CMAKE_STRIP-ADVANCED:INTERNAL=1 CMAKE_UNAME:INTERNAL=/usr/bin/uname //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Azur +FIND_PACKAGE_MESSAGE_DETAILS_Azur:INTERNAL=[/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a][/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include][v0.1(0.1)] //Details about finding Gint FIND_PACKAGE_MESSAGE_DETAILS_Gint:INTERNAL=[TRUE][TRUE][v2.9.0-53(2.2.1)] //Details about finding LibProf diff --git a/build-cg/CMakeFiles/3.22.1/CMakeASMCompiler.cmake b/build-cg/CMakeFiles/3.22.1/CMakeASMCompiler.cmake new file mode 100644 index 0000000..cbfae39 --- /dev/null +++ b/build-cg/CMakeFiles/3.22.1/CMakeASMCompiler.cmake @@ -0,0 +1,20 @@ +set(CMAKE_ASM_COMPILER "/home/sylvain/.local/bin/sh-elf-gcc") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "/home/sylvain/.local/bin/sh-elf-ar") +set(CMAKE_ASM_COMPILER_AR "/home/sylvain/.local/bin/sh-elf-gcc-ar") +set(CMAKE_RANLIB "/home/sylvain/.local/bin/sh-elf-ranlib") +set(CMAKE_ASM_COMPILER_RANLIB "/home/sylvain/.local/bin/sh-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/sylvain/.local/bin/sh-elf-ld") +set(CMAKE_MT "") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/build-cg/CMakeFiles/3.22.1/CMakeSystem.cmake b/build-cg/CMakeFiles/3.22.1/CMakeSystem.cmake index d23e0af..9e840e3 100644 --- a/build-cg/CMakeFiles/3.22.1/CMakeSystem.cmake +++ b/build-cg/CMakeFiles/3.22.1/CMakeSystem.cmake @@ -1,6 +1,6 @@ -set(CMAKE_HOST_SYSTEM "Linux-5.15.0-56-generic") +set(CMAKE_HOST_SYSTEM "Linux-5.15.0-57-generic") set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "5.15.0-56-generic") +set(CMAKE_HOST_SYSTEM_VERSION "5.15.0-57-generic") set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") include("/home/sylvain/.local/lib/cmake/fxsdk/FXCG50.cmake") diff --git a/build-cg/CMakeFiles/CMakeError.log b/build-cg/CMakeFiles/CMakeError.log index d89eef8..e532238 100644 --- a/build-cg/CMakeFiles/CMakeError.log +++ b/build-cg/CMakeFiles/CMakeError.log @@ -1,19 +1,3 @@ -Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. -Compiler: /home/sylvain/.local/bin/sh-elf-gcc -Build flags: -Id flags: - -The output was: -1 -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/crt1.o : dans la fonction « main_k » : -(.text+0x5c) : référence indéfinie vers « ___setup_argv_and_call_main » -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/crt1.o : dans la fonction « atexit_k » : -(.text+0x64) : référence indéfinie vers « _atexit » -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) : dans la fonction « _exit » : -exit.c:(.text+0x8) : référence indéfinie vers « __Exit » -collect2: erreur: ld a retourné le statut de sortie 1 - - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. Compiler: /home/sylvain/.local/bin/sh-elf-g++ Build flags: @@ -21,12 +5,30 @@ Id flags: The output was: 1 +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj):(.data+0x0) : définitions multiples de « ___dso_handle »; /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/crtbegin.o:(.data+0x0) : défini pour la première fois ici /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/crt1.o : dans la fonction « main_k » : (.text+0x5c) : référence indéfinie vers « ___setup_argv_and_call_main » -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/crt1.o : dans la fonction « atexit_k » : -(.text+0x64) : référence indéfinie vers « _atexit » /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) : dans la fonction « _exit » : -exit.c:(.text+0x8) : référence indéfinie vers « __Exit » +exit.c:(.text+0x18) : référence indéfinie vers « __Exit » +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) : dans la fonction « _malloc » : +malloc.c:(.text+0x18) : référence indéfinie vers « _kmalloc » +collect2: erreur: ld a retourné le statut de sortie 1 + + +Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. +Compiler: /home/sylvain/.local/bin/sh-elf-gcc +Build flags: +Id flags: + +The output was: +1 +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(dso.c.obj):(.data+0x0) : définitions multiples de « ___dso_handle »; /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/crtbegin.o:(.data+0x0) : défini pour la première fois ici +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/crt1.o : dans la fonction « main_k » : +(.text+0x5c) : référence indéfinie vers « ___setup_argv_and_call_main » +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(exit.c.obj) : dans la fonction « _exit » : +exit.c:(.text+0x18) : référence indéfinie vers « __Exit » +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld : /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a(malloc.c.obj) : dans la fonction « _malloc » : +malloc.c:(.text+0x18) : référence indéfinie vers « _kmalloc » collect2: erreur: ld a retourné le statut de sortie 1 diff --git a/build-cg/CMakeFiles/CMakeOutput.log b/build-cg/CMakeFiles/CMakeOutput.log index 012f2fb..b0aacf9 100644 --- a/build-cg/CMakeFiles/CMakeOutput.log +++ b/build-cg/CMakeFiles/CMakeOutput.log @@ -1,18 +1,5 @@ The target system is: Generic - 1 - sh -The host system is: Linux - 5.15.0-56-generic - x86_64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /home/sylvain/.local/bin/sh-elf-gcc -Build flags: -Id flags: -c - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" - -The C compiler identification is GNU, found in "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.o" - +The host system is: Linux - 5.15.0-57-generic - x86_64 Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. Compiler: /home/sylvain/.local/bin/sh-elf-g++ Build flags: @@ -26,161 +13,32 @@ Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" p The CXX compiler identification is GNU, found in "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.o" -Detecting C compiler ABI info compiled with the following output: -Change Dir: /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /home/sylvain/.local/bin/sh-elf-gcc +Build flags: +Id flags: -c -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0d627/fast && /usr/bin/gmake -f CMakeFiles/cmTC_0d627.dir/build.make CMakeFiles/cmTC_0d627.dir/build -gmake[1]: Entering directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj -/home/sylvain/.local/bin/sh-elf-gcc -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa,--dsp -o CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -Using built-in specs. -COLLECT_AS_OPTIONS='--dsp' -COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc -Target: sh3eb-elf -Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3,m4-nofpu --enable-languages=c,c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions -Thread model: single -Supported LTO compression algorithms: zlib -gcc version 11.1.0 (GCC) -COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_0d627.dir/' - /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1 -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_0d627.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -m4-nofpu -mb -version -ffreestanding -o /tmp/ccErjObK.s -GNU C17 (GCC) version 11.1.0 (sh3eb-elf) - compiled by GNU C version 11.2.0, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/sys-include" -#include "..." search starts here: -#include <...> search starts here: - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include -End of search list. -GNU C17 (GCC) version 11.1.0 (sh3eb-elf) - compiled by GNU C version 11.2.0, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 6a7d324b0cfd85a8a8d168bac1e13bf7 -COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_0d627.dir/' - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj /tmp/ccErjObK.s -COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ -LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/ -COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.' -Linking C executable cmTC_0d627 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0d627.dir/link.txt --verbose=1 -/home/sylvain/.local/bin/sh-elf-gcc -v -nostdlib -Wl,--no-warn-rwx-segments CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj -o cmTC_0d627 -lgcc -Using built-in specs. -COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc -COLLECT_LTO_WRAPPER=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -Target: sh3eb-elf -Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3,m4-nofpu --enable-languages=c,c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions -Thread model: single -Supported LTO compression algorithms: zlib -gcc version 11.1.0 (GCC) -COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ -LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/ -COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_0d627' '-dumpdir' 'cmTC_0d627.' - /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZwf86z.res -m shelf -o cmTC_0d627 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj -lgcc -/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld: warning: cannot find entry symbol start; defaulting to 0000000000001000 -COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_0d627' '-dumpdir' 'cmTC_0d627.' -gmake[1]: Leaving directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp' +The output was: +0 +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] - add: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] - add: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include] - end of search list found - collapse include dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] ==> [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] - collapse include dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] ==> [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] - collapse include dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include] ==> [/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include] - implicit include dirs: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include;/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed;/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(sh-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_0d627/fast && /usr/bin/gmake -f CMakeFiles/cmTC_0d627.dir/build.make CMakeFiles/cmTC_0d627.dir/build] - ignore line: [gmake[1]: Entering directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj] - ignore line: [/home/sylvain/.local/bin/sh-elf-gcc -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa --dsp -o CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_AS_OPTIONS='--dsp'] - ignore line: [COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc] - ignore line: [Target: sh3eb-elf] - ignore line: [Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3 m4-nofpu --enable-languages=c c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions] - ignore line: [Thread model: single] - ignore line: [Supported LTO compression algorithms: zlib] - ignore line: [gcc version 11.1.0 (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_0d627.dir/'] - ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1 -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_0d627.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -m4-nofpu -mb -version -ffreestanding -o /tmp/ccErjObK.s] - ignore line: [GNU C17 (GCC) version 11.1.0 (sh3eb-elf)] - ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/sys-include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] - ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] - ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include] - ignore line: [End of search list.] - ignore line: [GNU C17 (GCC) version 11.1.0 (sh3eb-elf)] - ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 6a7d324b0cfd85a8a8d168bac1e13bf7] - ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_0d627.dir/'] - ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj /tmp/ccErjObK.s] - ignore line: [COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/] - ignore line: [LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_0d627] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0d627.dir/link.txt --verbose=1] - ignore line: [/home/sylvain/.local/bin/sh-elf-gcc -v -nostdlib -Wl --no-warn-rwx-segments CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj -o cmTC_0d627 -lgcc ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc] - ignore line: [COLLECT_LTO_WRAPPER=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper] - ignore line: [Target: sh3eb-elf] - ignore line: [Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3 m4-nofpu --enable-languages=c c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions] - ignore line: [Thread model: single] - ignore line: [Supported LTO compression algorithms: zlib] - ignore line: [gcc version 11.1.0 (GCC) ] - ignore line: [COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/] - ignore line: [LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_0d627' '-dumpdir' 'cmTC_0d627.'] - link line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZwf86z.res -m shelf -o cmTC_0d627 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj -lgcc] - arg [/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccZwf86z.res] ==> ignore - arg [-m] ==> ignore - arg [shelf] ==> ignore - arg [-o] ==> ignore - arg [cmTC_0d627] ==> ignore - arg [-L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] ==> dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] - arg [-L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] ==> dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] - arg [--no-warn-rwx-segments] ==> ignore - arg [CMakeFiles/cmTC_0d627.dir/CMakeCCompilerABI.c.obj] ==> ignore - arg [-lgcc] ==> lib [gcc] - collapse library dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] ==> [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] - collapse library dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] ==> [/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib] - implicit libs: [gcc] - implicit objs: [] - implicit dirs: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0;/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib] - implicit fwks: [] +The C compiler identification is GNU, found in "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.o" +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +sh-elf-gcc (GCC) 11.1.0 +Copyright (C) 2021 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Detecting CXX compiler ABI info compiled with the following output: Change Dir: /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp -Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_16927/fast && /usr/bin/gmake -f CMakeFiles/cmTC_16927.dir/build.make CMakeFiles/cmTC_16927.dir/build +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_8c036/fast && /usr/bin/gmake -f CMakeFiles/cmTC_8c036.dir/build.make CMakeFiles/cmTC_8c036.dir/build gmake[1]: Entering directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj -/home/sylvain/.local/bin/sh-elf-g++ -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa,--dsp -o CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp +Building CXX object CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj +/home/sylvain/.local/bin/sh-elf-g++ -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa,--dsp -o CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp Using built-in specs. COLLECT_AS_OPTIONS='--dsp' COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-g++ @@ -189,8 +47,8 @@ Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxs Thread model: single Supported LTO compression algorithms: zlib gcc version 11.1.0 (GCC) -COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16927.dir/' - /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1plus -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_16927.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -m4-nofpu -mb -version -ffreestanding -o /tmp/cc5P1XOC.s +COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8c036.dir/' + /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1plus -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_8c036.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -m4-nofpu -mb -version -ffreestanding -o /tmp/ccMrYvxu.s GNU C++17 (GCC) version 11.1.0 (sh3eb-elf) compiled by GNU C version 11.2.0, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP @@ -210,14 +68,14 @@ GNU C++17 (GCC) version 11.1.0 (sh3eb-elf) GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 Compiler executable checksum: cae173bcd94fa9138170fd98f854a2b0 -COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16927.dir/' - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj /tmp/cc5P1XOC.s +COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8c036.dir/' + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccMrYvxu.s COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/ -COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.' -Linking CXX executable cmTC_16927 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_16927.dir/link.txt --verbose=1 -/home/sylvain/.local/bin/sh-elf-g++ -v -nostdlib -Wl,--no-warn-rwx-segments CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_16927 -lgcc +COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.' +Linking CXX executable cmTC_8c036 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8c036.dir/link.txt --verbose=1 +/home/sylvain/.local/bin/sh-elf-g++ -v -nostdlib -Wl,--no-warn-rwx-segments CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_8c036 -lgcc Using built-in specs. COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-g++ COLLECT_LTO_WRAPPER=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper @@ -228,10 +86,10 @@ Supported LTO compression algorithms: zlib gcc version 11.1.0 (GCC) COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/ -COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_16927' '-dumpdir' 'cmTC_16927.' - /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTJYj4T.res -m shelf -o cmTC_16927 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj -lgcc +COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_8c036' '-dumpdir' 'cmTC_8c036.' + /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdO2FM1.res -m shelf -o cmTC_8c036 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj -lgcc /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld: warning: cannot find entry symbol start; defaulting to 0000000000001000 -COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_16927' '-dumpdir' 'cmTC_16927.' +COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_8c036' '-dumpdir' 'cmTC_8c036.' gmake[1]: Leaving directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp' @@ -259,10 +117,10 @@ Parsed CXX implicit link information from above output: link line regex: [^( *|.*[/\])(sh-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ignore line: [Change Dir: /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_16927/fast && /usr/bin/gmake -f CMakeFiles/cmTC_16927.dir/build.make CMakeFiles/cmTC_16927.dir/build] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_8c036/fast && /usr/bin/gmake -f CMakeFiles/cmTC_8c036.dir/build.make CMakeFiles/cmTC_8c036.dir/build] ignore line: [gmake[1]: Entering directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj] - ignore line: [/home/sylvain/.local/bin/sh-elf-g++ -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa --dsp -o CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Building CXX object CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [/home/sylvain/.local/bin/sh-elf-g++ -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa --dsp -o CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj -c /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ignore line: [Using built-in specs.] ignore line: [COLLECT_AS_OPTIONS='--dsp'] ignore line: [COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-g++] @@ -271,8 +129,8 @@ Parsed CXX implicit link information from above output: ignore line: [Thread model: single] ignore line: [Supported LTO compression algorithms: zlib] ignore line: [gcc version 11.1.0 (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16927.dir/'] - ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1plus -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_16927.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -m4-nofpu -mb -version -ffreestanding -o /tmp/cc5P1XOC.s] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8c036.dir/'] + ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1plus -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_8c036.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -m4-nofpu -mb -version -ffreestanding -o /tmp/ccMrYvxu.s] ignore line: [GNU C++17 (GCC) version 11.1.0 (sh3eb-elf)] ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] ignore line: [] @@ -292,14 +150,14 @@ Parsed CXX implicit link information from above output: ignore line: [] ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] ignore line: [Compiler executable checksum: cae173bcd94fa9138170fd98f854a2b0] - ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16927.dir/'] - ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj /tmp/cc5P1XOC.s] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8c036.dir/'] + ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj /tmp/ccMrYvxu.s] ignore line: [COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/] ignore line: [LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_16927] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_16927.dir/link.txt --verbose=1] - ignore line: [/home/sylvain/.local/bin/sh-elf-g++ -v -nostdlib -Wl --no-warn-rwx-segments CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_16927 -lgcc ] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.'] + ignore line: [Linking CXX executable cmTC_8c036] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8c036.dir/link.txt --verbose=1] + ignore line: [/home/sylvain/.local/bin/sh-elf-g++ -v -nostdlib -Wl --no-warn-rwx-segments CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_8c036 -lgcc ] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-g++] ignore line: [COLLECT_LTO_WRAPPER=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper] @@ -310,21 +168,169 @@ Parsed CXX implicit link information from above output: ignore line: [gcc version 11.1.0 (GCC) ] ignore line: [COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/] ignore line: [LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_16927' '-dumpdir' 'cmTC_16927.'] - link line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTJYj4T.res -m shelf -o cmTC_16927 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj -lgcc] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_8c036' '-dumpdir' 'cmTC_8c036.'] + link line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdO2FM1.res -m shelf -o cmTC_8c036 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj -lgcc] arg [/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2] ==> ignore arg [-plugin] ==> ignore arg [/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so] ==> ignore arg [-plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccTJYj4T.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccdO2FM1.res] ==> ignore arg [-m] ==> ignore arg [shelf] ==> ignore arg [-o] ==> ignore - arg [cmTC_16927] ==> ignore + arg [cmTC_8c036] ==> ignore arg [-L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] ==> dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] arg [-L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] ==> dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] arg [--no-warn-rwx-segments] ==> ignore - arg [CMakeFiles/cmTC_16927.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [CMakeFiles/cmTC_8c036.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + collapse library dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] ==> [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] + collapse library dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] ==> [/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib] + implicit libs: [gcc] + implicit objs: [] + implicit dirs: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0;/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib] + implicit fwks: [] + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_b7d7b/fast && /usr/bin/gmake -f CMakeFiles/cmTC_b7d7b.dir/build.make CMakeFiles/cmTC_b7d7b.dir/build +gmake[1]: Entering directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj +/home/sylvain/.local/bin/sh-elf-gcc -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa,--dsp -o CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_AS_OPTIONS='--dsp' +COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc +Target: sh3eb-elf +Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3,m4-nofpu --enable-languages=c,c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions +Thread model: single +Supported LTO compression algorithms: zlib +gcc version 11.1.0 (GCC) +COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7d7b.dir/' + /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1 -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_b7d7b.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -m4-nofpu -mb -version -ffreestanding -o /tmp/ccPQQWPU.s +GNU C17 (GCC) version 11.1.0 (sh3eb-elf) + compiled by GNU C version 11.2.0, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/sys-include" +#include "..." search starts here: +#include <...> search starts here: + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include +End of search list. +GNU C17 (GCC) version 11.1.0 (sh3eb-elf) + compiled by GNU C version 11.2.0, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 6a7d324b0cfd85a8a8d168bac1e13bf7 +COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7d7b.dir/' + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj /tmp/ccPQQWPU.s +COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ +LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/ +COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.' +Linking C executable cmTC_b7d7b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7d7b.dir/link.txt --verbose=1 +/home/sylvain/.local/bin/sh-elf-gcc -v -nostdlib -Wl,--no-warn-rwx-segments CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj -o cmTC_b7d7b -lgcc +Using built-in specs. +COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc +COLLECT_LTO_WRAPPER=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper +Target: sh3eb-elf +Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3,m4-nofpu --enable-languages=c,c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions +Thread model: single +Supported LTO compression algorithms: zlib +gcc version 11.1.0 (GCC) +COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ +LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/ +COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_b7d7b' '-dumpdir' 'cmTC_b7d7b.' + /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTOMTuX.res -m shelf -o cmTC_b7d7b -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj -lgcc +/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/ld: warning: cannot find entry symbol start; defaulting to 0000000000001000 +COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_b7d7b' '-dumpdir' 'cmTC_b7d7b.' +gmake[1]: Leaving directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] + add: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] + add: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include] + end of search list found + collapse include dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] ==> [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] + collapse include dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] ==> [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] + collapse include dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include] ==> [/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include] + implicit include dirs: [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include;/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed;/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(sh-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_b7d7b/fast && /usr/bin/gmake -f CMakeFiles/cmTC_b7d7b.dir/build.make CMakeFiles/cmTC_b7d7b.dir/build] + ignore line: [gmake[1]: Entering directory '/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj] + ignore line: [/home/sylvain/.local/bin/sh-elf-gcc -DTARGET_FXCG50 -v -m4-nofpu -mb -ffreestanding -nostdlib -Wa --dsp -o CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj -c /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_AS_OPTIONS='--dsp'] + ignore line: [COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc] + ignore line: [Target: sh3eb-elf] + ignore line: [Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3 m4-nofpu --enable-languages=c c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions] + ignore line: [Thread model: single] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.1.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7d7b.dir/'] + ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/cc1 -quiet -v -imultilib m4-nofpu -D TARGET_FXCG50 /usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_b7d7b.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -m4-nofpu -mb -version -ffreestanding -o /tmp/ccPQQWPU.s] + ignore line: [GNU C17 (GCC) version 11.1.0 (sh3eb-elf)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/sys-include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include] + ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include-fixed] + ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (GCC) version 11.1.0 (sh3eb-elf)] + ignore line: [ compiled by GNU C version 11.2.0 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 6a7d324b0cfd85a8a8d168bac1e13bf7] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7d7b.dir/'] + ignore line: [ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/as -big --isa=sh4a-nofpu --dsp -o CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj /tmp/ccPQQWPU.s] + ignore line: [COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/] + ignore line: [LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/m4-nofpu/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'TARGET_FXCG50' '-v' '-m4-nofpu' '-mb' '-ffreestanding' '-nostdlib' '-o' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_b7d7b] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7d7b.dir/link.txt --verbose=1] + ignore line: [/home/sylvain/.local/bin/sh-elf-gcc -v -nostdlib -Wl --no-warn-rwx-segments CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj -o cmTC_b7d7b -lgcc ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/sylvain/.local/bin/sh-elf-gcc] + ignore line: [COLLECT_LTO_WRAPPER=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper] + ignore line: [Target: sh3eb-elf] + ignore line: [Configured with: ../gcc-11.1.0/configure --prefix=/home/sylvain/.local/share/fxsdk/sysroot --target=sh3eb-elf --with-multilib-list=m3 m4-nofpu --enable-languages=c c++ --without-headers --program-prefix=sh-elf- --enable-libssp --enable-lto --enable-clocale=generic --enable-libstdcxx-allocator --disable-threads --disable-libstdcxx-verbose --enable-cxx-flags=-fno-exceptions] + ignore line: [Thread model: single] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 11.1.0 (GCC) ] + ignore line: [COMPILER_PATH=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/bin/] + ignore line: [LIBRARY_PATH=/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/:/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-nostdlib' '-o' 'cmTC_b7d7b' '-dumpdir' 'cmTC_b7d7b.'] + link line: [ /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2 -plugin /home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so -plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTOMTuX.res -m shelf -o cmTC_b7d7b -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0 -L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib --no-warn-rwx-segments CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj -lgcc] + arg [/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/sylvain/.local/share/fxsdk/sysroot/libexec/gcc/sh3eb-elf/11.1.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccTOMTuX.res] ==> ignore + arg [-m] ==> ignore + arg [shelf] ==> ignore + arg [-o] ==> ignore + arg [cmTC_b7d7b] ==> ignore + arg [-L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] ==> dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] + arg [-L/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] ==> dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] + arg [--no-warn-rwx-segments] ==> ignore + arg [CMakeFiles/cmTC_b7d7b.dir/CMakeCCompilerABI.c.obj] ==> ignore arg [-lgcc] ==> lib [gcc] collapse library dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] ==> [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0] collapse library dir [/home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib] ==> [/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib] diff --git a/build-cg/CMakeFiles/Makefile.cmake b/build-cg/CMakeFiles/Makefile.cmake index d78d478..064e4cb 100644 --- a/build-cg/CMakeFiles/Makefile.cmake +++ b/build-cg/CMakeFiles/Makefile.cmake @@ -12,17 +12,20 @@ set(CMAKE_MAKEFILE_DEPENDS "/home/sylvain/.local/lib/cmake/fxsdk/CMakeFXCONVInformation.cmake" "/home/sylvain/.local/lib/cmake/fxsdk/CMakeTestFXCONVCompiler.cmake" "/home/sylvain/.local/lib/cmake/fxsdk/FXCG50.cmake" + "/home/sylvain/.local/lib/cmake/fxsdk/FindAzur.cmake" "/home/sylvain/.local/lib/cmake/fxsdk/FindGint.cmake" "/home/sylvain/.local/lib/cmake/fxsdk/FindLibProf.cmake" "/home/sylvain/.local/lib/cmake/fxsdk/FindSimpleLibrary.cmake" "/home/sylvain/.local/lib/cmake/fxsdk/Fxconv.cmake" - "/home/sylvain/.local/lib/cmake/fxsdk/GenerateG1A.cmake" "/home/sylvain/.local/lib/cmake/fxsdk/GenerateG3A.cmake" "../CMakeLists.txt" + "CMakeFiles/3.22.1/CMakeASMCompiler.cmake" "CMakeFiles/3.22.1/CMakeCCompiler.cmake" "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" "CMakeFiles/3.22.1/CMakeFXCONVCompiler.cmake" "CMakeFiles/3.22.1/CMakeSystem.cmake" + "/usr/share/cmake-3.22/Modules/CMakeASMCompiler.cmake.in" + "/usr/share/cmake-3.22/Modules/CMakeASMInformation.cmake" "/usr/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" "/usr/share/cmake-3.22/Modules/CMakeCCompilerABI.c" "/usr/share/cmake-3.22/Modules/CMakeCInformation.cmake" @@ -31,6 +34,7 @@ set(CMAKE_MAKEFILE_DEPENDS "/usr/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" "/usr/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" "/usr/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.22/Modules/CMakeDetermineASMCompiler.cmake" "/usr/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" "/usr/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" "/usr/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" @@ -48,6 +52,7 @@ set(CMAKE_MAKEFILE_DEPENDS "/usr/share/cmake-3.22/Modules/CMakeSystem.cmake.in" "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" "/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.22/Modules/CMakeTestASMCompiler.cmake" "/usr/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" "/usr/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" "/usr/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" @@ -69,6 +74,7 @@ set(CMAKE_MAKEFILE_DEPENDS "/usr/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" "/usr/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" "/usr/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.22/Modules/Compiler/GNU-ASM.cmake" "/usr/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" "/usr/share/cmake-3.22/Modules/Compiler/GNU-C.cmake" "/usr/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" @@ -118,15 +124,16 @@ set(CMAKE_MAKEFILE_OUTPUTS # Byproducts of CMake generate step: set(CMAKE_MAKEFILE_PRODUCTS "CMakeFiles/3.22.1/CMakeSystem.cmake" - "CMakeFiles/3.22.1/CMakeCCompiler.cmake" "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" "CMakeFiles/3.22.1/CMakeCCompiler.cmake" + "CMakeFiles/3.22.1/CMakeASMCompiler.cmake" "CMakeFiles/3.22.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.22.1/CMakeCCompiler.cmake" "CMakeFiles/3.22.1/CMakeFXCONVCompiler.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake" ) # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/myaddin.dir/DependInfo.cmake" + "CMakeFiles/shmup.dir/DependInfo.cmake" ) diff --git a/build-cg/CMakeFiles/Makefile2 b/build-cg/CMakeFiles/Makefile2 index 843b1b5..f955bfc 100644 --- a/build-cg/CMakeFiles/Makefile2 +++ b/build-cg/CMakeFiles/Makefile2 @@ -63,7 +63,7 @@ CMAKE_BINARY_DIR = /home/sylvain/Programmes/Casio/shmup/build-cg # Directory level rules for the build root directory # The main recursive "all" target. -all: CMakeFiles/myaddin.dir/all +all: CMakeFiles/shmup.dir/all .PHONY : all # The main recursive "preinstall" target. @@ -71,34 +71,34 @@ preinstall: .PHONY : preinstall # The main recursive "clean" target. -clean: CMakeFiles/myaddin.dir/clean +clean: CMakeFiles/shmup.dir/clean .PHONY : clean #============================================================================= -# Target rules for target CMakeFiles/myaddin.dir +# Target rules for target CMakeFiles/shmup.dir # All Build rule for target. -CMakeFiles/myaddin.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/myaddin.dir/build.make CMakeFiles/myaddin.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/myaddin.dir/build.make CMakeFiles/myaddin.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=1,2 "Built target myaddin" -.PHONY : CMakeFiles/myaddin.dir/all +CMakeFiles/shmup.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12 "Built target shmup" +.PHONY : CMakeFiles/shmup.dir/all # Build rule for subdir invocation for target. -CMakeFiles/myaddin.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/myaddin.dir/all +CMakeFiles/shmup.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles 12 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/shmup.dir/all $(CMAKE_COMMAND) -E cmake_progress_start /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles 0 -.PHONY : CMakeFiles/myaddin.dir/rule +.PHONY : CMakeFiles/shmup.dir/rule # Convenience name for target. -myaddin: CMakeFiles/myaddin.dir/rule -.PHONY : myaddin +shmup: CMakeFiles/shmup.dir/rule +.PHONY : shmup # clean rule for target. -CMakeFiles/myaddin.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/myaddin.dir/build.make CMakeFiles/myaddin.dir/clean -.PHONY : CMakeFiles/myaddin.dir/clean +CMakeFiles/shmup.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/clean +.PHONY : CMakeFiles/shmup.dir/clean #============================================================================= # Special targets to cleanup operation of make. diff --git a/build-cg/CMakeFiles/TargetDirectories.txt b/build-cg/CMakeFiles/TargetDirectories.txt index 718a9c8..ce591ed 100644 --- a/build-cg/CMakeFiles/TargetDirectories.txt +++ b/build-cg/CMakeFiles/TargetDirectories.txt @@ -1,3 +1,3 @@ -/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/myaddin.dir +/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/edit_cache.dir /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/rebuild_cache.dir diff --git a/build-cg/CMakeFiles/myaddin.dir/DependInfo.cmake b/build-cg/CMakeFiles/myaddin.dir/DependInfo.cmake deleted file mode 100644 index 65e9940..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/DependInfo.cmake +++ /dev/null @@ -1,19 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/sylvain/Programmes/Casio/shmup/src/main.cc" "CMakeFiles/myaddin.dir/src/main.cc.obj" "gcc" "CMakeFiles/myaddin.dir/src/main.cc.obj.d" - ) - -# Targets to which this target links. -set(CMAKE_TARGET_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build-cg/CMakeFiles/myaddin.dir/build.make b/build-cg/CMakeFiles/myaddin.dir/build.make deleted file mode 100644 index 1c80dfa..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/build.make +++ /dev/null @@ -1,119 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.22 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/sylvain/Programmes/Casio/shmup - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/sylvain/Programmes/Casio/shmup/build-cg - -# Include any dependencies generated for this target. -include CMakeFiles/myaddin.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/myaddin.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/myaddin.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/myaddin.dir/flags.make - -CMakeFiles/myaddin.dir/src/main.cc.obj: CMakeFiles/myaddin.dir/flags.make -CMakeFiles/myaddin.dir/src/main.cc.obj: ../src/main.cc -CMakeFiles/myaddin.dir/src/main.cc.obj: CMakeFiles/myaddin.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/myaddin.dir/src/main.cc.obj" - /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/myaddin.dir/src/main.cc.obj -MF CMakeFiles/myaddin.dir/src/main.cc.obj.d -o CMakeFiles/myaddin.dir/src/main.cc.obj -c /home/sylvain/Programmes/Casio/shmup/src/main.cc - -CMakeFiles/myaddin.dir/src/main.cc.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/myaddin.dir/src/main.cc.i" - /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/sylvain/Programmes/Casio/shmup/src/main.cc > CMakeFiles/myaddin.dir/src/main.cc.i - -CMakeFiles/myaddin.dir/src/main.cc.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/myaddin.dir/src/main.cc.s" - /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/sylvain/Programmes/Casio/shmup/src/main.cc -o CMakeFiles/myaddin.dir/src/main.cc.s - -# Object files for target myaddin -myaddin_OBJECTS = \ -"CMakeFiles/myaddin.dir/src/main.cc.obj" - -# External object files for target myaddin -myaddin_EXTERNAL_OBJECTS = - -myaddin: CMakeFiles/myaddin.dir/src/main.cc.obj -myaddin: CMakeFiles/myaddin.dir/build.make -myaddin: /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a -myaddin: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a -myaddin: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a -myaddin: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a -myaddin: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a -myaddin: ../assets-cg/icon-uns.png -myaddin: ../assets-cg/icon-sel.png -myaddin: CMakeFiles/myaddin.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable myaddin" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/myaddin.dir/link.txt --verbose=$(VERBOSE) - /home/sylvain/.local/bin/sh-elf-objcopy -O binary -R .bss -R .gint_bss myaddin myaddin.bin - fxgxa --g3a -n MyShmup --icon-uns=/home/sylvain/Programmes/Casio/shmup/assets-cg/icon-uns.png --icon-sel=/home/sylvain/Programmes/Casio/shmup/assets-cg/icon-sel.png myaddin.bin -o /home/sylvain/Programmes/Casio/shmup/MyShmup.g3a - -# Rule to build all files generated by this target. -CMakeFiles/myaddin.dir/build: myaddin -.PHONY : CMakeFiles/myaddin.dir/build - -CMakeFiles/myaddin.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/myaddin.dir/cmake_clean.cmake -.PHONY : CMakeFiles/myaddin.dir/clean - -CMakeFiles/myaddin.dir/depend: - cd /home/sylvain/Programmes/Casio/shmup/build-cg && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/sylvain/Programmes/Casio/shmup /home/sylvain/Programmes/Casio/shmup /home/sylvain/Programmes/Casio/shmup/build-cg /home/sylvain/Programmes/Casio/shmup/build-cg /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/myaddin.dir/DependInfo.cmake --color=$(COLOR) -.PHONY : CMakeFiles/myaddin.dir/depend - diff --git a/build-cg/CMakeFiles/myaddin.dir/cmake_clean.cmake b/build-cg/CMakeFiles/myaddin.dir/cmake_clean.cmake deleted file mode 100644 index d752c86..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/cmake_clean.cmake +++ /dev/null @@ -1,11 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/myaddin.dir/src/main.cc.obj" - "CMakeFiles/myaddin.dir/src/main.cc.obj.d" - "myaddin" - "myaddin.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/myaddin.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build-cg/CMakeFiles/myaddin.dir/compiler_depend.make b/build-cg/CMakeFiles/myaddin.dir/compiler_depend.make deleted file mode 100644 index c186c21..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for myaddin. -# This may be replaced when dependencies are built. diff --git a/build-cg/CMakeFiles/myaddin.dir/depend.make b/build-cg/CMakeFiles/myaddin.dir/depend.make deleted file mode 100644 index 90b6f00..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for myaddin. -# This may be replaced when dependencies are built. diff --git a/build-cg/CMakeFiles/myaddin.dir/flags.make b/build-cg/CMakeFiles/myaddin.dir/flags.make deleted file mode 100644 index 5c7e28f..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.22 - -# compile CXX with /home/sylvain/.local/bin/sh-elf-g++ -CXX_DEFINES = -DFXCG50 -DTARGET_FXCG50 - -CXX_INCLUDES = - -CXX_FLAGS = -m4-nofpu -mb -ffreestanding -nostdlib -Wa,--dsp -Wall -Wextra -Os -std=c++11 -c -fstrict-volatile-bitfields - diff --git a/build-cg/CMakeFiles/myaddin.dir/link.txt b/build-cg/CMakeFiles/myaddin.dir/link.txt deleted file mode 100644 index 2ccd64a..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/home/sylvain/.local/bin/sh-elf-g++ -nostdlib -Wl,--no-warn-rwx-segments -Wl,-Map=Build_Addin.map -lprof-cg -T fxcg50.ld -lgcc CMakeFiles/myaddin.dir/src/main.cc.obj -o myaddin -lgcc -lgcc /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a -lstdc++ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a -lopenlibm -lgcc diff --git a/build-cg/CMakeFiles/myaddin.dir/progress.make b/build-cg/CMakeFiles/myaddin.dir/progress.make deleted file mode 100644 index abadeb0..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 - diff --git a/build-cg/CMakeFiles/myaddin.dir/src/main.cc.obj b/build-cg/CMakeFiles/myaddin.dir/src/main.cc.obj deleted file mode 100644 index a974582..0000000 Binary files a/build-cg/CMakeFiles/myaddin.dir/src/main.cc.obj and /dev/null differ diff --git a/build-cg/CMakeFiles/myaddin.dir/src/main.cc.obj.d b/build-cg/CMakeFiles/myaddin.dir/src/main.cc.obj.d deleted file mode 100644 index 6b98516..0000000 --- a/build-cg/CMakeFiles/myaddin.dir/src/main.cc.obj.d +++ /dev/null @@ -1,28 +0,0 @@ -CMakeFiles/myaddin.dir/src/main.cc.obj: \ - /home/sylvain/Programmes/Casio/shmup/src/main.cc \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/types.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/attributes.h \ - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stddef.h \ - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint.h \ - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint-gcc.h \ - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdbool.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/sys/types.h \ - /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdarg.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/call.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display-cg.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/image.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/drivers/r61524.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/keyboard.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/keycodes.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/fxlibc/printf.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/stdio.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/libprof.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/usb.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/timeout.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/time.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/gint.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/config.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/intc.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/endian.h \ - /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/usb-ff-bulk.h diff --git a/build-cg/CMakeFiles/progress.marks b/build-cg/CMakeFiles/progress.marks index 0cfbf08..48082f7 100644 --- a/build-cg/CMakeFiles/progress.marks +++ b/build-cg/CMakeFiles/progress.marks @@ -1 +1 @@ -2 +12 diff --git a/build-cg/CMakeFiles/shmup.dir/DependInfo.cmake b/build-cg/CMakeFiles/shmup.dir/DependInfo.cmake new file mode 100644 index 0000000..26bb06c --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/DependInfo.cmake @@ -0,0 +1,44 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "FXCONV" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_FXCONV + "/home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/emp_circ.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o" + "/home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_0.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o" + "/home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_1.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o" + "/home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_2.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o" + "/home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_3.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o" + "/home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_4.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o" + "/home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_5.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o" + "/home/sylvain/Programmes/Casio/shmup/assets-cg/font.png" "/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/assets-cg/font.png.o" + ) + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_FXCONV + "FXCG50" + "TARGET_FXCG50" + ) + +# The include file search paths: +set(CMAKE_FXCONV_TARGET_INCLUDE_PATH + "/home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include" + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/sylvain/Programmes/Casio/shmup/src/main.cpp" "CMakeFiles/shmup.dir/src/main.cpp.obj" "gcc" "CMakeFiles/shmup.dir/src/main.cpp.obj.d" + "/home/sylvain/Programmes/Casio/shmup/src/particles.cpp" "CMakeFiles/shmup.dir/src/particles.cpp.obj" "gcc" "CMakeFiles/shmup.dir/src/particles.cpp.obj.d" + "/home/sylvain/Programmes/Casio/shmup/src/utilities.cpp" "CMakeFiles/shmup.dir/src/utilities.cpp.obj" "gcc" "CMakeFiles/shmup.dir/src/utilities.cpp.obj.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o new file mode 100644 index 0000000..0c77613 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o new file mode 100644 index 0000000..c8b7b06 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o new file mode 100644 index 0000000..59324c5 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o new file mode 100644 index 0000000..fbf9703 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o new file mode 100644 index 0000000..95a8107 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o new file mode 100644 index 0000000..cd73584 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o new file mode 100644 index 0000000..35ab5e9 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/assets-cg/font.png.o b/build-cg/CMakeFiles/shmup.dir/assets-cg/font.png.o new file mode 100644 index 0000000..0d86d10 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/assets-cg/font.png.o differ diff --git a/build-cg/CMakeFiles/shmup.dir/build.make b/build-cg/CMakeFiles/shmup.dir/build.make new file mode 100644 index 0000000..ed0a828 --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/build.make @@ -0,0 +1,216 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/sylvain/Programmes/Casio/shmup + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/sylvain/Programmes/Casio/shmup/build-cg + +# Include any dependencies generated for this target. +include CMakeFiles/shmup.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/shmup.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/shmup.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/shmup.dir/flags.make + +CMakeFiles/shmup.dir/src/main.cpp.obj: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/src/main.cpp.obj: ../src/main.cpp +CMakeFiles/shmup.dir/src/main.cpp.obj: CMakeFiles/shmup.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/shmup.dir/src/main.cpp.obj" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/shmup.dir/src/main.cpp.obj -MF CMakeFiles/shmup.dir/src/main.cpp.obj.d -o CMakeFiles/shmup.dir/src/main.cpp.obj -c /home/sylvain/Programmes/Casio/shmup/src/main.cpp + +CMakeFiles/shmup.dir/src/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/shmup.dir/src/main.cpp.i" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/sylvain/Programmes/Casio/shmup/src/main.cpp > CMakeFiles/shmup.dir/src/main.cpp.i + +CMakeFiles/shmup.dir/src/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/shmup.dir/src/main.cpp.s" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/sylvain/Programmes/Casio/shmup/src/main.cpp -o CMakeFiles/shmup.dir/src/main.cpp.s + +CMakeFiles/shmup.dir/src/utilities.cpp.obj: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/src/utilities.cpp.obj: ../src/utilities.cpp +CMakeFiles/shmup.dir/src/utilities.cpp.obj: CMakeFiles/shmup.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/shmup.dir/src/utilities.cpp.obj" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/shmup.dir/src/utilities.cpp.obj -MF CMakeFiles/shmup.dir/src/utilities.cpp.obj.d -o CMakeFiles/shmup.dir/src/utilities.cpp.obj -c /home/sylvain/Programmes/Casio/shmup/src/utilities.cpp + +CMakeFiles/shmup.dir/src/utilities.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/shmup.dir/src/utilities.cpp.i" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/sylvain/Programmes/Casio/shmup/src/utilities.cpp > CMakeFiles/shmup.dir/src/utilities.cpp.i + +CMakeFiles/shmup.dir/src/utilities.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/shmup.dir/src/utilities.cpp.s" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/sylvain/Programmes/Casio/shmup/src/utilities.cpp -o CMakeFiles/shmup.dir/src/utilities.cpp.s + +CMakeFiles/shmup.dir/src/particles.cpp.obj: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/src/particles.cpp.obj: ../src/particles.cpp +CMakeFiles/shmup.dir/src/particles.cpp.obj: CMakeFiles/shmup.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/shmup.dir/src/particles.cpp.obj" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/shmup.dir/src/particles.cpp.obj -MF CMakeFiles/shmup.dir/src/particles.cpp.obj.d -o CMakeFiles/shmup.dir/src/particles.cpp.obj -c /home/sylvain/Programmes/Casio/shmup/src/particles.cpp + +CMakeFiles/shmup.dir/src/particles.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/shmup.dir/src/particles.cpp.i" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/sylvain/Programmes/Casio/shmup/src/particles.cpp > CMakeFiles/shmup.dir/src/particles.cpp.i + +CMakeFiles/shmup.dir/src/particles.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/shmup.dir/src/particles.cpp.s" + /home/sylvain/.local/bin/sh-elf-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/sylvain/Programmes/Casio/shmup/src/particles.cpp -o CMakeFiles/shmup.dir/src/particles.cpp.s + +CMakeFiles/shmup.dir/assets-cg/font.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/font.png.o: ../assets-cg/font.png +CMakeFiles/shmup.dir/assets-cg/font.png.o: ../assets-cg/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/font.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/font.png -o CMakeFiles/shmup.dir/assets-cg/font.png.o + +CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o: ../assets-cg/Sprites/emp_circ.png +CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o: ../assets-cg/Sprites/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/emp_circ.png -o CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o + +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o: ../assets-cg/Sprites/fill_circ_0.png +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o: ../assets-cg/Sprites/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_0.png -o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o + +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o: ../assets-cg/Sprites/fill_circ_1.png +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o: ../assets-cg/Sprites/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_1.png -o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o + +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o: ../assets-cg/Sprites/fill_circ_2.png +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o: ../assets-cg/Sprites/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_2.png -o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o + +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o: ../assets-cg/Sprites/fill_circ_3.png +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o: ../assets-cg/Sprites/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_3.png -o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o + +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o: ../assets-cg/Sprites/fill_circ_4.png +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o: ../assets-cg/Sprites/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_4.png -o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o + +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o: CMakeFiles/shmup.dir/flags.make +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o: ../assets-cg/Sprites/fill_circ_5.png +CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o: ../assets-cg/Sprites/fxconv-metadata.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building FXCONV object CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o" + /home/sylvain/.local/bin/fxconv --toolchain=sh-elf --cg /home/sylvain/Programmes/Casio/shmup/assets-cg/Sprites/fill_circ_5.png -o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o + +# Object files for target shmup +shmup_OBJECTS = \ +"CMakeFiles/shmup.dir/src/main.cpp.obj" \ +"CMakeFiles/shmup.dir/src/utilities.cpp.obj" \ +"CMakeFiles/shmup.dir/src/particles.cpp.obj" \ +"CMakeFiles/shmup.dir/assets-cg/font.png.o" \ +"CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o" \ +"CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o" \ +"CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o" \ +"CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o" \ +"CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o" \ +"CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o" \ +"CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o" + +# External object files for target shmup +shmup_EXTERNAL_OBJECTS = + +shmup: CMakeFiles/shmup.dir/src/main.cpp.obj +shmup: CMakeFiles/shmup.dir/src/utilities.cpp.obj +shmup: CMakeFiles/shmup.dir/src/particles.cpp.obj +shmup: CMakeFiles/shmup.dir/assets-cg/font.png.o +shmup: CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o +shmup: CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o +shmup: CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o +shmup: CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o +shmup: CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o +shmup: CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o +shmup: CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o +shmup: CMakeFiles/shmup.dir/build.make +shmup: /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a +shmup: /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a +shmup: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a +shmup: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a +shmup: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a +shmup: /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a +shmup: ../assets-cg/icon-uns.png +shmup: ../assets-cg/icon-sel.png +shmup: CMakeFiles/shmup.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Linking CXX executable shmup" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/shmup.dir/link.txt --verbose=$(VERBOSE) + /home/sylvain/.local/bin/sh-elf-objcopy -O binary -R .bss -R .gint_bss shmup shmup.bin + fxgxa --g3a -n MyShmup --icon-uns=/home/sylvain/Programmes/Casio/shmup/assets-cg/icon-uns.png --icon-sel=/home/sylvain/Programmes/Casio/shmup/assets-cg/icon-sel.png shmup.bin -o /home/sylvain/Programmes/Casio/shmup/MyShmup.g3a + +# Rule to build all files generated by this target. +CMakeFiles/shmup.dir/build: shmup +.PHONY : CMakeFiles/shmup.dir/build + +CMakeFiles/shmup.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/shmup.dir/cmake_clean.cmake +.PHONY : CMakeFiles/shmup.dir/clean + +CMakeFiles/shmup.dir/depend: + cd /home/sylvain/Programmes/Casio/shmup/build-cg && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/sylvain/Programmes/Casio/shmup /home/sylvain/Programmes/Casio/shmup /home/sylvain/Programmes/Casio/shmup/build-cg /home/sylvain/Programmes/Casio/shmup/build-cg /home/sylvain/Programmes/Casio/shmup/build-cg/CMakeFiles/shmup.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/shmup.dir/depend + diff --git a/build-cg/CMakeFiles/shmup.dir/cmake_clean.cmake b/build-cg/CMakeFiles/shmup.dir/cmake_clean.cmake new file mode 100644 index 0000000..1e86460 --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/cmake_clean.cmake @@ -0,0 +1,23 @@ +file(REMOVE_RECURSE + "CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o" + "CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o" + "CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o" + "CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o" + "CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o" + "CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o" + "CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o" + "CMakeFiles/shmup.dir/assets-cg/font.png.o" + "CMakeFiles/shmup.dir/src/main.cpp.obj" + "CMakeFiles/shmup.dir/src/main.cpp.obj.d" + "CMakeFiles/shmup.dir/src/particles.cpp.obj" + "CMakeFiles/shmup.dir/src/particles.cpp.obj.d" + "CMakeFiles/shmup.dir/src/utilities.cpp.obj" + "CMakeFiles/shmup.dir/src/utilities.cpp.obj.d" + "shmup" + "shmup.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX FXCONV) + include(CMakeFiles/shmup.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/build-cg/CMakeFiles/shmup.dir/compiler_depend.make b/build-cg/CMakeFiles/shmup.dir/compiler_depend.make new file mode 100644 index 0000000..760fa0e --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for shmup. +# This may be replaced when dependencies are built. diff --git a/build-cg/CMakeFiles/myaddin.dir/compiler_depend.ts b/build-cg/CMakeFiles/shmup.dir/compiler_depend.ts similarity index 88% rename from build-cg/CMakeFiles/myaddin.dir/compiler_depend.ts rename to build-cg/CMakeFiles/shmup.dir/compiler_depend.ts index d0c4c08..0acdd35 100644 --- a/build-cg/CMakeFiles/myaddin.dir/compiler_depend.ts +++ b/build-cg/CMakeFiles/shmup.dir/compiler_depend.ts @@ -1,2 +1,2 @@ # CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for myaddin. +# Timestamp file for compiler generated dependencies management for shmup. diff --git a/build-cg/CMakeFiles/shmup.dir/depend.internal b/build-cg/CMakeFiles/shmup.dir/depend.internal new file mode 100644 index 0000000..1d1e81a --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/depend.internal @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + diff --git a/build-cg/CMakeFiles/shmup.dir/depend.make b/build-cg/CMakeFiles/shmup.dir/depend.make new file mode 100644 index 0000000..1d1e81a --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/depend.make @@ -0,0 +1,3 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + diff --git a/build-cg/CMakeFiles/shmup.dir/flags.make b/build-cg/CMakeFiles/shmup.dir/flags.make new file mode 100644 index 0000000..df00ebf --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/flags.make @@ -0,0 +1,17 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.22 + +# compile CXX with /home/sylvain/.local/bin/sh-elf-g++ +# compile FXCONV with /home/sylvain/.local/bin/fxconv +CXX_DEFINES = -DFXCG50 -DTARGET_FXCG50 + +CXX_INCLUDES = + +CXX_FLAGS = -m4-nofpu -mb -ffreestanding -nostdlib -Wa,--dsp -Wall -Wextra -Os -std=c++20 -DAZUR_PLATFORM=gint -fstrict-volatile-bitfields + +FXCONV_DEFINES = -DFXCG50 -DTARGET_FXCG50 + +FXCONV_INCLUDES = /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include + +FXCONV_FLAGS = -m4-nofpu -mb -ffreestanding -nostdlib -Wa,--dsp -Wall -Wextra -Os -std=c++20 -DAZUR_PLATFORM=gint -fstrict-volatile-bitfields + diff --git a/build-cg/CMakeFiles/shmup.dir/link.txt b/build-cg/CMakeFiles/shmup.dir/link.txt new file mode 100644 index 0000000..5b7287d --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/link.txt @@ -0,0 +1 @@ +/home/sylvain/.local/bin/sh-elf-g++ -nostdlib -Wl,--no-warn-rwx-segments -Wl,-Map=Build_Addin.map -Wl,--print-memory-usage -lprof-cg -T fxcg50.ld -lgcc CMakeFiles/shmup.dir/src/main.cpp.obj CMakeFiles/shmup.dir/src/utilities.cpp.obj CMakeFiles/shmup.dir/src/particles.cpp.obj CMakeFiles/shmup.dir/assets-cg/font.png.o CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o -o shmup -lgcc -lgcc /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libazur_gint.a -lnum /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/lib/libprof-cg.a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a -lstdc++ /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libgint-cg.a /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/../../../../sh3eb-elf/lib/libc.a -lopenlibm -lgcc diff --git a/build-cg/CMakeFiles/shmup.dir/progress.make b/build-cg/CMakeFiles/shmup.dir/progress.make new file mode 100644 index 0000000..5d4d464 --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/progress.make @@ -0,0 +1,13 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 + diff --git a/build-cg/CMakeFiles/shmup.dir/src/main.cpp.obj b/build-cg/CMakeFiles/shmup.dir/src/main.cpp.obj new file mode 100644 index 0000000..dbee176 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/src/main.cpp.obj differ diff --git a/build-cg/CMakeFiles/shmup.dir/src/main.cpp.obj.d b/build-cg/CMakeFiles/shmup.dir/src/main.cpp.obj.d new file mode 100644 index 0000000..deb4f56 --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/src/main.cpp.obj.d @@ -0,0 +1,94 @@ +CMakeFiles/shmup.dir/src/main.cpp.obj: \ + /home/sylvain/Programmes/Casio/shmup/src/main.cpp \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/azur.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/defs.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstdint \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/c++config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/os_defines.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/cpu_defines.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/pstl/pstl_config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint-gcc.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstddef \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stddef.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/sys/types.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/gint/render.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/types.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/attributes.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdbool.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdarg.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/call.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display-cg.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/image.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/libprof.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/drivers/r61524.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/rtc.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/timer.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/mpu/tmu.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/hardware.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/keyboard.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/keycodes.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/usb.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/timeout.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/time.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/gint.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/intc.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/endian.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/usb-ff-bulk.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/stdio.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/string.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/stdlib.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstdlib \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/stdlib.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/bits/exit.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/std_abs.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/fxlibc/printf.h \ + /home/sylvain/Programmes/Casio/shmup/src/utilities.h \ + /home/sylvain/Programmes/Casio/shmup/src/particles.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/vector \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_algobase.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/functexcept.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/exception_defines.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/cpp_type_traits.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/ext/type_traits.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/ext/numeric_traits.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_pair.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/move.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/type_traits \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/compare \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/concepts \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_iterator_base_types.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/iterator_concepts.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/ptr_traits.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/ranges_cmp.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_iterator_base_funcs.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/concept_check.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/debug/assertions.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_iterator.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/new \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/exception.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/debug/debug.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/predefined_ops.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_algo.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/algorithmfwd.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/initializer_list \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_heap.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_tempbuf.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_construct.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/uniform_int_dist.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/allocator.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/c++allocator.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/ext/new_allocator.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/memoryfwd.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_uninitialized.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/ext/alloc_traits.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/alloc_traits.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_vector.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/stl_bvector.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/functional_hash.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/hash_bytes.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/range_access.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/vector.tcc diff --git a/build-cg/CMakeFiles/shmup.dir/src/particles.cpp.obj b/build-cg/CMakeFiles/shmup.dir/src/particles.cpp.obj new file mode 100644 index 0000000..485463e Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/src/particles.cpp.obj differ diff --git a/build-cg/CMakeFiles/shmup.dir/src/particles.cpp.obj.d b/build-cg/CMakeFiles/shmup.dir/src/particles.cpp.obj.d new file mode 100644 index 0000000..b732077 --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/src/particles.cpp.obj.d @@ -0,0 +1,31 @@ +CMakeFiles/shmup.dir/src/particles.cpp.obj: \ + /home/sylvain/Programmes/Casio/shmup/src/particles.cpp \ + /home/sylvain/Programmes/Casio/shmup/src/particles.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstdint \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/c++config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/os_defines.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/cpu_defines.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/pstl/pstl_config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint-gcc.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/azur.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/defs.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstddef \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stddef.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/sys/types.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/gint/render.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/types.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/attributes.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdbool.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdarg.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/call.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display-cg.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/image.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/libprof.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/stdlib.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstdlib \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/stdlib.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/bits/exit.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/std_abs.h diff --git a/build-cg/CMakeFiles/shmup.dir/src/utilities.cpp.obj b/build-cg/CMakeFiles/shmup.dir/src/utilities.cpp.obj new file mode 100644 index 0000000..3871c01 Binary files /dev/null and b/build-cg/CMakeFiles/shmup.dir/src/utilities.cpp.obj differ diff --git a/build-cg/CMakeFiles/shmup.dir/src/utilities.cpp.obj.d b/build-cg/CMakeFiles/shmup.dir/src/utilities.cpp.obj.d new file mode 100644 index 0000000..b9a007a --- /dev/null +++ b/build-cg/CMakeFiles/shmup.dir/src/utilities.cpp.obj.d @@ -0,0 +1,33 @@ +CMakeFiles/shmup.dir/src/utilities.cpp.obj: \ + /home/sylvain/Programmes/Casio/shmup/src/utilities.cpp \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/azur.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/defs.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstdint \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/c++config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/os_defines.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/sh3eb-elf/m4-nofpu/bits/cpu_defines.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/pstl/pstl_config.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdint-gcc.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstddef \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stddef.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/sys/types.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/azur/gint/render.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/types.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/attributes.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdbool.h \ + /home/sylvain/.local/share/fxsdk/sysroot/lib/gcc/sh3eb-elf/11.1.0/include/stdarg.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/defs/call.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/display-cg.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/gint/image.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/libprof.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/stdio.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/string.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/stdlib.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/cstdlib \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/stdlib.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/bits/exit.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/c++/11.1.0/bits/std_abs.h \ + /home/sylvain/.local/share/fxsdk/sysroot/sh3eb-elf/include/fxlibc/printf.h diff --git a/build-cg/Makefile b/build-cg/Makefile index b5d6e2e..8300be8 100644 --- a/build-cg/Makefile +++ b/build-cg/Makefile @@ -117,41 +117,153 @@ depend: .PHONY : depend #============================================================================= -# Target rules for targets named myaddin +# Target rules for targets named shmup # Build rule for target. -myaddin: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 myaddin -.PHONY : myaddin +shmup: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 shmup +.PHONY : shmup # fast build rule for target. -myaddin/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/myaddin.dir/build.make CMakeFiles/myaddin.dir/build -.PHONY : myaddin/fast +shmup/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/build +.PHONY : shmup/fast -src/main.obj: src/main.cc.obj +assets-cg/Sprites/emp_circ.o: assets-cg/Sprites/emp_circ.png.o +.PHONY : assets-cg/Sprites/emp_circ.o + +# target to build an object file +assets-cg/Sprites/emp_circ.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/Sprites/emp_circ.png.o +.PHONY : assets-cg/Sprites/emp_circ.png.o + +assets-cg/Sprites/fill_circ_0.o: assets-cg/Sprites/fill_circ_0.png.o +.PHONY : assets-cg/Sprites/fill_circ_0.o + +# target to build an object file +assets-cg/Sprites/fill_circ_0.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_0.png.o +.PHONY : assets-cg/Sprites/fill_circ_0.png.o + +assets-cg/Sprites/fill_circ_1.o: assets-cg/Sprites/fill_circ_1.png.o +.PHONY : assets-cg/Sprites/fill_circ_1.o + +# target to build an object file +assets-cg/Sprites/fill_circ_1.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_1.png.o +.PHONY : assets-cg/Sprites/fill_circ_1.png.o + +assets-cg/Sprites/fill_circ_2.o: assets-cg/Sprites/fill_circ_2.png.o +.PHONY : assets-cg/Sprites/fill_circ_2.o + +# target to build an object file +assets-cg/Sprites/fill_circ_2.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_2.png.o +.PHONY : assets-cg/Sprites/fill_circ_2.png.o + +assets-cg/Sprites/fill_circ_3.o: assets-cg/Sprites/fill_circ_3.png.o +.PHONY : assets-cg/Sprites/fill_circ_3.o + +# target to build an object file +assets-cg/Sprites/fill_circ_3.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_3.png.o +.PHONY : assets-cg/Sprites/fill_circ_3.png.o + +assets-cg/Sprites/fill_circ_4.o: assets-cg/Sprites/fill_circ_4.png.o +.PHONY : assets-cg/Sprites/fill_circ_4.o + +# target to build an object file +assets-cg/Sprites/fill_circ_4.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_4.png.o +.PHONY : assets-cg/Sprites/fill_circ_4.png.o + +assets-cg/Sprites/fill_circ_5.o: assets-cg/Sprites/fill_circ_5.png.o +.PHONY : assets-cg/Sprites/fill_circ_5.o + +# target to build an object file +assets-cg/Sprites/fill_circ_5.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/Sprites/fill_circ_5.png.o +.PHONY : assets-cg/Sprites/fill_circ_5.png.o + +assets-cg/font.o: assets-cg/font.png.o +.PHONY : assets-cg/font.o + +# target to build an object file +assets-cg/font.png.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/assets-cg/font.png.o +.PHONY : assets-cg/font.png.o + +src/main.obj: src/main.cpp.obj .PHONY : src/main.obj # target to build an object file -src/main.cc.obj: - $(MAKE) $(MAKESILENT) -f CMakeFiles/myaddin.dir/build.make CMakeFiles/myaddin.dir/src/main.cc.obj -.PHONY : src/main.cc.obj +src/main.cpp.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/main.cpp.obj +.PHONY : src/main.cpp.obj -src/main.i: src/main.cc.i +src/main.i: src/main.cpp.i .PHONY : src/main.i # target to preprocess a source file -src/main.cc.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/myaddin.dir/build.make CMakeFiles/myaddin.dir/src/main.cc.i -.PHONY : src/main.cc.i +src/main.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/main.cpp.i +.PHONY : src/main.cpp.i -src/main.s: src/main.cc.s +src/main.s: src/main.cpp.s .PHONY : src/main.s # target to generate assembly for a file -src/main.cc.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/myaddin.dir/build.make CMakeFiles/myaddin.dir/src/main.cc.s -.PHONY : src/main.cc.s +src/main.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/main.cpp.s +.PHONY : src/main.cpp.s + +src/particles.obj: src/particles.cpp.obj +.PHONY : src/particles.obj + +# target to build an object file +src/particles.cpp.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/particles.cpp.obj +.PHONY : src/particles.cpp.obj + +src/particles.i: src/particles.cpp.i +.PHONY : src/particles.i + +# target to preprocess a source file +src/particles.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/particles.cpp.i +.PHONY : src/particles.cpp.i + +src/particles.s: src/particles.cpp.s +.PHONY : src/particles.s + +# target to generate assembly for a file +src/particles.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/particles.cpp.s +.PHONY : src/particles.cpp.s + +src/utilities.obj: src/utilities.cpp.obj +.PHONY : src/utilities.obj + +# target to build an object file +src/utilities.cpp.obj: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/utilities.cpp.obj +.PHONY : src/utilities.cpp.obj + +src/utilities.i: src/utilities.cpp.i +.PHONY : src/utilities.i + +# target to preprocess a source file +src/utilities.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/utilities.cpp.i +.PHONY : src/utilities.cpp.i + +src/utilities.s: src/utilities.cpp.s +.PHONY : src/utilities.s + +# target to generate assembly for a file +src/utilities.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/shmup.dir/build.make CMakeFiles/shmup.dir/src/utilities.cpp.s +.PHONY : src/utilities.cpp.s # Help Target help: @@ -161,10 +273,24 @@ help: @echo "... depend" @echo "... edit_cache" @echo "... rebuild_cache" - @echo "... myaddin" + @echo "... shmup" + @echo "... assets-cg/Sprites/emp_circ.o" + @echo "... assets-cg/Sprites/fill_circ_0.o" + @echo "... assets-cg/Sprites/fill_circ_1.o" + @echo "... assets-cg/Sprites/fill_circ_2.o" + @echo "... assets-cg/Sprites/fill_circ_3.o" + @echo "... assets-cg/Sprites/fill_circ_4.o" + @echo "... assets-cg/Sprites/fill_circ_5.o" + @echo "... assets-cg/font.o" @echo "... src/main.obj" @echo "... src/main.i" @echo "... src/main.s" + @echo "... src/particles.obj" + @echo "... src/particles.i" + @echo "... src/particles.s" + @echo "... src/utilities.obj" + @echo "... src/utilities.i" + @echo "... src/utilities.s" .PHONY : help diff --git a/build-cg/myaddin b/build-cg/myaddin deleted file mode 100755 index 9b26bb4..0000000 Binary files a/build-cg/myaddin and /dev/null differ diff --git a/build-cg/myaddin.bin b/build-cg/myaddin.bin deleted file mode 100755 index 05ae937..0000000 Binary files a/build-cg/myaddin.bin and /dev/null differ diff --git a/build-cg/shmup b/build-cg/shmup new file mode 100755 index 0000000..c41d1c3 Binary files /dev/null and b/build-cg/shmup differ diff --git a/build-cg/shmup.bin b/build-cg/shmup.bin new file mode 100755 index 0000000..1131e79 Binary files /dev/null and b/build-cg/shmup.bin differ diff --git a/src/fixed.h b/src/fixed.h deleted file mode 100644 index 8970b1f..0000000 --- a/src/fixed.h +++ /dev/null @@ -1,85 +0,0 @@ -//--- -// fixed: 48:16 fixed-point arithmetic -//--- -#pragma once -#include - -typedef int32_t fixed_t; -/* Standard arithmetic. */ - -static inline fixed_t fmul(fixed_t left, fixed_t right) -{ - /* Generally optimized by the compiler to use dmuls.l and xtrct */ - int64_t p = (int64_t)left * (int64_t)right; - return (int32_t)(p >> 16); -} - -static inline fixed_t fdiv(fixed_t left, fixed_t right) -{ - /* Pretty slow */ - int64_t d = (int64_t)left << 16; - return d / right; -} - -#define fix(x) ((int)((x) * 65536)) - -static inline fixed_t fixdouble(double constant) -{ - return (fixed_t)(constant * 65536); -} - -static inline fixed_t fixfloat(float constant) -{ - return (fixed_t)(constant * 65536); -} - -static inline fixed_t fdec(fixed_t f) -{ - return f & 0xffff; -} - -static inline int ffloor(fixed_t f) -{ - return f >> 16; -} - -static inline int fceil(fixed_t f) -{ - return (f + 0xffff) >> 16; -} - -static inline int fround(fixed_t f) -{ - return (f + 0x8000) >> 16; -} - -static inline float f2float(fixed_t f) -{ - return (float)f / 65536; -} - -static inline double f2double(fixed_t f) -{ - return (double)f / 65536; -} - -static inline int f2int(fixed_t f) -{ - return (int)f / 65536; -} - -static inline fixed_t feasein(fixed_t x) -{ - return fmul(x, x); -} - -static inline fixed_t fease(fixed_t x) -{ - if(x <= fix(0.5)) { - return 2 * fmul(x, x); - } - else { - x = fix(1) - x; - return fix(1) - 2 * fmul(x, x); - } -} diff --git a/src/main.cc b/src/main.cpp similarity index 53% rename from src/main.cc rename to src/main.cpp index d49da79..4267372 100644 --- a/src/main.cc +++ b/src/main.cpp @@ -1,18 +1,45 @@ -#include +#include +#include #include +#include #include -#include - #include #include #include +#include +#include +#include +#include +#include + + +#include "utilities.h" +#include "particles.h" +#include + bool screenshot = false; bool record = false; bool exitToOS = false; + +std::vector MyParticles; + + +void Create_Explosion( void ) +{ + uint16_t xexplosion = rand() % 396; + uint16_t yexplosion = rand() % 224; + + for(int i=0; i<50; i++) + { + Particle *p = new Particle( xexplosion, yexplosion ); + MyParticles.push_back( p ); + } +} + static void get_inputs( void ) { key_event_t ev; @@ -21,21 +48,32 @@ static void get_inputs( void ) } + if(keydown(KEY_SHIFT)) {Create_Explosion();} + if(keydown(KEY_EXIT)) {exitToOS = true; }; if(keydown(KEY_7)) {screenshot = true; }; if(keydown(KEY_8)) {record = !record; }; } + static void update( float dt ) { - // all update stuff dependng on time will be done here + for(int i=0; iUpdate(); + if(MyParticles[i]->age > MyParticles[i]->maxage) + MyParticles[i]->size--; + + if (MyParticles[i]->size==0) + MyParticles.erase( MyParticles.begin() + i ); + + } } - int main(void) { exitToOS = false; @@ -44,6 +82,16 @@ int main(void) __printf_enable_fp(); __printf_enable_fixed(); + azrp_config_scale(1); + azrp_shader_clear_configure(); + azrp_shader_image_rgb16_configure(); + azrp_shader_image_p8_configure(); + azrp_shader_image_p4_configure(); + + srand(rtc_ticks()); + + //extern bopti_image_t img_plane; + usb_interface_t const *interfaces[] = { &usb_ff_bulk, NULL }; usb_open(interfaces, GINT_CALL_NULL); @@ -74,15 +122,23 @@ int main(void) { // all the stuff to be rendered should be put here - dclear( C_WHITE ); - dprint(1,01, C_BLACK, "Update = %.0f microseconds", (float) time_update ); - dprint(1,11, C_BLACK, "Render = %.0f microseconds", (float) time_render ); - dprint(1,21, C_RED, ">Total = %.3f milliseconds", (float) elapsedTime / 1000.0f ); + azrp_clear( C_BLACK ); - dprint(1,41, C_BLUE, "FPS = %.3f", (float) (1000000.0f / elapsedTime) ); + Azur_draw_text(1,01, "Update = %.0f microseconds", (float) time_update ); + Azur_draw_text(1,11, "Render = %.0f microseconds", (float) time_render ); + Azur_draw_text(1,21, ">Total = %.3f milliseconds", (float) elapsedTime / 1000.0f ); - //r61524_display(gint_vram, 0, DHEIGHT, R61524_DMA_WAIT); - dupdate(); + Azur_draw_text(1,41, "FPS = %.3f", (float) (1000000.0f / elapsedTime) ); + + Azur_draw_text(1,61, "Particles = %d", MyParticles.size() ); + + + //azrp_image( 10, 50, &img_plane ); + + for(auto& p : MyParticles) + p->Render(); + + azrp_update(); } prof_leave(perf_render); @@ -104,6 +160,9 @@ int main(void) while (exitToOS==false); + MyParticles.clear(); + + prof_quit(); usb_close(); diff --git a/src/particles.cpp b/src/particles.cpp new file mode 100644 index 0000000..eaf9bce --- /dev/null +++ b/src/particles.cpp @@ -0,0 +1,57 @@ +#include "particles.h" + +#include +#include + +#include +#include + +extern bopti_image_t img_fill_circ_0; +extern bopti_image_t img_fill_circ_1; +extern bopti_image_t img_fill_circ_2; +extern bopti_image_t img_fill_circ_3; +extern bopti_image_t img_fill_circ_4; +extern bopti_image_t img_fill_circ_5; + +Particle::Particle( uint16_t lx, uint16_t ly ) +{ + x = lx; + y = ly; + + sx = (float) (((rand() % 11)-5)/2.0f); + sy = (float) (((rand() % 11)-5)/2.0f); + + age = rand() % 10; + maxage = 15 + rand() % 20; + size = 1+ rand() % 7; +} + +Particle::~Particle() +{ + + +} + +void Particle::Update( ) +{ + x = (uint16_t) ((float) x + sx); + y = (uint16_t) ((float) y + sy); + age += 1; + sx *= 0.9; + sy *= 0.9; +} + +void Particle::Render( ) +{ + uint8_t dximg = (size-1)*15; + + if (age>25) azrp_subimage( x-7, y-7, &img_fill_circ_5, dximg, 0, 15, 15, DIMAGE_NONE ); + else if (age>20) azrp_subimage( x-7, y-7, &img_fill_circ_4, dximg, 0, 15, 15, DIMAGE_NONE ); + else if (age>15) azrp_subimage( x-7, y-7, &img_fill_circ_3, dximg, 0, 15, 15, DIMAGE_NONE ); + else if (age>10) azrp_subimage( x-7, y-7, &img_fill_circ_2, dximg, 0, 15, 15, DIMAGE_NONE ); + else if (age>5) azrp_subimage( x-7, y-7, &img_fill_circ_1, dximg, 0, 15, 15, DIMAGE_NONE ); + else azrp_subimage( x-7, y-7, &img_fill_circ_0, dximg, 0, 15, 15, DIMAGE_NONE ); + + //azrp_subimage( x-7, y-7, &img_fill_circ, dximg, 0, 15, 15, DIMAGE_DYE, color ); +} + diff --git a/src/particles.h b/src/particles.h new file mode 100644 index 0000000..a702af9 --- /dev/null +++ b/src/particles.h @@ -0,0 +1,20 @@ +#ifndef PARTICLES_H +#define PARTICLES_H + +#include + +class Particle +{ + public: + Particle( uint16_t lx, uint16_t ly ); + ~Particle(); + void Update(); + void Render(); + + uint16_t x, y; + float sx, sy; + uint8_t age, maxage; + uint8_t size; +}; + +#endif //PARTICLES_H \ No newline at end of file diff --git a/src/utilities.cpp b/src/utilities.cpp new file mode 100644 index 0000000..570ddac --- /dev/null +++ b/src/utilities.cpp @@ -0,0 +1,27 @@ +#include +#include + +#include +#include +#include +#include + +/* Render text with Azur images - quite bad, but I don't have time lol. */ +void Azur_draw_text(int x, int y, char const *fmt, ...) +{ + char str[128]; + va_list args; + va_start(args, fmt); + vsnprintf(str, 128, fmt, args); + va_end(args); + + extern bopti_image_t img_font; + + for(int i = 0; str[i]; i++) { + if(str[i] < 32 || str[i] >= 0x7f) continue; + + int row = (str[i] - 32) >> 4; + int col = (str[i] - 32) & 15; + azrp_subimage(x + 5 * i, y, &img_font, 7 * col + 1, 9 * row + 1, 6, 8, DIMAGE_NONE); + } +} diff --git a/src/utilities.h b/src/utilities.h new file mode 100644 index 0000000..41fbdd3 --- /dev/null +++ b/src/utilities.h @@ -0,0 +1,6 @@ +#ifndef UTILITIES_H +#define UTILITIES_H + +void Azur_draw_text(int x, int y, char const *fmt, ...); + +#endif \ No newline at end of file