Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 838 Bytes

TODO.md

File metadata and controls

20 lines (12 loc) · 838 Bytes

TODO

  • To reduce ROM size a little, go through ROM.map file and manually exclude any symbols that are not needed e.g. drv_null, drv_xgm, joy.o

    • These are pulled in by the SGDK library due to code structure, but are not needed for this sample.
  • Try other SGDK gcc options: -fno-web -fno-gcse

  • Is there anything in else the SGDK md.ld that is required?

    • Maybe .stab or .stabstr (symbol tables?)
  • Is an .inc file generated when the SGDK libmd.a is built? If so, what is in it?

  • Fix vlink Warning 22: Attributes of section .text were changed from rw-- to rwx- in start.o.

  • Is there a way to remove the VBCC standard ABI _ prefix? Or is the STDCALL macro the best solution?

BONUS