some minor changes

This commit is contained in:
milang 2019-09-17 18:57:38 +02:00
parent 0e7d807521
commit b575e88ab8
No known key found for this signature in database
GPG Key ID: D287C9D6C33D9035
8 changed files with 576 additions and 313 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
src/fxengine

BIN
1v13D.g1a

Binary file not shown.

View File

@ -16,8 +16,8 @@ cf-fx := $(cf) -m3 -DFX9860G
cf-cg := $(cf) -m4-nofpu -DFXCG50
# Linker flags
lf-fx := $(LDFLAGS) -Tfx9860g.ld -lfxengine -lgint-fx -lgcc -Wl,-Map=build-fx/map
lf-cg := $(LDFLAGS) -Tfxcg50.ld -lfxengine -lgint-cg -lgcc -Wl,-Map=build-cg/map
lf-fx := -Tfx9860g.ld -lgint-fx $(LDFLAGS) -lgcc -Wl,-Map=build-fx/map
lf-cg := -Tfxcg50.ld -lgint-cg $(LDFLAGS) -lgcc -Wl,-Map=build-cg/map
dflags = -MMD -MT $@ -MF $(@:.o=.d) -MP
cpflags := -R .bss -R .gint_bss
@ -38,10 +38,9 @@ target-fx := $(filename).g1a
target-cg := $(filename).g3a
# Source files
src := $(shell find src -name '*.c')
#assets-fx := $(shell find assets-fx/*/)
#assets-cg := $(shell find assets-cg/*/)
assets-fx := $(wildcard assets-fx/img/*) $(wildcard assets-fx/fonts/*)
src := $(wildcard src/*.c src/*/*.c src/*/*/*.c src/*/*/*/*.c)
assets-fx := $(wildcard assets-fx/*/*)
assets-cg := $(wildcard assets-cg/*/*)
# Object files
obj-fx := $(src:%.c=build-fx/%.o) $(assets-fx:assets-fx/%=build-fx/assets/%.o)
@ -92,13 +91,11 @@ build-cg/%.o: %.c
# Images
build-fx/assets/img/%.o: assets-fx/img/%
@ mkdir -p $(dir $@)
fxconv -i $< -o $@ name:img_$(basename $*)
fxconv -i $< -o $@ --fx name:img_$(basename $*)
build-cg/assets/img/%.o: assets-cg/img/%
@ echo -ne "\e[31;1mWARNING: image conversion for fxcg50 is not "
@ echo -ne "supported yet\e[0m"
@ mkdir -p $(dir $@)
fxconv -i $< -o $@ name:img_$(basename $*)
fxconv -i $< -o $@ --cg name:img_$(basename $*)
# Fonts
build-fx/assets/fonts/%.o: assets-fx/fonts/%
@ -127,8 +124,8 @@ distclean: clean
install-fx: $(target-fx)
p7 send -f $<
install-cg: $(target-cg)
@ while [[ ! -h /dev/Prizm1 ]]; do sleep 1; done
@ mount /dev/Prizm1
@ while [[ ! -h /dev/Prizm1 ]]; do sleep 0.25; done
@ while ! mount /dev/Prizm1; do sleep 0.25; done
@ rm -f /mnt/prizm/$<
@ cp $< /mnt/prizm
@ umount /dev/Prizm1

View File

@ -1,27 +1,35 @@
Archive member included to satisfy reference by file (symbol)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o)
build-fx/src/main.o (render_translate)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
build-fx/src/main.o (dclear)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
build-fx/src/main.o (dpixel)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
build-fx/src/main.o (dupdate)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o) (vram)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
(start)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o) (gint_install)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o) (gint_panic)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o) (t6k11_display)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
build-fx/src/main.o (memcpy)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.s.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o) (gint_exch_tlbh)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o) (dtext)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti-asm.s.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o) (topti_asm_text)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o) (topti_render)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dprint.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o) (dprint)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o) (dfont)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o) (SH7705_INTC)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o) (hw_detect)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.S.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o) (exch_entry_7305)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(vbr.s.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o) (gint_setvbr)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
@ -29,68 +37,67 @@ Archive member included to satisfy reference by file (symbol)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o) (__os_version)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o) (inth_entry_7305)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_sdivsi3.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__sdivsi3)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__adddf3)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_mul_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__muldf3)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_div_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__divdf3)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_gt_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__gtdf2)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_ge_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__gedf2)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_lt_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__ltdf2)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_le_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__ledf2)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_si_to_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__floatsidf)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_df_to_si.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o) (__fixdfsi)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_thenan_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o) (__thenan_df)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clzsi2.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_si_to_df.o) (__clzsi2)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_pack_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o) (__pack_d)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_unpack_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o) (__unpack_d)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_fpcmp_parts_df.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_gt_df.o) (__fpcmp_parts_d)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o) (gint_inth_7305)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(stdio.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dprint.c.o) (vsnprintf)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(font5x7.png.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o) (gint_font5x7)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(bitmap.c.o)
build-fx/src/main.o (fe_texture_new_rich)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(texture.c.o)
build-fx/src/main.o (fe_texture_debug)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(getkey.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(texture.c.o) (getkey)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(getkey.c.o) (waitevent)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(bitmap.c.o) (dpixel)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o) (timer_setup)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(iokbd.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o) (iokbd_scan)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o) (clock_freq)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.s.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o) (inth_tmu)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_movmem.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o) (__movmemSI24)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o) (__udivdi3)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivsi3.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o) (__udivsi3)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udiv_qrnnd_16.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o) (__udiv_qrnnd_16)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clzsi2.o) (__clz_tab)
/usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o) (__clz_tab)
Discarded input sections
.comment 0x0000000000000000 0x12 build-fx/src/main.o
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dprint.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_mul_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_div_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_gt_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_ge_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_lt_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_le_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_si_to_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_df_to_si.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_thenan_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clzsi2.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_pack_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_unpack_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_fpcmp_parts_df.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(stdio.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(bitmap.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(texture.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(getkey.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(iokbd.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o)
.comment 0x0000000000000000 0x12 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
Memory Configuration
@ -100,286 +107,437 @@ rom 0x0000000000300200 0x0000000000037000 xr
ram 0x0000000008100000 0x0000000000002000 rw
vbr 0x000000008800e000 0x0000000000001400 xrw
rram 0x000000008800f400 0x0000000000000c00 xrw
ilram 0x00000000e5200000 0x0000000000001000 xrw
xram 0x00000000e5007000 0x0000000000002000 xrw
yram 0x00000000e5017000 0x0000000000002000 xrw
*default* 0x0000000000000000 0xffffffffffffffff
Linker script and memory map
LOAD build-fx/src/main.o
LOAD build-fx/assets/img/fps.png.o
LOAD build-fx/assets/fonts/FxEngine.png.o
LOAD build-fx/assets/img/fps.png.o
LOAD /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a
LOAD /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a
LOAD /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a
LOAD /usr/lib/gcc/sh3eb-elf/9.1.0/libprof.a
LOAD /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a
0x0000000000300000 _brom = 0x300000
0x0000000000002144 _srom = ((((0x200 + SIZEOF (.text)) + SIZEOF (.rodata)) + SIZEOF (.gint.drivers)) + SIZEOF (.gint.blocks))
0x00000000000037f0 _srom = ((((0x200 + SIZEOF (.text)) + SIZEOF (.rodata)) + SIZEOF (.gint.drivers)) + SIZEOF (.gint.blocks))
.pretext 0x0000000000300200 0x324
.pretext 0x0000000000300200 0x8d8
*(.pretext.entry)
.pretext.entry
0x0000000000300200 0x1cc /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
0x0000000000300200 start
*(.pretext)
.pretext 0x00000000003003cc 0xd0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
0x00000000003003cc hw_detect
.pretext 0x000000000030049c 0x88 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
0x000000000030049c __os_version
0x00000000003004a8 malloc
0x00000000003004b4 free
0x00000000003004c0 calloc
0x00000000003004cc realloc
0x00000000003004d8 BFile_Remove
0x00000000003004e4 BFile_Create
0x00000000003004f0 BFile_Open
0x00000000003004fc BFile_Close
0x0000000000300508 BFile_Write
0x0000000000300514 BFile_Read
0x0000000000300524 _btors = .
.pretext 0x00000000003003cc 0x30 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.pretext 0x00000000003003fc 0x4c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o)
0x00000000003003fc dtext
*fill* 0x0000000000300448 0x8
.pretext 0x0000000000300450 0x130 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti-asm.s.o)
0x0000000000300560 topti_asm_text
.pretext 0x0000000000300580 0x2f0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
0x0000000000300622 topti_render
.pretext 0x0000000000300870 0x110 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
0x0000000000300870 dfont
0x0000000000300888 charset_size
0x00000000003008b4 charset_decode
0x0000000000300922 topti_offset
.pretext 0x0000000000300980 0xd0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
0x0000000000300980 hw_detect
.pretext 0x0000000000300a50 0x88 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
0x0000000000300a50 __os_version
0x0000000000300a5c malloc
0x0000000000300a68 free
0x0000000000300a74 calloc
0x0000000000300a80 realloc
0x0000000000300a8c BFile_Remove
0x0000000000300a98 BFile_Create
0x0000000000300aa4 BFile_Open
0x0000000000300ab0 BFile_Close
0x0000000000300abc BFile_Write
0x0000000000300ac8 BFile_Read
0x0000000000300ad8 _btors = .
*(.ctors .ctors.*)
0x0000000000300524 _mtors = .
0x0000000000300ad8 _mtors = .
*(.dtors .dtors.*)
0x0000000000300524 _etors = .
0x0000000000300ad8 _etors = .
.text 0x0000000000300524 0x1b04
.text 0x0000000000300ae0 0x2ab0
0x0000000000300ae0 _gint_exch_tlbh_start = .
*(.gint.exch_tlbh)
.gint.exch_tlbh
0x0000000000300ae0 0x4c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.s.o)
0x0000000000300ae0 gint_exch_tlbh
0x000000000000004c _gint_exch_tlbh_size = ABSOLUTE ((. - _gint_exch_tlbh_start))
*(.text .text.*)
.text 0x0000000000300524 0x0 build-fx/src/main.o
.text.startup 0x0000000000300524 0x68 build-fx/src/main.o
0x0000000000300524 main
.text 0x000000000030058c 0x554 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o)
0x000000000030058c modulo_2pi
0x000000000030063c cos
0x000000000030077c sin
0x00000000003007a4 render_translate
0x0000000000300934 render_set
.text 0x0000000000300ae0 0x4c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
0x0000000000300ae0 dclear
.text 0x0000000000300b2c 0x50 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
0x0000000000300b2c dpixel
.text 0x0000000000300b7c 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
0x0000000000300b7c dupdate
0x0000000000300b94 dupdate_noint
.text 0x0000000000300ba0 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.text 0x0000000000300ba0 0x170 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
0x0000000000300c54 gint_install
0x0000000000300cf8 gint_unload
.text 0x0000000000300d10 0x1d8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
0x0000000000300da8 t6k11_display
0x0000000000300e7c t6k11_contrast
0x0000000000300ea8 t6k11_backlight
.text 0x0000000000300ee8 0xdc /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
0x0000000000300ee8 memcpy
0x0000000000300fa2 _memmove
0x0000000000300fa6 _memcmp
0x0000000000300faa memset
.text 0x0000000000300fc4 0x78 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
0x0000000000300fc4 gint_intlevel
0x0000000000301018 gint_inthandler
.text 0x000000000030103c 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
.text 0x000000000030103c 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.S.o)
.text 0x000000000030103c 0x2c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(vbr.s.o)
0x000000000030103c gint_setvbr
.text 0x0000000000301068 0x1f4 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
0x0000000000301068 tlb_addr
0x000000000030107c tlb_data
0x0000000000301090 tlb_mapped_memory
0x0000000000301164 utlb_addr
0x0000000000301174 utlb_data
0x0000000000301184 utlb_mapped_memory
.text 0x000000000030125c 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
.text 0x000000000030125c 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
.text 0x000000000030125c 0xa0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_sdivsi3.o)
0x000000000030125c __sdivsi3
.text 0x00000000003012fc 0x348 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o)
0x00000000003015a0 __adddf3
0x00000000003015f0 __subdf3
.text 0x0000000000301644 0x208 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_mul_df.o)
0x0000000000301644 __muldf3
.text 0x000000000030184c 0x130 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_div_df.o)
0x000000000030184c __divdf3
.text 0x000000000030197c 0x58 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_gt_df.o)
0x000000000030197c __gtdf2
.text 0x00000000003019d4 0x58 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_ge_df.o)
0x00000000003019d4 __gedf2
.text 0x0000000000301a2c 0x58 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_lt_df.o)
0x0000000000301a2c __ltdf2
.text 0x0000000000301a84 0x58 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_le_df.o)
0x0000000000301a84 __ledf2
.text 0x0000000000301adc 0x98 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_si_to_df.o)
0x0000000000301adc __floatsidf
.text 0x0000000000301b74 0x8c /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_df_to_si.o)
0x0000000000301b74 __fixdfsi
.text 0x0000000000301c00 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_thenan_df.o)
.text 0x0000000000301c00 0x54 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clzsi2.o)
0x0000000000301c00 __clzsi2
.text 0x0000000000301c54 0x240 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_pack_df.o)
0x0000000000301c54 __pack_d
.text 0x0000000000301e94 0xcc /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_unpack_df.o)
0x0000000000301e94 __unpack_d
.text 0x0000000000301f60 0xc8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_fpcmp_parts_df.o)
0x0000000000301f60 __fpcmp_parts_d
.text 0x0000000000302028 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
.text 0x0000000000300b2c 0x0 build-fx/src/main.o
.text.startup 0x0000000000300b2c 0x54 build-fx/src/main.o
0x0000000000300b2c main
.text 0x0000000000300b80 0x4c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
0x0000000000300b80 dclear
.text 0x0000000000300bcc 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
0x0000000000300bcc dupdate
0x0000000000300be4 dupdate_noint
.text 0x0000000000300bf0 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.text 0x0000000000300bf0 0x17c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
0x0000000000300ca4 gint_install
0x0000000000300d54 gint_unload
.text 0x0000000000300d6c 0x1c4 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o)
0x0000000000300efc gint_panic
0x0000000000300f0c gint_panic_set
0x0000000000300f18 gint_exc_catch
0x0000000000300f24 gint_exc_skip
.text 0x0000000000300f30 0x1d8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
0x0000000000300fc8 t6k11_display
0x000000000030109c t6k11_contrast
0x00000000003010c8 t6k11_backlight
.text 0x0000000000301108 0xdc /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
0x0000000000301108 memcpy
0x00000000003011c2 _memmove
0x00000000003011c6 _memcmp
0x00000000003011ca memset
.text 0x00000000003011e4 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.s.o)
.text 0x00000000003011e4 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o)
.text 0x00000000003011e4 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti-asm.s.o)
.text 0x00000000003011e4 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
.text 0x00000000003011e4 0x58 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dprint.c.o)
0x00000000003011e4 dprint
.text 0x000000000030123c 0x9c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
0x000000000030123c dsize
.text 0x00000000003012d8 0x78 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
0x00000000003012d8 gint_intlevel
0x000000000030132c gint_inthandler
.text 0x0000000000301350 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
.text 0x0000000000301350 0x2c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(vbr.s.o)
0x0000000000301350 gint_setvbr
.text 0x000000000030137c 0x1f4 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
0x000000000030137c tlb_addr
0x0000000000301390 tlb_data
0x00000000003013a4 tlb_mapped_memory
0x0000000000301478 utlb_addr
0x0000000000301488 utlb_data
0x0000000000301498 utlb_mapped_memory
.text 0x0000000000301570 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
.text 0x0000000000301570 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
.text 0x0000000000301570 0xc00 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(stdio.c.o)
0x0000000000301e98 kprint_opt
0x0000000000301fd0 kprint
0x00000000003020a8 kvsprint
0x00000000003020f0 sprintf
0x0000000000302118 vsprintf
0x0000000000302138 snprintf
0x0000000000302158 vsnprintf
.text 0x0000000000302170 0x1a4 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(bitmap.c.o)
0x0000000000302170 fe_texture_new_rich
0x0000000000302244 fe_texture_delete_rich
0x0000000000302288 fe_texture_get_pixel_r
0x00000000003022da fe_texture_display_pixel_r
.text 0x0000000000302314 0x284 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(texture.c.o)
0x00000000003023e8 fe_texture_debug
.text 0x0000000000302598 0x1c8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(getkey.c.o)
0x0000000000302598 getkey_opt
0x0000000000302718 getkey
0x0000000000302724 getkey_repeat
.text 0x0000000000302760 0x2c8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
0x0000000000302904 pollevent
0x00000000003029f0 waitevent
.text 0x0000000000302a28 0x50 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
0x0000000000302a28 dpixel
.text 0x0000000000302a78 0x56c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
0x0000000000302d98 timer_setup
0x0000000000302e28 timer_delay
0x0000000000302e88 timer_start
0x0000000000302ebc timer_reload
0x0000000000302edc timer_pause
0x0000000000302f10 timer_stop
0x0000000000302f6c timer_timeout
0x0000000000302f78 timer_address
0x0000000000302fb4 timer_clear
.text 0x0000000000302fe4 0x124 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(iokbd.c.o)
0x0000000000302ff0 iokbd_row
0x00000000003030d8 iokbd_scan
.text 0x0000000000303108 0x150 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
0x000000000030324c clock_freq
.text 0x0000000000303258 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.s.o)
.text 0x0000000000303258 0x78 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_movmem.o)
0x0000000000303258 __movstr
0x0000000000303258 __movmem
0x000000000030328c __movmemSI64
0x000000000030328c __movstrSI64
0x0000000000303290 __movstrSI60
0x0000000000303290 __movmemSI60
0x0000000000303294 __movmemSI56
0x0000000000303294 __movstrSI56
0x0000000000303298 __movstrSI52
0x0000000000303298 __movmemSI52
0x000000000030329c __movstrSI48
0x000000000030329c __movmemSI48
0x00000000003032a0 __movstrSI44
0x00000000003032a0 __movmemSI44
0x00000000003032a4 __movstrSI40
0x00000000003032a4 __movmemSI40
0x00000000003032a8 __movstrSI36
0x00000000003032a8 __movmemSI36
0x00000000003032ac __movmemSI32
0x00000000003032ac __movstrSI32
0x00000000003032b0 __movmemSI28
0x00000000003032b0 __movstrSI28
0x00000000003032b4 __movstrSI24
0x00000000003032b4 __movmemSI24
0x00000000003032b8 __movmemSI20
0x00000000003032b8 __movstrSI20
0x00000000003032bc __movstrSI16
0x00000000003032bc __movmemSI16
0x00000000003032c0 __movmemSI12
0x00000000003032c0 __movstrSI12
0x00000000003032c4 __movmemSI8
0x00000000003032c4 __movstrSI8
0x00000000003032c8 __movmemSI4
0x00000000003032c8 __movstrSI4
.text 0x00000000003032d0 0x1f0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o)
0x00000000003032d0 __udivdi3
.text 0x00000000003034c0 0x6c /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivsi3.o)
0x00000000003034e2 __udivsi3
*fill* 0x000000000030352c 0x4
.text 0x0000000000303530 0x60 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udiv_qrnnd_16.o)
0x0000000000303530 __udiv_qrnnd_16
.text 0x0000000000303590 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
*(C P)
.gint.blocks 0x0000000000302030 0x60
.gint.blocks 0x0000000000303590 0x120
*(.gint.blocks)
.gint.blocks 0x0000000000302030 0x20 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.S.o)
0x0000000000302030 exch_entry_7705
0x0000000000302030 exch_entry_7305
.gint.blocks 0x0000000000302050 0x40 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
0x0000000000302050 inth_entry_7305
0x0000000000302070 inth_entry_7705
.gint.blocks 0x0000000000303590 0x40 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
0x0000000000303590 gint_inth_7305
0x00000000003035b0 gint_inth_7705
.gint.blocks 0x00000000003035d0 0xe0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.s.o)
0x00000000003035d0 inth_tmu
0x0000000000303650 inth_etmu2
0x0000000000303670 inth_etmu_help
0x0000000000303690 inth_etmux
.gint.drivers 0x0000000000302090 0x24
0x0000000000302090 _bdrv = .
.gint.drivers 0x00000000003036b0 0x90
0x00000000003036b0 _bdrv = .
*(.gint.drivers.0)
*(.gint.drivers.1)
.gint.drivers.1
0x00000000003036b0 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
0x00000000003036b0 drv_cpg
*(.gint.drivers.2)
.gint.drivers.2
0x00000000003036d4 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
0x00000000003036d4 drv_tmu
*(.gint.drivers.3)
*(.gint.drivers.4)
.gint.drivers.4
0x00000000003036f8 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
0x00000000003036f8 drv_keysc
*(.gint.drivers.5)
.gint.drivers.5
0x0000000000302090 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
0x0000000000302090 drv_t6k11
0x000000000030371c 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
0x000000000030371c drv_t6k11
*(.gint.drivers.6)
0x00000000003020b4 _edrv = .
0x0000000000303740 _edrv = .
.rodata 0x00000000003020b4 0x3bc
.rodata 0x0000000000303740 0x990
*(.rodata.4)
*(.rodata .rodata.*)
.rodata 0x00000000003020b4 0x60 build-fx/src/main.o
.rodata 0x0000000000302114 0x24 build-fx/assets/img/fps.png.o
0x0000000000302114 img_fps
0x0000000000302138 img_fps_end
.rodata 0x0000000000302138 0x204 build-fx/assets/fonts/FxEngine.png.o
0x0000000000302138 font_FxEngine
0x000000000030233c font_FxEngine_end
.rodata 0x000000000030233c 0x18 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o)
0x000000000030233c pi_sur_2
0x0000000000302344 pi2
0x000000000030234c pi
.rodata 0x0000000000303740 0x80 build-fx/src/main.o
.rodata 0x00000000003037c0 0x204 build-fx/assets/fonts/FxEngine.png.o
0x00000000003037c0 font_FxEngine
0x00000000003039c4 font_FxEngine_end
.rodata 0x00000000003039c4 0x24 build-fx/assets/img/fps.png.o
0x00000000003039c4 img_fps
0x00000000003039e8 img_fps_end
.rodata.str1.4
0x0000000000302354 0x8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
0x6 (size before relaxing)
.rodata 0x000000000030235c 0x14 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_thenan_df.o)
0x000000000030235c __thenan_df
.rodata 0x0000000000302370 0x100 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
0x0000000000302370 __clz_tab
0x00000000003039e8 0x11a /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o)
0x11e (size before relaxing)
*fill* 0x0000000000303b02 0x2
.rodata.str1.4
0x0000000000303b04 0x6 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
*fill* 0x0000000000303b0a 0x2
.rodata 0x0000000000303b0c 0x18 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
.rodata.str1.4
0x0000000000303b24 0x31 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(stdio.c.o)
*fill* 0x0000000000303b55 0x3
.rodata 0x0000000000303b58 0x408 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(font5x7.png.o)
0x0000000000303b58 gint_font5x7
0x0000000000303f60 gint_font5x7_end
.rodata.str1.4
0x0000000000303f60 0x60 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(texture.c.o)
.rodata.str1.4
0x0000000000303fc0 0x6 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
*fill* 0x0000000000303fc6 0x2
.rodata.str1.4
0x0000000000303fc8 0x4 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
.rodata.str1.4
0x0000000000303fcc 0x4 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
.rodata 0x0000000000303fd0 0x100 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
0x0000000000303fd0 __clz_tab
.rela.dyn 0x0000000000302470 0x0
.rela.dyn 0x00000000003040d0 0x0
.rela.pretext.entry
0x0000000000302470 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.rela.text 0x0000000000302470 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
0x00000000003040d0 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.rela.text 0x00000000003040d0 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
0x0000000008100000 . = ORIGIN (ram)
.bss 0x0000000008100000 0x460
.bss 0x0000000008100000 0x550
0x0000000008100000 _rbss = .
*(.bss COMMON)
.bss 0x0000000008100000 0x0 build-fx/src/main.o
.bss 0x0000000008100000 0x54 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o)
.bss 0x0000000008100054 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
.bss 0x0000000008100054 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
.bss 0x0000000008100054 0x400 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.S.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(vbr.s.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_sdivsi3.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_mul_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_div_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_gt_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_ge_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_lt_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_le_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_si_to_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_df_to_si.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_thenan_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clzsi2.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_pack_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_unpack_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_fpcmp_parts_df.o)
.bss 0x0000000008100454 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
.bss 0x0000000008100000 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
.bss 0x0000000008100000 0x400 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.s.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti-asm.s.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dprint.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(vbr.s.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
.bss 0x0000000008100400 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
.bss 0x0000000008100400 0x114 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(stdio.c.o)
.bss 0x0000000008100514 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(bitmap.c.o)
.bss 0x0000000008100514 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(texture.c.o)
.bss 0x0000000008100514 0xc /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(getkey.c.o)
.bss 0x0000000008100520 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(iokbd.c.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.s.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_movmem.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivsi3.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udiv_qrnnd_16.o)
.bss 0x0000000008100544 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
*(B R)
0x0000000008100460 . = ALIGN (0x10)
*fill* 0x0000000008100454 0xc
0x0000000000000460 _sbss = SIZEOF (.bss)
0x0000000008100550 . = ALIGN (0x10)
*fill* 0x0000000008100544 0xc
0x0000000000000550 _sbss = SIZEOF (.bss)
.data 0x0000000008100460 0x0 load address 0x0000000000302470
0x0000000000302470 _ldata = LOADADDR (.data)
0x0000000008100460 _rdata = .
.data 0x0000000008100550 0x80 load address 0x00000000003040d0
0x00000000003040d0 _ldata = LOADADDR (.data)
0x0000000008100550 _rdata = .
*(.data .data.*)
.data 0x0000000008100460 0x0 build-fx/src/main.o
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(translate.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.S.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(vbr.s.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_sdivsi3.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_addsub_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_mul_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_div_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_gt_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_ge_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_lt_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_le_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_si_to_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_df_to_si.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_thenan_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clzsi2.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_pack_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_unpack_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_fpcmp_parts_df.o)
.data 0x0000000008100460 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
.data 0x0000000008100550 0x0 build-fx/src/main.o
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dclear.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(start.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(memory.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.s.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dtext.c.o)
.data 0x0000000008100550 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti-asm.s.o)
.data 0x0000000008100550 0x8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
0x0000000008100550 topti_font
0x0000000008100554 gint_default_font
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dprint.c.o)
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(topti.c.o)
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(vbr.s.o)
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(mmu.c.o)
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(syscalls.S.o)
.data 0x0000000008100558 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
.data 0x0000000008100558 0x68 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(stdio.c.o)
0x0000000008100558 kprint_formatters
.data 0x00000000081005c0 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(bitmap.c.o)
.data 0x00000000081005c0 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libfxengine.a(texture.c.o)
.data 0x00000000081005c0 0x8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(getkey.c.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dpixel.c.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(iokbd.c.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.s.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_movmem.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivdi3.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udivsi3.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_udiv_qrnnd_16.o)
.data 0x00000000081005c8 0x0 /usr/lib/gcc/sh3eb-elf/9.1.0/libgcc.a(_clz.o)
*(D)
0x0000000008100460 . = ALIGN (0x10)
0x00000000081005d0 . = ALIGN (0x10)
*fill* 0x00000000081005c8 0x8
.data.4 0x0000000008100460 0x0 load address 0x0000000000302470
.data.4 0x00000000081005d0 0x0 load address 0x0000000000304150
*(.data.4)
0x0000000008100460 . = ALIGN (0x10)
0x0000000000000000 _sdata = (SIZEOF (.data) + SIZEOF (.data.4))
0x00000000081005d0 . = ALIGN (0x10)
0x0000000000000080 _sdata = (SIZEOF (.data) + SIZEOF (.data.4))
0x00000000e5200000 . = ORIGIN (ilram)
.ilram 0x00000000e5200000 0x0 load address 0x0000000000304150
0x0000000000304150 _lilram = LOADADDR (.ilram)
0x00000000e5200000 _rilram = .
*(.ilram)
0x00000000e5200000 . = ALIGN (0x10)
0x00000000e5007000 . = ORIGIN (xram)
.xram 0x00000000e5007000 0x0 load address 0x0000000000304150
0x0000000000304150 _lxram = LOADADDR (.xram)
0x00000000e5007000 _rxram = .
*(.xram)
0x00000000e5007000 . = ALIGN (0x10)
0x00000000e5017000 . = ORIGIN (yram)
.yram 0x00000000e5017000 0x0 load address 0x0000000000304150
0x0000000000304150 _lyram = LOADADDR (.yram)
0x00000000e5017000 _ryram = .
*(.yram)
0x00000000e5017000 . = ALIGN (0x10)
0x0000000000000000 _silram = SIZEOF (.ilram)
0x0000000000000000 _sxram = SIZEOF (.xram)
0x0000000000000000 _syram = SIZEOF (.yram)
0x000000008800df00 _gint_vbr = 0x8800df00
0x000000008800f400 . = ORIGIN (rram)
.gint.data 0x000000008800f400 0xa0 load address 0x0000000000302470
0x0000000000302470 _lgdata = LOADADDR (.gint.data)
.gint.data 0x000000008800f400 0x140 load address 0x0000000000304150
0x0000000000304150 _lgdata = LOADADDR (.gint.data)
0x000000008800f400 _rgdata = .
*(.gint.data .gint.data.*)
.gint.data 0x000000008800f400 0x4 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(dupdate.c.o)
0x000000008800f400 vram
.gint.data 0x000000008800f404 0x8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
.gint.data 0x000000008800f40c 0x10 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
0x000000008800f40c SH7305_INTC
.gint.data 0x000000008800f404 0x8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(exch.c.o)
0x000000008800f404 gint_exc_catcher
0x000000008800f408 gint_exc_panic
.gint.data 0x000000008800f40c 0x8 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
.gint.data 0x000000008800f414 0x10 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
0x000000008800f414 SH7305_INTC
.gint.data.sh3
0x000000008800f41c 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
0x000000008800f41c SH7705_INTC
.gint.data 0x000000008800f440 0x60 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
0x000000008800f4a0 . = ALIGN (0x10)
0x00000000000000a0 _sgdata = SIZEOF (.gint.data)
0x000000008800f424 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(gint.c.o)
0x000000008800f424 SH7705_INTC
*fill* 0x000000008800f448 0x8
.gint.data 0x000000008800f450 0x60 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(inth.S.o)
.gint.data 0x000000008800f4b0 0x18 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
.gint.data 0x000000008800f4c8 0x70 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
0x000000008800f540 . = ALIGN (0x10)
*fill* 0x000000008800f538 0x8
0x0000000000000140 _sgdata = SIZEOF (.gint.data)
.gint.bss 0x000000008800f4a0 0x60 load address 0x0000000000302510
.gint.bss 0x000000008800f540 0x210 load address 0x0000000000304290
*(.gint.bss .gint.bss.*)
.gint.bss 0x000000008800f4a0 0x1c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
.gint.bss 0x000000008800f4bc 0x1 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
*fill* 0x000000008800f4bd 0x3
.gint.bss 0x000000008800f4c0 0x40 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
0x000000008800f4c0 gint
0x000000008800f500 . = ALIGN (0x10)
0x0000000000000060 _sgbss = SIZEOF (.gint.bss)
.gint.bss 0x000000008800f540 0x1c /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(setup.c.o)
.gint.bss 0x000000008800f55c 0x1 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(t6k11.c.o)
*fill* 0x000000008800f55d 0x3
.gint.bss 0x000000008800f560 0x40 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(hardware.c.o)
0x000000008800f560 gint
.gint.bss 0x000000008800f5a0 0x100 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(keysc.c.o)
.gint.bss 0x000000008800f6a0 0x88 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(tmu.c.o)
.gint.bss 0x000000008800f728 0x24 /usr/lib/gcc/sh3eb-elf/9.1.0/libgint-fx.a(cpg.c.o)
0x000000008800f750 . = ALIGN (0x10)
*fill* 0x000000008800f74c 0x4
0x0000000000000210 _sgbss = SIZEOF (.gint.bss)
/DISCARD/
*(.debug_info .debug_abbrev .debug_loc .debug_aranges .debug_ranges .debug_line .debug_str)

Binary file not shown.

Binary file not shown.

View File

@ -16,7 +16,7 @@ ICON_CG_SEL = assets-cg/icon-cg-sel.png
# Additional compiler flags
CFLAGS = -std=c11 -Os
# Additional linker flags
LDFLAGS =
LDFLAGS = -lfxengine -lgint-fx -lprof
# FxEngine font
FONT.FxEngine.png = charset:print grid.size:3x5 grid.padding:1 proportional:true
# FONT.FxEngine.png = charset:print grid.size:3x5 grid.padding:1 proportional:true

View File

@ -3,38 +3,145 @@
#include <gint/std/stdio.h>
#include <gint/std/stdlib.h>
#include <gint/clock.h>
#include <fxengine/render/translate.h>
#include <fxengine/point.h>
/*
int main(void)
{
//init_controls();
dclear(C_WHITE);
fe_integer_point point[4]={{{10,0,0},{0,0,0}},{{10,10,0},{0,0,0}},{{10,0,10},{0,0,0}},{{10,10,10},{0,0,0}}};
//FE_face face={&point[0],&point[1],&point[2],1,2};
//FE_face face2={&point[3],&point[1],&point[2],0,2};
while (1)
{
//FE_new_frame();
dclear(C_WHITE);
//reload_fps_displaying();
for (int i=0;i<4;i++)
{
fe_point_translate(&point[i]);
if (point[i].translated.z>0)
{
dpixel(point[i].translated.x,point[i].translated.y,C_BLACK);
}
}
dupdate();
//FE_draw_face(&face);
//FE_draw_face(&face2);
//display_fps(100,56);
}
getkey();
return 1;
}
*/
#include <gint/display.h>
#include <gint/keyboard.h>
#include <gint/std/stdio.h>
#include <gint/std/stdlib.h>
#include <gint/clock.h>
#include <fxengine/point.h>
#include <fxengine/texture.h>
#include <fxengine/triangle.h>
#include <fxengine/object.h>
int main(void)
{
//init_controls();
dclear(C_WHITE);
FE_integer_point point[4]={{{10,0,0},{0,0,0}},{{10,10,0},{0,0,0}},{{10,0,10},{0,0,0}},{{10,10,10},{0,0,0}}};
//render_integer_point point[4]={{{10,0,0},{0,0,0}},{{10,10,0},{0,0,0}},{{10,0,10},{0,0,0}},{{10,10,10},{0,0,0}}};
//FE_face face={&point[0],&point[1],&point[2],1,2};
//FE_face face2={&point[3],&point[1],&point[2],0,2};
while (1)
uint32_t color[32] =
{
//FE_new_frame();
dclear(C_WHITE);
//reload_fps_displaying();
0b11111111111111111111111111111111,
0b11111111111111111111111111111111,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11111111111111000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11000000000000000000000000000011,
0b11111111111111111111111111111111,
0b11111111111111111111111111111111
};
for (int i=0;i<4;i++)
{
render_translate(&point[i]);
if (point[i].translated.z>0)
{
dpixel(point[i].translated.x,point[i].translated.y,C_BLACK);
}
}
fe_texture_rich * bmp = fe_texture_new_rich(32, 32, color, 0, 0, 0);
dupdate();
fe_texture_debug(bmp);
/*
fe_integer_point points[3]=
{
{
{1,1,0},
{54,6,5}
},
{
{0,1,0},
{5,3,8}
},
{
{1,0,0},
{5,3,64}
}
};
//FE_draw_face(&face);
//FE_draw_face(&face2);
//display_fps(100,56);
}
getkey();
return 1;
}
fe_object object;
fe_object_init(&object);
fe_object_set_points(&object, points, 3, 0);
fe_triangle triangle =
{
&points[0].translated,
&points[1].translated,
&points[2].translated,
bmp,
0,
0
};
fe_object_set_faces(&object, &triangle, 1, 0);
fe_render_update(1);
//fe_object_display(&object);
fe_render_update(1);
dupdate();
getkey();
*/
return 1;
}